diff --git a/dbrepo-metadata-db/api/src/main/java/at/tuwien/api/semantics/OntologyBriefDto.java b/dbrepo-metadata-db/api/src/main/java/at/tuwien/api/semantics/OntologyBriefDto.java new file mode 100644 index 0000000000000000000000000000000000000000..8a8aa0d9b9b97bb445ea09f5440d2467fc7e0ca1 --- /dev/null +++ b/dbrepo-metadata-db/api/src/main/java/at/tuwien/api/semantics/OntologyBriefDto.java @@ -0,0 +1,21 @@ +package at.tuwien.api.semantics; + +import io.swagger.v3.oas.annotations.media.Schema; +import jakarta.validation.constraints.NotBlank; +import lombok.*; +import lombok.extern.jackson.Jacksonized; + +@Getter +@Setter +@Builder +@NoArgsConstructor +@AllArgsConstructor +@Jacksonized +@ToString +public class OntologyBriefDto { + + @NotBlank + @Schema(example = "Ontology URI") + private String uri; + +} diff --git a/dbrepo-metadata-db/api/src/main/java/at/tuwien/api/semantics/OntologyCreateDto.java b/dbrepo-metadata-db/api/src/main/java/at/tuwien/api/semantics/OntologyCreateDto.java new file mode 100644 index 0000000000000000000000000000000000000000..54de3378a77b4a500921204a6ee0e55c3e351a4f --- /dev/null +++ b/dbrepo-metadata-db/api/src/main/java/at/tuwien/api/semantics/OntologyCreateDto.java @@ -0,0 +1,26 @@ +package at.tuwien.api.semantics; + +import com.fasterxml.jackson.annotation.JsonProperty; +import io.swagger.v3.oas.annotations.media.Schema; +import jakarta.validation.constraints.NotBlank; +import lombok.*; +import lombok.extern.jackson.Jacksonized; + +@Getter +@Setter +@Builder +@NoArgsConstructor +@AllArgsConstructor +@Jacksonized +@ToString +public class OntologyCreateDto { + + @NotBlank + @Schema(example = "Ontology URI") + private String uri; + + @JsonProperty("sparql_endpoint") + @Schema(example = "Ontology SPARQL endpoint") + private String sparqlEndpoint; + +} diff --git a/dbrepo-metadata-db/api/src/main/java/at/tuwien/api/semantics/OntologyDto.java b/dbrepo-metadata-db/api/src/main/java/at/tuwien/api/semantics/OntologyDto.java new file mode 100644 index 0000000000000000000000000000000000000000..ad7a2db1563d2ce03debf97b28cb7aa03be2bcbd --- /dev/null +++ b/dbrepo-metadata-db/api/src/main/java/at/tuwien/api/semantics/OntologyDto.java @@ -0,0 +1,41 @@ +package at.tuwien.api.semantics; + +import at.tuwien.api.user.UserBriefDto; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.fasterxml.jackson.annotation.JsonProperty; +import io.swagger.v3.oas.annotations.media.Schema; +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.NotNull; +import lombok.*; +import lombok.extern.jackson.Jacksonized; + +import java.time.Instant; + +@Getter +@Setter +@Builder +@NoArgsConstructor +@AllArgsConstructor +@Jacksonized +@ToString +public class OntologyDto { + + @NotNull + private Long id; + + @NotBlank + @Schema(example = "Ontology URI") + private String uri; + + @JsonProperty("sparql_endpoint") + @Schema(example = "Ontology SPARQL endpoint") + private String sparqlEndpoint; + + private UserBriefDto creator; + + @NotNull + @Schema(example = "2021-03-12T15:26:21.678396092Z") + @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSXXX", timezone = "UTC") + private Instant created; + +} diff --git a/dbrepo-metadata-db/entities/src/main/java/at/tuwien/entities/semantics/Ontology.java b/dbrepo-metadata-db/entities/src/main/java/at/tuwien/entities/semantics/Ontology.java new file mode 100644 index 0000000000000000000000000000000000000000..a20cd6b071629a7f0b0d32c3a34f769a2cddc46f --- /dev/null +++ b/dbrepo-metadata-db/entities/src/main/java/at/tuwien/entities/semantics/Ontology.java @@ -0,0 +1,57 @@ +package at.tuwien.entities.semantics; + +import at.tuwien.entities.user.User; +import jakarta.persistence.*; +import lombok.*; +import org.hibernate.annotations.GenericGenerator; +import org.hibernate.annotations.JdbcTypeCode; +import org.springframework.data.annotation.CreatedDate; +import org.springframework.data.annotation.LastModifiedDate; +import org.springframework.data.jpa.domain.support.AuditingEntityListener; + +import java.time.Instant; +import java.util.UUID; + +@Data +@Entity +@Builder +@ToString +@AllArgsConstructor +@NoArgsConstructor +@EntityListeners(AuditingEntityListener.class) +@Table(name = "mdb_ontologies") +public class Ontology { + + @Id + @EqualsAndHashCode.Include + @GeneratedValue(generator = "ontologies-sequence") + @GenericGenerator(name = "ontologies-sequence", strategy = "increment") + @Column(updatable = false, nullable = false) + private Long id; + + @Column(nullable = false) + private String uri; + + @Column + private String sparqlEndpoint; + + @ToString.Exclude + @JdbcTypeCode(java.sql.Types.VARCHAR) + @Column(name = "createdBy", nullable = false, columnDefinition = "VARCHAR(36)") + private UUID createdBy; + + @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.PERSIST) + @JoinColumns({ + @JoinColumn(name = "createdBy", referencedColumnName = "ID", insertable = false, updatable = false) + }) + private User creator; + + @CreatedDate + @Column(nullable = false, updatable = false, columnDefinition = "TIMESTAMP") + private Instant created; + + @LastModifiedDate + @Column(columnDefinition = "TIMESTAMP") + private Instant lastModified; + +} diff --git a/dbrepo-metadata-db/setup-schema.sql b/dbrepo-metadata-db/setup-schema.sql index 24798819e914a7e5c2bf34c44c561cee6bbfc936..6648ef9356d5e103d9a3ad52082aeb29209cd340 100644 --- a/dbrepo-metadata-db/setup-schema.sql +++ b/dbrepo-metadata-db/setup-schema.sql @@ -344,6 +344,17 @@ CREATE TABLE IF NOT EXISTS `fda`.`mdb_banner_messages` PRIMARY KEY (id) ) WITH SYSTEM VERSIONING; +CREATE TABLE IF NOT EXISTS `fda`.`mdb_ontologies` +( + id bigint NOT NULL AUTO_INCREMENT, + uri TEXT NOT NULL, + sparql_endpoint TEXT NULL, + last_modified timestamp, + created timestamp NOT NULL DEFAULT NOW(), + created_by character varying(255) NOT NULL, + PRIMARY KEY (id) +) WITH SYSTEM VERSIONING; + CREATE TABLE IF NOT EXISTS `fda`.`mdb_view_columns` ( id BIGINT NOT NULL AUTO_INCREMENT, diff --git a/dbrepo-semantics-service/.gitignore b/dbrepo-semantics-service/.gitignore index 612cf05985669ec0d7fcf2cd2e653b9c17963835..7731f1adf24dc32351fdde402faa04b19e2f389f 100644 --- a/dbrepo-semantics-service/.gitignore +++ b/dbrepo-semantics-service/.gitignore @@ -1,40 +1,36 @@ -## Cache -__pycache__ -.pytest_cache/ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ -# OS -.DS_Store +### Generated ### +ready -# Environment -.env -.flaskenv -*.pyc -*.pyo -env/ -venv/ -.venv/ -env* +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache -# Test -report.xml -coverage.html -coverage.txt +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr -# Build -dist/ +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ build/ -*.egg -*.egg-info/ -.tox/ +!**/src/main/**/build/ +!**/src/test/**/build/ -# IDE -.cache/ -.idea/ -docs/_build/ -.vscode - -# Coverage reports -htmlcov/ -.coverage -.coverage.* -*,cover \ No newline at end of file +### VS Code ### +.vscode/ diff --git a/dbrepo-semantics-service/.mvn/wrapper/MavenWrapperDownloader.java b/dbrepo-semantics-service/.mvn/wrapper/MavenWrapperDownloader.java new file mode 100644 index 0000000000000000000000000000000000000000..a45eb6ba269cd38f8965cef786729790945d9537 --- /dev/null +++ b/dbrepo-semantics-service/.mvn/wrapper/MavenWrapperDownloader.java @@ -0,0 +1,118 @@ +/* + * Copyright 2007-present the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import java.net.*; +import java.io.*; +import java.nio.channels.*; +import java.util.Properties; + +public class MavenWrapperDownloader { + + private static final String WRAPPER_VERSION = "0.5.6"; + /** + * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. + */ + private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/" + + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar"; + + /** + * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to + * use instead of the default one. + */ + private static final String MAVEN_WRAPPER_PROPERTIES_PATH = + ".mvn/wrapper/maven-wrapper.properties"; + + /** + * Path where the maven-wrapper.jar will be saved to. + */ + private static final String MAVEN_WRAPPER_JAR_PATH = + ".mvn/wrapper/maven-wrapper.jar"; + + /** + * Name of the property which should be used to override the default download url for the wrapper. + */ + private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl"; + + public static void main(String args[]) { + System.out.println("- Downloader started"); + File baseDirectory = new File(args[0]); + System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath()); + + // If the maven-wrapper.properties exists, read it and check if it contains a custom + // wrapperUrl parameter. + File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH); + String url = DEFAULT_DOWNLOAD_URL; + if (mavenWrapperPropertyFile.exists()) { + FileInputStream mavenWrapperPropertyFileInputStream = null; + try { + mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile); + Properties mavenWrapperProperties = new Properties(); + mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream); + url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url); + } catch (IOException e) { + System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'"); + } finally { + try { + if (mavenWrapperPropertyFileInputStream != null) { + mavenWrapperPropertyFileInputStream.close(); + } + } catch (IOException e) { + // Ignore ... + } + } + } + System.out.println("- Downloading from: " + url); + + File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH); + if (!outputFile.getParentFile().exists()) { + if (!outputFile.getParentFile().mkdirs()) { + System.out.println( + "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'"); + } + } + System.out.println("- Downloading to: " + outputFile.getAbsolutePath()); + try { + downloadFileFromURL(url, outputFile); + System.out.println("Done"); + System.exit(0); + } catch (Throwable e) { + System.out.println("- Error downloading"); + e.printStackTrace(); + System.exit(1); + } + } + + private static void downloadFileFromURL(String urlString, File destination) throws Exception { + if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) { + String username = System.getenv("MVNW_USERNAME"); + char[] password = System.getenv("MVNW_PASSWORD").toCharArray(); + Authenticator.setDefault(new Authenticator() { + @Override + protected PasswordAuthentication getPasswordAuthentication() { + return new PasswordAuthentication(username, password); + } + }); + } + URL website = new URL(urlString); + ReadableByteChannel rbc; + rbc = Channels.newChannel(website.openStream()); + FileOutputStream fos = new FileOutputStream(destination); + fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); + fos.close(); + rbc.close(); + } + +} diff --git a/dbrepo-semantics-service/.mvn/wrapper/maven-wrapper.jar b/dbrepo-semantics-service/.mvn/wrapper/maven-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..2cc7d4a55c0cd0092912bf49ae38b3a9e3fd0054 Binary files /dev/null and b/dbrepo-semantics-service/.mvn/wrapper/maven-wrapper.jar differ diff --git a/dbrepo-semantics-service/.mvn/wrapper/maven-wrapper.properties b/dbrepo-semantics-service/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000000000000000000000000000000000000..642d572ce90e5085986bdd9c9204b9404f028084 --- /dev/null +++ b/dbrepo-semantics-service/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,2 @@ +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip +wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar diff --git a/dbrepo-semantics-service/Dockerfile b/dbrepo-semantics-service/Dockerfile index 9e5ebf1464ac3d59ec50355db8b648ec161e0041..f87e006d6ba7b1e4c743577513ef3abf1213d93d 100644 --- a/dbrepo-semantics-service/Dockerfile +++ b/dbrepo-semantics-service/Dockerfile @@ -1,37 +1,46 @@ -FROM python:3.9-alpine +###### FIRST STAGE ###### +FROM dbrepo-metadata-db:latest as dependency MAINTAINER Martin Weise <martin.weise@tuwien.ac.at> -RUN apk update && apk --no-cache add build-base gcc python3-dev libpq-dev libffi-dev mariadb-dev mariadb-connector-c \ - mariadb-connector-c-dev curl bash py3-pandas py3-sqlalchemy py3-requests py3-gevent py3-psycopg2 +###### SECOND STAGE ###### +FROM maven:3-openjdk-17 as build +MAINTAINER Martin Weise <martin.weise@tuwien.ac.at> -COPY ./requirements.txt ./requirements.txt -RUN pip install -r ./requirements.txt +COPY ./pom.xml ./ -WORKDIR /app +RUN mvn -fn -B dependency:go-offline > /dev/null + +COPY --from=dependency /root/.m2/repository/at/tuwien /root/.m2/repository/at/tuwien + +COPY ./rest-service ./rest-service +COPY ./services ./services +COPY ./report ./report + +# Make sure it compiles +RUN mvn -q clean package -DskipTests + +###### THIRD STAGE ###### +FROM openjdk:17-alpine as runtime +MAINTAINER Martin Weise <martin.weise@tuwien.ac.at> + +RUN apk --no-cache add bash -ENV FLASK_APP=app.py -ENV FLASK_RUN_HOST=0.0.0.0 -ENV PORT_APP=5010 -ENV FLASK_DEBUG=0 -ENV HOSTNAME=semantics-service -ENV LOG_LEVEL=debug ENV METADATA_DB=fda ENV METADATA_USERNAME=root ENV METADATA_PASSWORD=dbrepo +ENV LOG_LEVEL=debug ENV JWT_ISSUER=http://localhost/realms/dbrepo ENV JWT_PUBKEY=public-key -COPY ./requirements.txt ./requirements.txt -COPY ./healthcheck.sh ./healthcheck.sh +WORKDIR /app -RUN pip install -r requirements.txt > /dev/null +COPY ./service_ready /usr/bin +RUN chmod +x /usr/bin/service_ready -HEALTHCHECK --interval=10s --timeout=5s --retries=12 CMD ["bash", "/app/healthcheck.sh"] +HEALTHCHECK --interval=10s --timeout=5s --retries=12 CMD service_ready -EXPOSE $PORT_APP +COPY --from=build ./rest-service/target/rest-service-*.jar ./semantics-service.jar -COPY ./us-yml ./us-yml -COPY ./ontologies ./ontologies -COPY ./*.py ./ +EXPOSE 9091 -ENTRYPOINT [ "python", "-u", "./pywsgi.py" ] +ENTRYPOINT ["java", "-Dlog4j2.formatMsgNoLookups=true", "-jar", "./semantics-service.jar"] diff --git a/dbrepo-semantics-service/README.md b/dbrepo-semantics-service/README.md index d9f3a88379634e2ec00e6de46a0a2cdba772ce65..986b2885e1bf0a1c49df81b9446c20e3c8d69e1f 100644 --- a/dbrepo-semantics-service/README.md +++ b/dbrepo-semantics-service/README.md @@ -1,201 +1,7 @@ -# Units and Ontology Service +# FDA Container Service -Suggest and validates units of measurements defined in Ontology of Units of Measure (OM) [1]. Moreover, it stores ontologies in DB-Repo, list them and finds suitable concepts over all ontologies within the Repository. Note: In Flasgger switch between "/api-units.json" and "/api-ontologies.json". +## Documentation -[1] https://github.com/HajoRijgersberg/OM - -Swagger UI: http://localhost:5010/swagger-ui/ - -## Build - -Ubuntu/Debian: - -```console -apt-get install libmariadb-dev -``` - -## `POST /api/units/suggest` -Autosuggests user typed in terms. - -Example http request: -POST /api/units/suggest HTTP/1.1 -Content-Type: application/json -Host: localhost:5010 -Content-Length: 37 - -```JSON -{ - "offset": 0, - "ustring": "met" -} -``` - -Response is a JSON object of the following form: - -```JSON -[ - { - "comment": "The metre is a unit of length defined as the length of the path travelled by light in vacuum during a time interval of 1/299 792 458 of a second.", - "name": "metre", - "symbol": "m" - }, - { - "comment": "Candela per square metre is a unit of luminance defined as candela divided by square metre.", - "name": "candela per square metre", - "symbol": "cd/m" - }, - { - "comment": "Cubic metre is a unit of volume defined as the volume of a cube whose sides measure exactly one metre.", - "name": "cubic metre", - "symbol": "m3" - }, -] -``` - -## `POST /api/units/geturi` -Returns the uri of a certain units contained in the ontology OM. - -Example http request: -POST /api/units/geturi HTTP/1.1 -Content-Type: application/json -Host: localhost:5010 -Content-Length: 22 - -```JSON -{ - "uname": "metre" -} -``` - -Response is a JSON object of the following form: - -```JSON -{ - "URI": "http://www.ontology-of-units-of-measure.org/resource/om-2/metre" -} -``` - -## `POST /api/units/validate´ -Validates user typed in units. For example 'diametre' is no unit. - -Example http request: -POST /api/units/validate HTTP/1.1 -Content-Type: application/json -Host: localhost:5010 -Content-Length: 24 - -```JSON -{ - "ustring": "metre" -} -``` - -Respose: true / false - -## `POST /api/units/saveconcept´ -Is an endpoint for saving concepts in the entity 'mdb_concepts' in the MDB. - -Example http request: -POST /api/units/saveconcept HTTP/1.1 -Content-Type: application/json -Host: localhost:5010 -Content-Length: 97 - -```JSON -{ - "name": "metre", - "uri": "http://www.ontology-of-units-of-measure.org/resource/om-2/metre" -} -``` - -The response is a status message and a JSON with the URI of the created concept - -```JSON -{ - "uri": "http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre" -} -``` - -## `POST /api/units/savecolumnsconcept' -Saves values in the entity 'mdb\_columns\_concepts', which realizes the relation between 'mdb\_columns' and 'mdb\_concepts'. Make sure the concept is contained in 'mdb\_concepts'. - -Example http request: -POST /api/units/savecolumnsconcept HTTP/1.1 -Content-Type: application/json -Host: localhost:5010 -Content-Length: 122 - -```JSON -{ - "cdbid": "1", - "cid": "1", - "tid": "1", - "uri": "http://www.ontology-of-units-of-measure.org/resource/om-2/metre" -} -``` - -The response is a postgres status message: -* 201: created -* 409: conflict - -## `GET /api/ontologies/listontologies' -List the name of all ontologies stored in DB-Repo. - -Example http request: -GET /api/ontologies/listontologies HTTP/1.1 -Host: localhost:5010 - -## `GET /api/ontologies/getconcept/<cname>' -Lists concepts contained in all stored ontologies in DB-Repo ('string matching') - -Example http request: -GET /api/ontologies/getconcept/Curve HTTP/1.1 -Host: localhost:5010 - -The response is a JSON: - -```JSON -[ - { - "O": "Multicourbe", - "P": "http://www.w3.org/2000/01/rdf-schema#label", - "S-URI": "http://data.ign.fr/def/geometrie#MultiCurve" - }, - { - "O": "http://www.opengis.net/ont/sf#Curve", - "P": "http://www.w3.org/2000/01/rdf-schema#subClassOf", - "S-URI": "http://data.ign.fr/def/geometrie#Curve" - } -] -``` - -## `POST /api/ontologies/upload' - -In order to upload new ontologies (.ttl, .nt files) to DB-Repo. - -Example http request: -POST /api/ontologies/upload HTTP/1.1 -Content-Type: multipart/form-data; boundary=---011000010111000001101001 -Host: localhost:5010 -Content-Length: 166 - ------011000010111000001101001 -Content-Disposition: form-data; name="file"; filename="geometrie.ttl" -Content-Type: text/turtle - - ------011000010111000001101001-- - -The response is -* 201: created -* 400: no file selected -* 409: conflict -* 500: internal server error - -## `GET /api/ontologies/<o_name>' - -Is an endpoint for downloading an ontology contained in DB-Repo. - -Example http request: -GET /api/ontologies/VOCAB_QUDT-UNITS-ALL-v2.1 HTTP/1.1 -Host: localhost:5010 +- OpenAPI v3: http://localhost:9091/swagger-ui/index.html +- OpenAPI v3 endpoint: http://localhost:9091/v3/api-docs/ +- OpenAPI v3 YAML: http://localhost:9091/v3/api-docs.yaml \ No newline at end of file diff --git a/dbrepo-semantics-service/app.py b/dbrepo-semantics-service/app.py deleted file mode 100644 index a2a2604caa8d36185dea0f82faf781ba3bdc6212..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/app.py +++ /dev/null @@ -1,268 +0,0 @@ -import os -import logging -import re -from flask import Flask, request, jsonify -from logging.config import dictConfig -from flasgger import Swagger -from flasgger.utils import swag_from -from flasgger import LazyJSONEncoder -from list import List -from validate import validator -from gevent.pywsgi import WSGIServer -from save import insert_mdb_concepts, insert_mdb_units -from onto_feat import list_ontologies, get_ontology -from prometheus_flask_exporter import PrometheusMetrics -from flask_jwt_extended import jwt_required, JWTManager - -dictConfig({ - 'version': 1, - 'formatters': {'default': { - 'format': '%(asctime)s %(levelname)-6s %(message)s', - }}, - 'handlers': {'wsgi': { - 'class': 'logging.StreamHandler', - 'stream': 'ext://flask.logging.wsgi_errors_stream', - 'formatter': 'default' - }}, - 'root': { - 'level': 'INFO', - 'handlers': ['wsgi'] - } -}) - -app = Flask(__name__) -metrics = PrometheusMetrics(app) -metrics.info('app_info', 'Application info', version='1.2.0') -app.config['SWAGGER'] = {'openapi': '3.0.0', 'title': 'Swagger UI', 'uiversion': 3} -# https://flask-jwt-extended.readthedocs.io/en/stable/options/ -app.config['JWT_ALGORITHM'] = 'HS256' -app.config['JWT_DECODE_ISSUER'] = os.getenv('JWT_ISSUER') -app.config['JWT_PUBLIC_KEY'] = os.getenv('JWT_PUBKEY') -jwt = JWTManager(app) -list = List(offline=False) - -swagger_config = { - 'headers': [], - 'specs': [ - { - 'endpoint': 'api', - 'route': '/api-semantics.json', - 'rule_filter': lambda rule: True, - 'model_filter': lambda tag: True, # all in - } - ], - 'static_url_path': '/flasgger_static', - 'swagger_ui': True, - 'specs_route': '/swagger-ui/', -} - -template = { - 'openapi': '3.0.0', - 'info': { - 'title': 'Database Repository Unit / Ontology Service API', - 'description': 'Service for assigning concepts to database tables and columns.', - 'version': '1.2.0', - 'contact': { - 'name': 'Prof. Andreas Rauber', - 'email': 'andreas.rauber@tuwien.ac.at' - }, - 'license': { - 'name': 'Apache 2.0', - 'url': 'https://www.apache.org/licenses/LICENSE-2.0' - } - }, - "externalDocs": { - "description": "Sourcecode Documentation", - "url": "https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services" - }, - 'servers': [ - { - 'url': 'http://localhost:5010', - 'description': 'Generated server url' - }, - { - 'url': 'https://dbrepo2.ec.tuwien.ac.at', - 'description': 'Sandbox' - } - ] -} - -app.json_encoder = LazyJSONEncoder -swagger = Swagger(app, config=swagger_config, template=template) - - -@app.route('/api/semantics/concept', methods=['GET'], endpoint='concepts_suggest') -@swag_from('us-yml/get_concepts.yml') -def suggest(): - query = request.args.get('q') - logging.debug('endpoint suggest concept, body=%s', request) - try: - res = list.list_concepts(query) - logging.info('suggest concept result in units: %s', res) - return jsonify(res), 200 - except Exception as e: - logging.error('Failed to suggest concept: %s', e) - res = {'success': False, 'message': str(e), 'status': 500} - return jsonify(res), 500 - - -@app.route('/api/semantics/unit', methods=['GET'], endpoint='units_suggest') -@swag_from('us-yml/get_units.yml') -def suggest(): - query = request.args.get('q') - logging.debug('endpoint suggest unit, body=%s', request) - try: - res = list.list_units(query) - logging.info('suggest unit result in units: %s', res) - return jsonify(res), 200 - except Exception as e: - logging.error('Failed to suggest units: %s', e) - res = {'success': False, 'message': str(e), 'status': 500} - return jsonify(res), 500 - - -@app.route('/api/semantics/unit/<unit>/validate', methods=['GET'], endpoint='units_validate') -@swag_from('us-yml/get_unit_validate.yml') -def validate(unit): - logging.debug('endpoint validate unit, unit=%s, body=%s', unit, request) - try: - res = validator(unit) - logging.info('validate unit resulted in unit: %s', res) - return str(res), 200 - except Exception as e: - logging.error(e) - res = {'success': False, 'message': str(e), 'status': 500} - return jsonify(res), 500 - - -@app.route('/api/semantics/concept/<concept>/validate', methods=['GET'], endpoint='concepts_validate') -@swag_from('us-yml/get_concept_validate.yml') -def validate(concept): - logging.debug('endpoint validate concept, concept=%s, body=%s', concept, request) - try: - res = validator(concept) - logging.info('validate concept resulted in unit: %s', res) - return str(res), 200 - except Exception as e: - logging.error(e) - res = {'success': False, 'message': str(e), 'status': 500} - return jsonify(res), 500 - - -@app.route('/api/semantics/concept', methods=['PUT'], endpoint='concepts_label') -@swag_from('us-yml/put_concept.yml') -def get_concept_label(): - input_json = request.get_json() - logging.debug('endpoint get label for concept, body=%s', input_json) - try: - uri = input_json['uri'] - m = re.search('https?://www.wikidata.org/entity/(Q[0-9]+)', uri) - if not m: - logging.error('Failed to get concept label: %s is not a wikidata uri', uri) - res = {'success': False, 'message': 'Failed to get concept label: is not a wikidata uri', 'status': 400} - return jsonify(res), 400 - entity = m.group(1) - res = list.get_concept_label(entity) - logging.info('suggest concept label result: %s', res) - return jsonify(res), 200 - except Exception as e: - logging.error('Failed to suggest concept: %s', e) - res = {'success': False, 'message': str(e), 'status': 500} - return jsonify(res), 500 - - -@app.route('/api/semantics/unit', methods=['PUT'], endpoint='units_label') -@swag_from('us-yml/put_units.yml') -def get_concept_label(): - input_json = request.get_json() - logging.debug('endpoint get label for unit, body=%s', input_json) - try: - uri = input_json['uri'] - m = re.search('https?://www.ontology-of-units-of-measure.org/resource/om-2/([a-zA-Z0-9-]+)', uri) - if not m: - logging.error('Failed to get unit label: %s is not a wikidata uri', uri) - res = {'success': False, 'message': 'Failed to get unit label: is not an om2 uri', 'status': 400} - return jsonify(res), 400 - res = list.get_unit_label(uri) - if res is None: - logging.error('Unit label not found') - res = {'success': False, 'message': 'Unit label not found', 'status': 404} - return jsonify(res), 404 - logging.info('suggest unit label result: %s', res) - return jsonify(res), 200 - except Exception as e: - logging.error('Failed to suggest unit: %s', e) - res = {'success': False, 'message': str(e), 'status': 500} - return jsonify(res), 500 - - -@app.route('/api/semantics/concept', methods=['POST'], endpoint='concepts_save') -@swag_from('us-yml/post_concept.yml') -@jwt_required() -def save_concept(): - input_json = request.get_json() - logging.debug('endpoint save concept, body=%s', input_json) - try: - uri = input_json['uri'] - name = input_json['name'] - if uri is None: - return jsonify({'status': 'error', 'message': 'uri is null'}), 400 - if name is None: - return jsonify({'status': 'error', 'message': 'name is null'}), 400 - if insert_mdb_concepts(uri, name) > 0: - return jsonify({'uri': uri}), 201 - else: - return jsonify({'status': 409}), 409 - except Exception as e: - logging.error('Failed to save concept: %s', e) - res = {'success': False, 'message': str(e), 'status': 500} - return jsonify(res), 500 - - -@app.route('/api/semantics/unit', methods=['POST'], endpoint='units_save') -@swag_from('us-yml/post_unit.yml') -@jwt_required() -def save_unit(): - input_json = request.get_json() - logging.debug('endpoint save unit, body=%s', input_json) - try: - uri = input_json['uri'] - name = input_json['name'] - if uri is None: - return jsonify({'status': 'error', 'message': 'uri is null'}), 400 - if name is None: - return jsonify({'status': 'error', 'message': 'name is null'}), 400 - if insert_mdb_units(uri, name) > 0: - return jsonify({'uri': uri}), 201 - else: - return jsonify({'status': 'error'}), 409 - except Exception as e: - logging.error('Failed to save unit: %s', e) - res = {'success': False, 'message': str(e)} - return jsonify(res), 500 - - -@app.route('/api/semantics/ontology', methods=['GET'], endpoint='ontologies_get') -@swag_from('us-yml/get_ontologies.yml') -def get_ontologies(): - ontologies = list_ontologies() - logging.info('Get ontologies resulted in list %d', len(ontologies)) - return jsonify(ontologies), 200 - - -@app.route('/api/semantics/ontology/<name>', methods=['GET'], endpoint='ontologies_get_ontology') -@swag_from('us-yml/get_ontology.yml') -def get_ontologies(name): - ontology = get_ontology(name) - if ontology is None: - return 'ontology does not exist', 404 - logging.info('Get ontology resulted in file %s', ontology) - return ontology - - -rest_server_port = int(os.getenv('PORT_APP', 5010)) -rest_server_host = os.getenv('FLASK_RUN_HOST', '0.0.0.0') - -if __name__ == '__main__': - http_server = WSGIServer((rest_server_host, rest_server_port), app) - http_server.serve_forever() diff --git a/dbrepo-semantics-service/build.sh b/dbrepo-semantics-service/build.sh deleted file mode 100755 index bffc0ef845bd6760b76cdcf4e11d0f8c0b0d94ee..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/build.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -python3 -m venv ./dbrepo-semantics-service/venv -source ./dbrepo-semantics-service/venv/bin/activate -pip install -r ./dbrepo-semantics-service/requirements.txt \ No newline at end of file diff --git a/dbrepo-semantics-service/healthcheck.sh b/dbrepo-semantics-service/healthcheck.sh deleted file mode 100644 index 0854264b627e9d8ef06b338ff4931c00893f3dfc..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/healthcheck.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -HTTP_CODE=$(curl --silent --output /dev/stderr --write-out "%{http_code}" 'http://0.0.0.0:5010/metrics') -if test $HTTP_CODE -ne 200; then - exit 1 -fi \ No newline at end of file diff --git a/dbrepo-semantics-service/list.py b/dbrepo-semantics-service/list.py deleted file mode 100644 index 693275da2e56ec8d21c33525fd13ee1518530c5e..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/list.py +++ /dev/null @@ -1,123 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -""" -Created on Sat Dec 4 11:37:19 2021 - -@author: Cornelia Michlits -@author: Martin Weise -""" -import logging -import rdflib -import requests as rq - - -class List: - - def __init__(self, offline=False): - rdflib.Namespace('http://www.ontology-of-units-of-measure.org/resource/om-2/') - - self.u = rdflib.Graph() - self.u.namespace_manager.bind('om', 'http://www.ontology-of-units-of-measure.org/resource/om-2/') - self.u.namespace_manager.bind('schema', 'http://schema.org/') - self.c = rdflib.Graph() - self.c.namespace_manager.bind('wd', 'http://www.wikidata.org/entity/') - self.c.namespace_manager.bind('wdt', 'http://www.wikidata.org/prop/direct/') - self.c.namespace_manager.bind('schema', 'http://schema.org/') - - # ontology of measure - self.u.parse('ontologies/om-2.rdf', format='xml') - - # wikidata - rdf = rq.get('https://query.wikidata.org/sparql', - headers={'Accept': 'application/rdf+xml'}) - rdf.raise_for_status() - - def list_units(self, name, offset=0) -> []: - name = name.lower() - logging.debug(f"list units for unit name {name}") - l_query = """SELECT DISTINCT ?unit ?symbol ?name ?comment - WHERE { - ?unit om:symbol ?symbol . - ?unit rdfs:label ?name . - ?unit rdfs:comment ?comment . - ?unit rdf:type om:Unit . - FILTER(CONTAINS(LCASE(?name), \"""" + name + """\"@en)) . - FILTER(LANG(?name) = "en") . - } LIMIT 10 OFFSET """ + str(offset) - qres = self.u.query(l_query) - units = list() - for row in qres: - units.append( - {"uri": str(row.unit), "symbol": str(row.symbol), "name": str(row.name), "comment": str(row.comment)}) - logging.debug(f"res: units={units}") - return units - - def list_concepts(self, name) -> []: - name = name.lower() - logging.debug(f"list concepts for concepts name {name}") - l_query = """SELECT DISTINCT ?item ?name ?comment - WHERE { - SERVICE <https://query.wikidata.org/sparql> { - SELECT ?item ?name ?comment - WHERE { - ?item wdt:P31/wdt:P279* wd:Q3054889 . - ?item rdfs:label ?name . - ?item schema:description ?comment . - FILTER(LANG(?comment) = "en") . - FILTER(LANG(?name) = "en") . - FILTER(CONTAINS(LCASE(?name), \"""" + name + """\"@en)) . - } - } - }""" - qres = self.c.query(l_query) - concepts = list() - for row in qres: - concepts.append({"uri": str(row.item), "name": str(row.name), "comment": str(row.comment)}) - logging.debug(f"res: concepts={concepts}") - return concepts - - def get_unit_uri(self, name) -> {}: - name = name.replace('(', '\\\\(') - name = name.replace(')', '\\\\)') - logging.debug(f"get url for unit name {name}") - uri_query = """SELECT ?uri - WHERE { - ?uri rdfs:label ?o . - FILTER regex(str(?o),\"^""" + name + """$\","i") . - } LIMIT 1 - """ - qres = self.u.query(uri_query) - for row in qres: - logging.debug(f"res: uri={row.uri}") - return {"uri": str(row.uri)} - - def get_concept_label(self, entity) -> {}: - logging.debug(f"get label for entity {entity}") - uri_query = """SELECT DISTINCT ?label - WHERE { - SERVICE <https://query.wikidata.org/sparql> { - SELECT ?label - WHERE { - wd:""" + entity + """ rdfs:label ?label . - FILTER (langMatches(lang(?label), "EN" ) ) - } - LIMIT 1 - } - }""" - qres = self.c.query(uri_query) - for row in qres: - logging.debug(f"res: label={row.label}") - return {"label": str(row.label)} - - def get_unit_label(self, uri) -> {}: - logging.debug(f"get label for uri {uri}") - uri_query = """SELECT ?label - WHERE { - <""" + uri + """> rdfs:label ?label . - FILTER (langMatches(lang(?label), "EN" ) ) - } - LIMIT 1""" - qres = self.u.query(uri_query) - for row in qres: - logging.debug(f"res: label={row.label}") - return {"label": str(row.label)} diff --git a/dbrepo-semantics-service/mvnw b/dbrepo-semantics-service/mvnw new file mode 100755 index 0000000000000000000000000000000000000000..a16b5431b4c3cab50323a3f558003fd0abd87dad --- /dev/null +++ b/dbrepo-semantics-service/mvnw @@ -0,0 +1,310 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Maven Start Up Batch script +# +# Required ENV vars: +# ------------------ +# JAVA_HOME - location of a JDK home dir +# +# Optional ENV vars +# ----------------- +# M2_HOME - location of maven2's installed home dir +# MAVEN_OPTS - parameters passed to the Java VM when running Maven +# e.g. to debug Maven itself, use +# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +# MAVEN_SKIP_RC - flag to disable loading of mavenrc files +# ---------------------------------------------------------------------------- + +if [ -z "$MAVEN_SKIP_RC" ] ; then + + if [ -f /etc/mavenrc ] ; then + . /etc/mavenrc + fi + + if [ -f "$HOME/.mavenrc" ] ; then + . "$HOME/.mavenrc" + fi + +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +mingw=false +case "`uname`" in + CYGWIN*) cygwin=true ;; + MINGW*) mingw=true;; + Darwin*) darwin=true + # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home + # See https://developer.apple.com/library/mac/qa/qa1170/_index.html + if [ -z "$JAVA_HOME" ]; then + if [ -x "/usr/libexec/java_home" ]; then + export JAVA_HOME="`/usr/libexec/java_home`" + else + export JAVA_HOME="/Library/Java/Home" + fi + fi + ;; +esac + +if [ -z "$JAVA_HOME" ] ; then + if [ -r /etc/gentoo-release ] ; then + JAVA_HOME=`java-config --jre-home` + fi +fi + +if [ -z "$M2_HOME" ] ; then + ## resolve links - $0 may be a link to maven's home + PRG="$0" + + # need this for relative symlinks + while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG="`dirname "$PRG"`/$link" + fi + done + + saveddir=`pwd` + + M2_HOME=`dirname "$PRG"`/.. + + # make it fully qualified + M2_HOME=`cd "$M2_HOME" && pwd` + + cd "$saveddir" + # echo Using m2 at $M2_HOME +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --unix "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --unix "$CLASSPATH"` +fi + +# For Mingw, ensure paths are in UNIX format before anything is touched +if $mingw ; then + [ -n "$M2_HOME" ] && + M2_HOME="`(cd "$M2_HOME"; pwd)`" + [ -n "$JAVA_HOME" ] && + JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" +fi + +if [ -z "$JAVA_HOME" ]; then + javaExecutable="`which javac`" + if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then + # readlink(1) is not available as standard on Solaris 10. + readLink=`which readlink` + if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then + if $darwin ; then + javaHome="`dirname \"$javaExecutable\"`" + javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" + else + javaExecutable="`readlink -f \"$javaExecutable\"`" + fi + javaHome="`dirname \"$javaExecutable\"`" + javaHome=`expr "$javaHome" : '\(.*\)/bin'` + JAVA_HOME="$javaHome" + export JAVA_HOME + fi + fi +fi + +if [ -z "$JAVACMD" ] ; then + if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD="`which java`" + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." >&2 + echo " We cannot execute $JAVACMD" >&2 + exit 1 +fi + +if [ -z "$JAVA_HOME" ] ; then + echo "Warning: JAVA_HOME environment variable is not set." +fi + +CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher + +# traverses directory structure from process work directory to filesystem root +# first directory with .mvn subdirectory is considered project base directory +find_maven_basedir() { + + if [ -z "$1" ] + then + echo "Path not specified to find_maven_basedir" + return 1 + fi + + basedir="$1" + wdir="$1" + while [ "$wdir" != '/' ] ; do + if [ -d "$wdir"/.mvn ] ; then + basedir=$wdir + break + fi + # workaround for JBEAP-8937 (on Solaris 10/Sparc) + if [ -d "${wdir}" ]; then + wdir=`cd "$wdir/.."; pwd` + fi + # end of workaround + done + echo "${basedir}" +} + +# concatenates all lines of a file +concat_lines() { + if [ -f "$1" ]; then + echo "$(tr -s '\n' ' ' < "$1")" + fi +} + +BASE_DIR=`find_maven_basedir "$(pwd)"` +if [ -z "$BASE_DIR" ]; then + exit 1; +fi + +########################################################################################## +# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +# This allows using the maven wrapper in projects that prohibit checking in binary data. +########################################################################################## +if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found .mvn/wrapper/maven-wrapper.jar" + fi +else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." + fi + if [ -n "$MVNW_REPOURL" ]; then + jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + else + jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + fi + while IFS="=" read key value; do + case "$key" in (wrapperUrl) jarUrl="$value"; break ;; + esac + done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" + if [ "$MVNW_VERBOSE" = true ]; then + echo "Downloading from: $jarUrl" + fi + wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" + if $cygwin; then + wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` + fi + + if command -v wget > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found wget ... using wget" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + wget "$jarUrl" -O "$wrapperJarPath" + else + wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" + fi + elif command -v curl > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found curl ... using curl" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + curl -o "$wrapperJarPath" "$jarUrl" -f + else + curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f + fi + + else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Falling back to using Java to download" + fi + javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" + # For Cygwin, switch paths to Windows format before running javac + if $cygwin; then + javaClass=`cygpath --path --windows "$javaClass"` + fi + if [ -e "$javaClass" ]; then + if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Compiling MavenWrapperDownloader.java ..." + fi + # Compiling the Java class + ("$JAVA_HOME/bin/javac" "$javaClass") + fi + if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + # Running the downloader + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Running MavenWrapperDownloader.java ..." + fi + ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") + fi + fi + fi +fi +########################################################################################## +# End of extension +########################################################################################## + +export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} +if [ "$MVNW_VERBOSE" = true ]; then + echo $MAVEN_PROJECTBASEDIR +fi +MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" + +# For Cygwin, switch paths to Windows format before running java +if $cygwin; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --path --windows "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --windows "$CLASSPATH"` + [ -n "$MAVEN_PROJECTBASEDIR" ] && + MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` +fi + +# Provide a "standardized" way to retrieve the CLI args that will +# work with both Windows and non-Windows executions. +MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" +export MAVEN_CMD_LINE_ARGS + +WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +exec "$JAVACMD" \ + $MAVEN_OPTS \ + -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ + "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ + ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git a/dbrepo-semantics-service/mvnw.cmd b/dbrepo-semantics-service/mvnw.cmd new file mode 100644 index 0000000000000000000000000000000000000000..c8d43372c986d97911cdc21bd87e0cbe3d83bdda --- /dev/null +++ b/dbrepo-semantics-service/mvnw.cmd @@ -0,0 +1,182 @@ +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM https://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Maven Start Up Batch script +@REM +@REM Required ENV vars: +@REM JAVA_HOME - location of a JDK home dir +@REM +@REM Optional ENV vars +@REM M2_HOME - location of maven2's installed home dir +@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands +@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending +@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven +@REM e.g. to debug Maven itself, use +@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files +@REM ---------------------------------------------------------------------------- + +@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' +@echo off +@REM set title of command window +title %0 +@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' +@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% + +@REM set %HOME% to equivalent of $HOME +if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") + +@REM Execute a user defined script before this one +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre +@REM check for pre script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" +if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" +:skipRcPre + +@setlocal + +set ERROR_CODE=0 + +@REM To isolate internal variables from possible post scripts, we use another setlocal +@setlocal + +@REM ==== START VALIDATION ==== +if not "%JAVA_HOME%" == "" goto OkJHome + +echo. +echo Error: JAVA_HOME not found in your environment. >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +:OkJHome +if exist "%JAVA_HOME%\bin\java.exe" goto init + +echo. +echo Error: JAVA_HOME is set to an invalid directory. >&2 +echo JAVA_HOME = "%JAVA_HOME%" >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +@REM ==== END VALIDATION ==== + +:init + +@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". +@REM Fallback to current working directory if not found. + +set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% +IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir + +set EXEC_DIR=%CD% +set WDIR=%EXEC_DIR% +:findBaseDir +IF EXIST "%WDIR%"\.mvn goto baseDirFound +cd .. +IF "%WDIR%"=="%CD%" goto baseDirNotFound +set WDIR=%CD% +goto findBaseDir + +:baseDirFound +set MAVEN_PROJECTBASEDIR=%WDIR% +cd "%EXEC_DIR%" +goto endDetectBaseDir + +:baseDirNotFound +set MAVEN_PROJECTBASEDIR=%EXEC_DIR% +cd "%EXEC_DIR%" + +:endDetectBaseDir + +IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig + +@setlocal EnableExtensions EnableDelayedExpansion +for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a +@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% + +:endReadAdditionalConfig + +SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" +set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" +set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + +FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( + IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B +) + +@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +@REM This allows using the maven wrapper in projects that prohibit checking in binary data. +if exist %WRAPPER_JAR% ( + if "%MVNW_VERBOSE%" == "true" ( + echo Found %WRAPPER_JAR% + ) +) else ( + if not "%MVNW_REPOURL%" == "" ( + SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + ) + if "%MVNW_VERBOSE%" == "true" ( + echo Couldn't find %WRAPPER_JAR%, downloading it ... + echo Downloading from: %DOWNLOAD_URL% + ) + + powershell -Command "&{"^ + "$webclient = new-object System.Net.WebClient;"^ + "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ + "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ + "}"^ + "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ + "}" + if "%MVNW_VERBOSE%" == "true" ( + echo Finished downloading %WRAPPER_JAR% + ) +) +@REM End of extension + +@REM Provide a "standardized" way to retrieve the CLI args that will +@REM work with both Windows and non-Windows executions. +set MAVEN_CMD_LINE_ARGS=%* + +%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* +if ERRORLEVEL 1 goto error +goto end + +:error +set ERROR_CODE=1 + +:end +@endlocal & set ERROR_CODE=%ERROR_CODE% + +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost +@REM check for post script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" +if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" +:skipRcPost + +@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' +if "%MAVEN_BATCH_PAUSE%" == "on" pause + +if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% + +exit /B %ERROR_CODE% diff --git a/dbrepo-semantics-service/onto_feat.py b/dbrepo-semantics-service/onto_feat.py deleted file mode 100644 index db7eaad6830a3d41c709eddd970cb31fc5a3fb56..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/onto_feat.py +++ /dev/null @@ -1,62 +0,0 @@ -import re -import glob -import sys -import os -from pathlib import Path -import rdflib - -ALLOWED_EXTENSIONS = {'ttl', 'nt'} - -ONTOLOGIES_DIRECTORY = 'ontologies' - -ONTOLOGY_EXTENSIONS = {'.ttl': 'turtle', '.nt': 'nt'} - - -def search_ontologies(query, limit=sys.maxsize, offset=0): - if not bool(re.match('^[a-zA-Z0-9\-\\\s]+$', query)): - return None - ontology_files = glob.glob(ONTOLOGIES_DIRECTORY + "/*") - matches = [] - for file in ontology_files: - format = ONTOLOGY_EXTENSIONS[Path(file).suffix] - g = rdflib.Graph() - g.parse(file, format=format) - l_query = """ - SELECT ?s ?p ?o - WHERE{ - ?s ?p ?o . - FILTER regex(str(?s),\"""" + query + """\","i") - }LIMIT """ + str(limit) + """ OFFSET """ + str(offset) - qres1 = g.query(l_query) - for row in qres1: - matches.append({"S-URI": str(row.s), "P": str(row.p), "O": str(row.o)}) - return matches - - -def setup_ontology_dir(): - if not os.path.exists(ONTOLOGIES_DIRECTORY): - os.mkdir(ONTOLOGIES_DIRECTORY) - - -def list_ontologies(): - setup_ontology_dir() - return list(map(lambda filename: Path(filename).stem, glob.glob(ONTOLOGIES_DIRECTORY + "/*"))) - - -def ontology_exists(name): - setup_ontology_dir() - return name in list_ontologies() - - -def get_ontology(name): - setup_ontology_dir() - files = glob.glob(ONTOLOGIES_DIRECTORY + "/" + name + ".*") - if len(files) == 0: - return None - with open(files[0]) as f: - return f.read() - - -def allowed_file(filename): - return '.' in filename and \ - filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS diff --git a/dbrepo-semantics-service/ontologies/om-2.rdf b/dbrepo-semantics-service/ontologies/om-2.rdf deleted file mode 100644 index e1e684fcdb800e41f4d18941aa46ca9fd1f94e2d..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/ontologies/om-2.rdf +++ /dev/null @@ -1,40687 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<rdf:RDF - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> - -<rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#hiddenLabel"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx10"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx11"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">singular unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Ontology of units of Measure (OM) 2.0 models concepts and relations important to scientific research. It has a strong focus on units, quantities, measurements, and dimensions.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Ontology of units of Measure (OM)</label> - <creator xmlns="http://purl.org/dc/elements/1.1/" xml:lang="en">Hajo Rijgersberg, Don Willems, Xin-Ying Ren, Mari Wigham, Jan Top</creator> - <date xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2017/12/28</date> - <identifier xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ontology-of-units-of-measure.org/vocabularies/om-2/</identifier> - <versionInfo xmlns="http://www.w3.org/2002/07/owl#" xml:lang="en">2.0.7</versionInfo> - <license xmlns="http://purl.org/dc/elements/1.1/" xml:lang="en">This document is available under Creative Common License. You are free to Share — to copy, distribute, display, and perform the work and to Remix — to make derivative works; under the condition of Attribution: You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). The publisher does not accept any liability for the inaccuracies in this document.</license> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.openisbn.com/isbn/9789462280618/"/> - <illustration xmlns="http://www.wurvoc.org/vocabularies/WV/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.wurvoc.org/images/vocabularies/om-illustration.jpg</illustration> - <logo xmlns="http://www.wurvoc.org/vocabularies/WV/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.wurvoc.org/images/vocabularies/om-logo.jpg</logo> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx11"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx100"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx101"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx101"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LengthUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has value</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx4"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1000"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1001"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IntervalScale"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Fahrenheit scale</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Fahrenheitschaal</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeFahrenheit"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.8</hasFactor> - <hasOff-Set xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">-459.67</hasOff-Set> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1001"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1002"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IntervalScale"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Réaumur scale</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Réaumurschaal</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeReaumur"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1</hasFactor> - <hasOff-Set xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">-218.52</hasOff-Set> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1002"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1003"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RatioScale"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kelvin scale</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Kelvinschaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1234.93OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_13.8033OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1337.33OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1357.77OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_234.3156OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_24.5561OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_273.16OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_302.9146OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_3To5OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_429.7485OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_505.078OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_54.3584OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_692.677OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_83.8058OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_933.473OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/approximately17OnTheKelvinScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/approximately203OnTheKelvinScale"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">International Kelvin Temperature scale of 1990</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1003"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RatioScale"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Rankine scale</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Rankineschaal</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeRankine"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.8</hasFactor> - <hasOff-Set xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">0</hasOff-Set> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1004"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasScale"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1005"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1005"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1006"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasScale"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has scale</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx57"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1006"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1007"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IntervalScale"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Celsius scale</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Celsiusschaal</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_-189.3442OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_-218.7916OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_-248.5939OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_-259.3467OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_-270.15To-268.15OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_-38.8344OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_0.01OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1064.18OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1084.62OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_156.5985OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_231.928OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_29.7646OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_419.527OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_660.323OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_961.78OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/approximately-252.85OnTheCelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/approximately-256.15OnTheCelsiusScale"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">International Celsius Temperature scale of 1990</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1</hasFactor> - <hasOff-Set xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">-273.15</hasOff-Set> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1007"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1008"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1008"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1009"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1009"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1010"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1010"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LengthUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">length unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx65"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has unit</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx13"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1011"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1012"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1012"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1013"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1013"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1014"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1014"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1015"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">temperature unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx899"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1015"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Temperature_scale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Temperature_scale"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx998"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1016"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasScale"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1017"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1018"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1018"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1019"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1019"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1020"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1020"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1021"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitTemperatureUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx102"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx104"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx104"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx106"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx103"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitTemperatureUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Fahrenheit temperature unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx932"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1021"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitTemperatureScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitTemperatureScale"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Fahrenheit temperature scale</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1022"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasScale"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1023"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1024"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1024"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1025"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1025"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1026"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1026"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1027"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineTemperatureUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineTemperatureUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Rankine temperature unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx936"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1027"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineTemperatureScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineTemperatureScale"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Rankine temperature scale</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1028"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasScale"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1029"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1030"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1030"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1031"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx103"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The metre is a unit of length defined as the length of the path travelled by light in vacuum during a time interval of 1/299 792 458 of a second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">米</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">meter</alternativeLabel> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The metre is a unit of length defined as the length of the path travelled by light in vacuum during a time interval of 1/299 792 458 of a second. The metre is a base unit in the International System of Units.</longcomment> - <hasQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lengthOfThePathTravelledByLightInVacuumDuringATimeIntervalOf1299792458OfASecond"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1031"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1032"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1032"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1033"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurTemperatureUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurTemperatureUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Réaumur temperature unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx940"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1033"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurTemperatureScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurTemperatureScale"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Réaumur temperature scale</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1034"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermodynamic temperature dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">absolute-temperatuurdimensie</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Θ</symbol> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has dimension</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx61"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1035"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/entropyOrHeatCapacity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/entropyOrHeatCapacity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">entropy or heat capacity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1036"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/entropyOrHeatCapacity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1037"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEntropyOrSpecificHeatCapacity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEntropyOrSpecificHeatCapacity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific entropy or specific heat capacity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1038"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEntropyOrSpecificHeatCapacity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1039"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermalConductivity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/thermalConductivity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal conductivity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx106"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx108"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx105"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1040"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermalInsulance-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/thermalInsulance-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal insulance dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1041"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermalResistance-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/thermalResistance-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal resistance dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1042"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/heatTransferCoefficient-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/heatTransferCoefficient-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">heat transfer coefficient dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1043"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volumetricHeatCapacity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/volumetricHeatCapacity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volumetric heat capacity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1044"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1046"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1046"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1051"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1045"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1045"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1047"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1047"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1048"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abampere"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1051"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedAmpere"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/abampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The abampere is a unit of electric current defined as 10 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">abampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">abampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abA</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1048"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1049"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The ampere is a unit of electric current defined as the constant current that produces an attractive force of 2e–7 newton per metre of length between two straight, parallel conductors of infinite length and negligible circular cross section placed one metre apart in a vacuum.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ampère</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The ampere is a unit of electric current defined as the constant current that produces an attractive force of 2e–7 newton per metre of length between two straight, parallel conductors of infinite length and negligible circular cross section placed one metre apart in a vacuum. The ampere is a base unit in the International System of Units.</longcomment> - <hasQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/constantCurrentThatProducesAnAttractiveForceOf2e-7NewtonPerMetreOfLengthBetweenTwoStraightParallelConductorsOfInfiniteLengthAndNegligibleCircularCrossSectionPlacedOneMetreApartInAVacuum"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1049"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1050"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/biot"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/biot"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The biot is a unit of electric current defined as 10 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">biot</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">biot</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bi</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1050"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statampere"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx105"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/statampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The statampere is a unit of electric current defined as 3.335641e-10 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">statampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">statampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">statA</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.335641e-10</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedAmpere"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed ampere</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1061"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1052"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1054"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1054"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1056"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1053"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1053"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1055"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1055"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gilbert"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1056"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedAmpere"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gilbert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gilbert is a unit of electric current defined as 7.957747e-1 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gilbert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gilbert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gb</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">7.957747e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1057"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1058"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1058"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrentUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrentUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric current unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1044"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1059"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1060"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1060"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnetomotiveForceUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx108"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx110"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx107"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnetomotiveForceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetomotive force unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1052"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1061"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1063"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1063"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1065"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1062"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1062"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1065"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1067"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1064"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1064"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1067"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1069"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1066"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1066"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">SI prefix</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Prefix"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has prefix</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Prefix"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1069"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1068"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1068"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx107"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1070"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1071"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1071"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Ampere per square metre is a unit of current density defined as ampere divided by square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ampere per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ampère per vierkante meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/currentDensity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A·m-2</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ampere per square metre is a unit of current density defined as ampere divided by square metre. Ampere per square metre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1072"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1073"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1073"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CurrentDensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CurrentDensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">current density unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1070"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1074"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1076"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1076"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1083"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1075"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1075"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1077"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1077"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1078"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abcoulomb"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1083"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedCoulomb"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/abcoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The abcoulomb is a unit of electric charge defined as 10 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">abcoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">abcoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abC</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1078"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1079"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The coulomb is a unit of electric charge defined as ampere times second = farad times volt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">coulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">coulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeAmpere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The coulomb is a unit of electric charge defined as ampere times second = farad times volt. The coulomb is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1079"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1080"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/faraday"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/faraday"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The faraday is a unit of electric charge defined as 9.648531e4 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">faraday</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">faraday</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">9.648531e4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1080"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1081"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/franklin"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx110"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx109"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/franklin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The franklin is a unit of electric charge defined as 3.335641e-10 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">franklin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">franklin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fr</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.335641e-10</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1081"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1082"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statcoulomb"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/statcoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The statcoulomb is a unit of electric charge defined as 3.335641e-10 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">statcoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">statcoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">statC</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.335641e-10</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1082"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeAmpere"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeAmpere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">second ampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">seconde ampère</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s A</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s·A</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedCoulomb"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed coulomb</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1086"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1084"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1085"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1085"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricChargeUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricChargeUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric charge unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1074"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1086"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1088"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1088"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1090"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1087"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1087"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1090"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1092"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1089"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1089"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx109"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1092"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1094"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1091"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1091"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1094"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1093"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1093"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1095"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1097"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1097"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1102"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1096"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1096"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1098"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1098"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1099"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abvolt"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1102"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedVolt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/abvolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The abvolt is a unit of electric potential defined as 1.0e-8 volt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">abvolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">abvolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abV</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-8</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1099"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1100"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statvolt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/statvolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The statvolt is a unit of electric potential defined as 2.997925e2 volt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">statvolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">statvolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">statV</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.997925e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1100"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1101"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fixed point</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Point"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx54"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The volt is a unit of electric potential defined as watt divided by ampere = joule divided by coulomb = newton times metre divided by ampere times second = kilogram times square metre divided by ampere times second to the power 3.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">volt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerAmpere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The volt is a unit of electric potential defined as watt divided by ampere = joule divided by coulomb = newton times metre divided by ampere times second = kilogram times square metre divided by ampere times second to the power 3. The volt is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1101"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerAmpere"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerAmpere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per ampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per ampère</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/A</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W A-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·A-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedVolt"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed volt</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1105"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1103"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1104"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1104"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotentialUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotentialUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric potential unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1095"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1105"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1107"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1107"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1109"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1106"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1106"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1109"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1111"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1108"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1108"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1111"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1113"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1110"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx111"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx113"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx113"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx120"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx112"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1110"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1113"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1112"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1112"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1114"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1116"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1116"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1121"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1115"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1115"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1117"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1117"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1118"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abfarad"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1121"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedFarad"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/abfarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The abfarad is a unit of capacitance defined as 1.0e9 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">abfarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">abfarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abF</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e9</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1118"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1119"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The farad is a unit of capacitance defined as ampere times second divided by volt = coulomb divided by volt = coulomb squared divided by joule = coulomb squared divided by newton times metre = second squared times coulomb squared divided by square metre times kilogram = second to the power 4 times ampere squared divided by square metre times kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">farad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">farad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerVolt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">F</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The farad is a unit of capacitance defined as ampere times second divided by volt = coulomb divided by volt = coulomb squared divided by joule = coulomb squared divided by newton times metre = second squared times coulomb squared divided by square metre times kilogram = second to the power 4 times ampere squared divided by square metre times kilogram. The farad is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1119"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1120"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statfarad"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/statfarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The statfarad is a unit of capacitance defined as 1.112650e-12 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">statfarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">statfarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">statF</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.112650e-12</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1120"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerVolt"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx112"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx114"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx114"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx115"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acre-International"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerVolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">coulomb per volt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">coulomb per volt</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C/V</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C V-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C·V-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedFarad"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed farad</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1124"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1122"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1123"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1123"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CapacitanceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CapacitanceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">capacitance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1114"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1124"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1126"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1126"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1128"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1125"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1125"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1128"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1130"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1127"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1127"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1130"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1132"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1129"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1129"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx120"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx121"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedAre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1132"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1131"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1131"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1133"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1135"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1135"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1140"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1134"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1134"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1136"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1136"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1137"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abohm"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1140"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedOhm"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/abohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The abohm is a unit of electrical resistance defined as 1.0e-9 ohm.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">abohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">abohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abΩ</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-9</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1137"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1138"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The ohm is a unit of electrical resistance defined as volt divided by ampere = square metre times kilogram divided by second to the power 3 times ampere squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerAmpere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The ohm is a unit of electrical resistance defined as volt divided by ampere = square metre times kilogram divided by second to the power 3 times ampere squared. The ohm is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1138"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1139"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statohm"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/statohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The statohm is a unit of electrical resistance defined as 8.987552e11 ohm.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">statohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">statohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">statΩ</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">8.987552e11</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1139"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerAmpere"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerAmpere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volt per ampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">volt per ampère</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V/A</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V A-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V·A-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/acre-International"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The international acre is a unit of area defined as 4.0468564224e3 square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">acre (international)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">英亩(国际)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ac</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">international acre</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.0468564224e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx115"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx116"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acre-USSurvey"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedOhm"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed ohm</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1143"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1141"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1142"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1142"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistanceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistanceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical resistance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1133"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1143"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1145"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1145"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1147"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1144"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1144"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1147"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1149"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1146"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1146"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1149"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1151"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1148"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1148"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1151"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1150"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/acre-USSurvey"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US survey acre is a unit of area defined as 4.046872609874252e3 square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">acre (US survey)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">英亩(美国调查)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ac</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US survey acre</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.046872609874252e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx116"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx117"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/are"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1150"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1152"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1154"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1154"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1160"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1153"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1153"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1155"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1155"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1156"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abmho"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1160"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSiemens"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/abmho"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The abmho is a unit of electrical conductance defined as 1.0e9 siemens.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">abmho</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">abmho</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">absiemens</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">absiemens</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e9</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1156"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1157"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mho"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mho"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The mho is a unit of electrical conductance defined as 1 siemens.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mho</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mho</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\mhoUnit</LaTeXCommand> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1157"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1158"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The siemens is a unit of electrical conductance defined as 1 divided by ohm = ampere divided by volt = coulomb squared times second divided by kilogram times square metre = ampere squared times second to the power 3 divided by kilogram times square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">siemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">siemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerVolt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The siemens is a unit of electrical conductance defined as 1 divided by ohm = ampere divided by volt = coulomb squared times second divided by kilogram times square metre = ampere squared times second to the power 3 divided by kilogram times square metre. The siemens is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1158"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1159"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statmho"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/statmho"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The statmho is a unit of electrical conductance defined as 1.112650e-12 siemens.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">statmho</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">statmho</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">statsiemens</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">statsiemens</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.112650e-12</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1159"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerVolt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerVolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ampere per volt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ampère per volt</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A/V</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A V-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A·V-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/are"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The are is a unit of area defined as 100 square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">are</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">are</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx117"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx118"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barn"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSiemens"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed siemens</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1163"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1161"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1162"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1162"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductanceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductanceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical conductance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1152"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1163"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1165"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1165"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1167"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1164"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1164"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1167"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1169"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1166"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1166"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1169"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1171"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1168"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1168"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1171"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1170"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/barn"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The barn is a unit of area defined as 1.0e-28 square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">barn</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">b</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-28</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx118"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx119"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/circularMil"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1170"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1172"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1173"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1173"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1174"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerCoulomb"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerCoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">newton per coulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">newton per coulomb</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricField-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N/C</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N C-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N·C-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1174"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volt per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">volt per meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricField-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1175"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1176"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1176"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricFieldUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricFieldUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric field unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1172"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1177"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1178"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1178"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerCubicmetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerCubicmetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">coulomb per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">coulomb per kubieke meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricChargeDensity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C·m-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1179"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1180"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1180"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricChargeDensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/circularMil"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The cicular mil is a unit of area defined as 5.067075e-10 square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">circular mil</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">5.067075e-10</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx119"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricChargeDensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric charge density unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1177"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1181"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1182"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1182"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">coulomb per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">coulomb per vierkante meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricFluxDensity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1183"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1184"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1184"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricFluxDensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricFluxDensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric flux density unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1181"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1185"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1187"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1187"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1193"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1186"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1186"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1188"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1188"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1189"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/maxwell"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1193"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedWeber"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/maxwell"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The maxwell is a unit of magnetic flux defined as 1.0e-8 weber.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">maxwell</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">maxwell</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mx</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-8</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1189"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1190"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statweber"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/statweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The statweber is a unit of magnetic flux defined as 2.9979e2 weber.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">statweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">statweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">statWb</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.9979e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1190"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1191"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/unitPole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Square metre is a unit of area defined as the area of a square whose sides measure exactly one metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">平方米</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Square metre is a unit of area defined as the area of a square whose sides measure exactly one metre. Square metre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/unitPole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The unit pole is a unit of magnetic flux defined as 1.256637e-7 weber.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">unit pole</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.256637e-7</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1191"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1192"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The weber is a unit of magnetic flux defined as kilogram times square metre divided by second squared times ampere = volt times second = joule divided by ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">weber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">weber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltSecond-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wb</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The weber is a unit of magnetic flux defined as kilogram times square metre divided by second squared times ampere = volt times second = joule divided by ampere. The weber is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1192"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/voltSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volt second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">volt seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V·s</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedWeber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed weber</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1196"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1194"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1195"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1195"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic flux unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1185"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1196"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1198"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1198"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1200"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1197"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1197"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1200"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1202"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1199"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1199"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx12"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedAre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed are</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx133"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx121"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1202"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1204"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1201"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1201"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1204"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1203"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1203"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1205"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1206"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1206"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1207"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/oersted"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/oersted"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The oersted is a unit of magnetic field defined as 7.957747e1 ampere per metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">oersted</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticField-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Oe</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">7.957747e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1207"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Ampere per metre is a unit of magnetic field defined as ampere divided by metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ampere per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ampère per meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticField-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A·m-1</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ampere per metre is a unit of magnetic field defined as ampere divided by metre. Ampere per metre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1208"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1209"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1209"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFieldUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFieldUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic field unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1205"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square prefixed metre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx124"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1210"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1212"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1212"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1219"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1211"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1211"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1213"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1213"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1214"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gamma"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1219"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedTesla"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gamma"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gamma is a unit of magnetic flux density defined as 1.0e-9 tesla.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gamma</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gamma</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">γ</symbol> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\gammaUnit</LaTeXCommand> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-9</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1214"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1215"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gauss"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gauss"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gauss is a unit of magnetic flux density defined as 1.0e-4 tesla.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gauss</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gauss</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">G</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">abtesla</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">abtesla</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gs</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1215"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1216"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stattesla"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/stattesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The stattesla is a unit of magnetic flux density defined as 2.9979e6 tesla.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stattesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stattesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">statT</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.9979e6</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1216"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1217"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The tesla is a unit of magnetic flux density defined as volt times second divided by square metre = newton divided by ampere times metre = weber divided by square metre = kilogram divided by coulomb times second = kilogram divided by ampere times second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">tesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">tesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerSquareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The tesla is a unit of magnetic flux density defined as volt times second divided by square metre = newton divided by ampere times metre = weber divided by square metre = kilogram divided by coulomb times second = kilogram divided by ampere times second squared. The tesla is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1217"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1218"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">weber per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">weber per vierkante meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wb/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wb m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wb·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1218"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligauss"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milligauss"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The milligauss is a unit of magnetic flux density defined as 1.0e-3 gauss.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milligauss</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milligauss</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gauss"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mG</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedTesla"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed tesla</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1222"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx122"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx123"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx123"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1220"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1221"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1221"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxDensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxDensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic flux density unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1210"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1222"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1224"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1224"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1226"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1223"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1223"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1226"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1228"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1225"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1225"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1228"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1230"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1227"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1227"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1230"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1229"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1229"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">area unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx111"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1231"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1233"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1233"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1238"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1232"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1232"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1234"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1234"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1235"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abhenry"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1238"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedHenry"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/abhenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The abhenry is a unit of inductance defined as 1.0e-9 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">abhenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">abhenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abH</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-9</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1235"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1236"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The henry is a unit of inductance defined as square metre times kilogram divided by second squared times ampere squared = weber divided by ampere = volt second divided by ampere = (joule divided by coulomb) times second divided by (coulomb divided by second) = joule times second squared divided by coulomb squared = square metre times kilogram divided by coulomb squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">henry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">henry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerAmpere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">H</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The henry is a unit of inductance defined as square metre times kilogram divided by second squared times ampere squared = weber divided by ampere = volt second divided by ampere = (joule divided by coulomb) times second divided by (coulomb divided by second) = joule times second squared divided by coulomb squared = square metre times kilogram divided by coulomb squared. The henry is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1236"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1237"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stathenry"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/stathenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The stathenry is a unit of inductance defined as 8.987552e11 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stathenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stathenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">statH</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">8.987552e11</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1237"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerAmpere"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerAmpere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">weber per ampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">weber per ampère</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wb/A</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wb A-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wb·A-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedHenry"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed henry</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1245"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1239"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1240"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1240"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerAmpere"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx124"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx126"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx126"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx128"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx125"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1241"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1242"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1242"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/InductanceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/InductanceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">inductance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1231"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1243"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1244"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1244"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Permeance-ElectromagneticUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Permeance-ElectromagneticUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permeance (electromagnetic) unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1239"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1245"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1247"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1247"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1249"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1246"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1246"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1249"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1251"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1248"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1248"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1251"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1253"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1250"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx125"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasBase"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed metre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx102"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasBase"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has base</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx35"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx33"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1250"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1253"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1252"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1252"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1254"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1255"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1255"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henryPerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/henryPerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">henry per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">henry per meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/permeabilityOfFreeSpace-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">H/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">H m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">H·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1256"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1257"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1257"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PermeabilityOfFreeSpaceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PermeabilityOfFreeSpaceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permeability of free space unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1254"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1258"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1259"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1259"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/faradPerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/faradPerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">farad per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">farad per meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/permittivity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">F/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">F m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">F·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx128"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx130"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx127"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1260"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1261"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1261"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PermittivityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PermittivityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permittivity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1258"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1262"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1263"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1263"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1264"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/debye"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/debye"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The debye is a unit of electric dipole moment defined as 3.33564e-30 coulomb metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">debye</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">debye</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricDipoleMoment-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">D</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.33564e-30</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1264"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">coulomb metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">coulomb meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricDipoleMoment-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C·m</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1265"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1266"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1266"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricDipoleMomentUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricDipoleMomentUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric dipole moment unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1262"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1267"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1268"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1268"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalHenry"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalHenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal henry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde henry</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reluctance-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">H-1</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1269"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1270"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1270"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReluctanceUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx127"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasBase"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ReluctanceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reluctance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1267"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1271"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1272"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1272"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohmMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ohmMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ohm metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ohm meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistivity-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω·m</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1273"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1274"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1274"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistivityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistivityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical resistivity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1271"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1275"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1276"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1276"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemensPerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/siemensPerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">siemens per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">siemens per meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductivity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1277"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1278"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1278"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductivityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductivityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical conductivity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1275"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1279"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric current dimension</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I</symbol> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx130"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx132"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx129"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1280"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1281"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/currentDensity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/currentDensity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">current density dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1282"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric charge dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1283"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric potential dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1284"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">capacitance dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">4</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1285"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical resistance dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1286"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical conductance dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1287"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricField-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricField-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric field dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1288"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricChargeDensity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricChargeDensity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric charge density dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1289"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricFluxDensity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricFluxDensity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric flux density dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx129"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasExponent"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">2</hasValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasExponent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has exponent</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx37"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1290"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic flux dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1291"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticField-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticField-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic field dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1292"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic flux density dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1293"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">inductance or permeance (electromagnetic) dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1294"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1295"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/permeabilityOfFreeSpace-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/permeabilityOfFreeSpace-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permeability of free space dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1296"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/permittivity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/permittivity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permittivity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">4</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1297"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricDipoleMoment-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricDipoleMoment-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric dipole moment dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1298"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reluctance-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reluctance-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reluctance dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1299"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistivity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistivity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical resistivity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx13"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx14"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx14"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx15"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx132"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx131"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1300"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductivity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductivity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical conductivity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1301"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pressure dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1302"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1303"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1303"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1304"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/one"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Unit one is a unit of dimension one.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">one</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">unit one</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1304"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The percent is a unit of dimension one defined as 1/100.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">percent</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">procent</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">百分</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">%</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">0.01</hasFactor> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\%</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1305"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1306"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1306"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StrainUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StrainUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">strain unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1302"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1307"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dimensionOne</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</symbol> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1308"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1309"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/surfaceTension-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/surfaceTension-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">surface tension dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oppervlaktespanningdimensie</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx131"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasExponent"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1310"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1311"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1311"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1312"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1313"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1313"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AlfvenNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AlfvenNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Alfvén number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1310"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1314"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1315"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1316"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1316"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1317"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1318"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1318"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CowlingNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CowlingNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Cowling number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1315"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1319"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1320"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1321"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1321"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1322"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1323"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1323"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/EulerNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/EulerNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Euler number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1320"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1324"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1325"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1326"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1326"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1327"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1328"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1328"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FirstCowlingNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FirstCowlingNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">first Cowling number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1325"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1329"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx133"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx135"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx135"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx137"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx134"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1330"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1331"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1331"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1332"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1333"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1333"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FourierNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FourierNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Fourier number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1330"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1334"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1335"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1336"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1336"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1337"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1338"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1338"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FourierNumberForMassTransferUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FourierNumberForMassTransferUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Fourier number for mass transfer unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1335"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1339"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx134"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/are"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1340"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1341"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1341"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1342"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1343"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1343"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FroudeNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FroudeNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Froude number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1340"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1344"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1345"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1346"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1346"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1347"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1348"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1348"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GrashofNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GrashofNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Grashof number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1345"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1349"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx137"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx139"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx136"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1350"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1351"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1351"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1352"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1353"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1353"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GrashofNumberForMassTransferUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GrashofNumberForMassTransferUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Grashof number for mass transfer unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1350"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1354"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1355"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1356"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1356"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1357"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1358"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1358"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HartmannNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HartmannNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Hartmann number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1355"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1359"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx136"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1360"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1361"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1361"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1362"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1363"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1363"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KnudsenNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/KnudsenNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Knudsen number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1360"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1364"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1365"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1366"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1366"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1367"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1368"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1368"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LewisNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LewisNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Lewis number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1365"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1369"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx139"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx141"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx138"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1370"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1371"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1371"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1372"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1373"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1373"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MachNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MachNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mach number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1370"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1374"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1375"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1376"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1376"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1377"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1378"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1378"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticReynoldsNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticReynoldsNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic Reynolds number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1375"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1379"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx138"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1380"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1381"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1381"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1382"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1383"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1383"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NusseltNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NusseltNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Nusselt number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1380"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1384"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1385"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1386"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1386"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1387"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1388"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1388"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NusseltNumberForMassTransferUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NusseltNumberForMassTransferUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Nusselt number for mass transfer unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1385"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1389"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx141"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx140"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1390"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1391"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1391"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1392"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1393"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1393"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PecletNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PecletNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Péclet number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1390"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1394"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1395"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1396"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1396"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1397"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1398"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1398"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PecletNumberForMassTransferUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PecletNumberForMassTransferUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Péclet number for mass transfer unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1395"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1399"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx12"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx15"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx16"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiple"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx140"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1400"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1401"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1401"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1402"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1403"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1403"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrandtlNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrandtlNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Prandtl number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1400"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1404"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1405"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1406"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1406"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1407"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1408"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1408"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RayleighNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RayleighNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Rayleigh number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1405"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1409"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1410"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1411"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1411"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1412"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1413"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1413"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReynoldsNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ReynoldsNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Reynolds number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1410"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1414"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1415"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1416"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1416"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1417"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1418"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1418"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SchmidtNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SchmidtNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Schmidt number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1415"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1419"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx142"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx144"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx144"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx173"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx143"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1420"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1421"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1421"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1422"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1423"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1423"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StantonNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StantonNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Stanton number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1420"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1424"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1425"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1426"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1426"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1427"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1428"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1428"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StantonNumberForMassTransferUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StantonNumberForMassTransferUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Stanton number for mass transfer unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1425"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1429"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx143"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx145"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx145"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx146"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acreFoot"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1430"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1431"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1431"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1432"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1433"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1433"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StrouhalNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StrouhalNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Strouhal number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1430"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1434"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1435"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1436"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1436"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1437"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1438"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1438"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/WeberNumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WeberNumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Weber number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1435"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1439"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx173"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx174"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedLitre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1440"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1441"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1443"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1443"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1445"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1442"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1442"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1444"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1444"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1445"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The mole is a unit of amount of substance defined as the amount of substance of a system that contains as many elementary entities as there are atoms in 0.012 kilogram of carbon 12.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mol</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The mole is a unit of amount of substance defined as the amount of substance of a system that contains as many elementary entities as there are atoms in 0.012 kilogram of carbon 12. The mole is a base unit in the International System of Units.</longcomment> - <hasQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceOfASystemThatContainsAsManyElementaryEntitiesAsThereAreAtomsIn0.012KilogramOfCarbon12"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMole"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed mole</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1448"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1446"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1447"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1447"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1441"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1448"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1450"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1450"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1452"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1449"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1449"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/acreFoot"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The acre foot is a unit of volume defined as 1.233489e3 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">acre foot</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.233489e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx146"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx147"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barrel-US"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1452"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1454"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1451"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1451"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1454"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1456"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1453"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1453"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1456"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1455"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1455"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1457"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1459"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1459"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1463"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1458"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1458"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1460"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1460"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1461"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1463"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1464"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolair"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/barrel-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US barrel is a unit of volume defined as 1.589873e-1 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">barrel (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bbl</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US barrel</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.589873e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx147"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx148"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bushel-US"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Molair is a unit of amount of substance concentration defined as 1 mole per litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">molair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerLitre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1461"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1462"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerCubicmetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerCubicmetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per cubic metre is a unit of amount of substance concentration defined as mole divided by cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mol per kubieke meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·m-3</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mole per cubic metre is a unit of amount of substance concentration defined as mole divided by cubic metre. Mole per cubic metre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1462"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerLitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per litre is a unit of amount of substance concentration defined as mole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·l-1</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mole per litre is a unit of amount of substance concentration defined as mole divided by litre. Mole per litre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolair"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed molair</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1496"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1464"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1465"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed mole per litre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1469"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1465"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1466"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per prefixed litre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1478"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1466"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerPrefixedLitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerPrefixedLitre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed mole per prefixed litre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1487"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1467"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1468"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1468"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceConcentrationUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceConcentrationUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance concentration unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1457"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1469"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1471"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1471"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1473"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1470"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/bushel-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US bushel is a unit of volume defined as 3.523907e-2 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bushel (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bu</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US bushel</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.523907e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx148"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx149"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cord"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1470"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has numerator</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx41"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx39"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1473"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1475"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1472"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1472"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1475"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1477"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1474"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1474"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The litre is a unit of volume defined as 1.0e-3 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">liter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">升</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">l</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">liter</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">L</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has denominator</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx45"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx43"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1477"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1476"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1476"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1478"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1480"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1480"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1482"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1479"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1479"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cord"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The cord is a unit of volume defined as 3.624556 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cord</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.624556</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx149"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx150"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cup-USCustomary"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1482"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1484"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1481"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1481"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1484"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1486"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1483"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1483"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedLitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedLitre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed litre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx186"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1486"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1485"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1485"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1487"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1489"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1489"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1491"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1488"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1488"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMole"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1491"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1493"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1490"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cup-USCustomary"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US customary cup is a unit of volume defined as 2.365882e-4 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cup (US customary)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US customary cup</alternativeLabel> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\cupUnit</LaTeXCommand> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.365882e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx150"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx151"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dryGallon-US"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1490"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1493"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1495"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1492"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1492"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedLitre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1495"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1494"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1494"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1496"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1498"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1498"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1500"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1497"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1497"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1500"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1502"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1499"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1499"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiple"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">unit multiple</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx16"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx17"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/dryGallon-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US dry gallon is a unit of volume defined as 4.40488377086e-3 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dry gallon (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gal</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US dry gallon</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">gallon (US dry)</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.40488377086e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx151"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx152"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dryPint-US"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1502"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1504"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1501"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1501"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1504"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1503"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1503"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1505"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1506"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1506"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1507"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1507"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1508"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Parts per million is a unit of dimension one defined as 1/1 000 000.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">parts per million</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">0.000001</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1508"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1509"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1509"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1510"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per mole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mol per mol</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/mol</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol mol-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·mol-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1510"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/dryPint-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US dry pint is a unit of volume defined as 5.506105e-4 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dry pint (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dry pt</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US dry pint</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">pint (US dry)</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">5.506105e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx152"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx153"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dryQuart-US"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerMole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micromole per mole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micromol per mol</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol/mol</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol mol-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol·mol-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1511"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1512"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1512"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceFractionUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceFractionUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance fraction unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1505"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1513"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1514"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1514"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerMole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per mole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per mol</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molarEnergy-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/mol</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J mol-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·mol-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1515"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1516"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1516"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarEnergyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarEnergyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar energy unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1513"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1517"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1518"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1518"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinMole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per kelvin mole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per kelvin mol</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molarEntropyOrMolarHeatCapacityOrGasConstant-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvinMole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/(K mol)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J K-1 mol-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/(K·mol)</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·K-1·mol-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1519"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1520"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1520"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/dryQuart-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US dry quart is a unit of volume defined as 1.101221e-3 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dry quart (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dry qt</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US dry quart</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">quart (US dry)</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.101221e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx153"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx154"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidOunce-Imperial"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1521"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1522"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1522"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinMole"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1523"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1524"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1524"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarEntropyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarEntropyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar entropy unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1517"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1525"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1526"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1526"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarHeatCapacityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarHeatCapacityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar heat capacity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1519"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1527"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1528"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1528"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GasConstantUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GasConstantUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gas constant unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1521"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1529"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1530"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1530"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidOunce-Imperial"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The imperial fluid ounce is a unit of volume defined as 2.841306e-5 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fluid ounce (imperial)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fl oz</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">imperial fluid ounce</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ounce (imperial fluid)</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.841306e-5</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx154"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx155"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidOunce-US"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mol per kilogram</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/kg</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol kg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·kg-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1531"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1532"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1532"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolalityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolalityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molality unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1529"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1533"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1534"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1534"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerMole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram per mole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per mol</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/mol</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg mol-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·mol-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1535"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1536"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1536"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarMassUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarMassUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar mass unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1533"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1537"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1538"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1538"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1539"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerMole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic metre per mole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke meter per mol</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3/mol</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3 mol-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3·mol-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1539"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litrePerMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/litrePerMole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">litre per mole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">liter per mol</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">l/mol</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">l mol-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">l·mol-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidOunce-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US fluid ounce is a unit of volume defined as 2.957353e-5 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fluid ounce (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fl oz</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US fluid ounce</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ounce (US fluid)</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.957353e-5</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx155"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx156"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gallon-Imperial"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1540"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1541"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1541"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarVolumeUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarVolumeUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar volume unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1537"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1542"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1544"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1544"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1546"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1543"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1543"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMole"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1546"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1548"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1545"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1545"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1548"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1550"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1547"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1547"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1550"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1549"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1549"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gallon-Imperial"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The imperial gallon is a unit of volume defined as 4.54609e-3 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gallon (imperial)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gal</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">imperial gallon</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.54609e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx156"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx157"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gallon-US"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1551"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1553"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1553"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1555"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1552"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1552"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1555"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1557"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1554"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1554"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1557"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1559"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1556"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1556"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1559"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1558"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1558"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gallon-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US gallon is a unit of volume defined as 3.785412e-3 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gallon (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gal</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US gallon</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.785412e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx157"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx158"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gill-Imperial"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1560"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1562"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1562"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1564"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1561"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1561"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMole"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1564"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1566"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1563"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1563"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1566"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1568"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1565"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1565"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1568"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1567"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1567"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1569"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stofhoeveelheiddimensie</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N</symbol> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gill-Imperial"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The imperial gill is a unit of volume defined as 1.420653e-4 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gill (imperial)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gi</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">imperial gill</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.420653e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx158"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx159"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gill-US"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1570"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance concentration dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1571"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molarEnergy-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molarEnergy-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar energy dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">molaire-energiedimensie</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1572"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molarEntropyOrMolarHeatCapacityOrGasConstant-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molarEntropyOrMolarHeatCapacityOrGasConstant-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar entropy, molar heat capacity, or gas constant dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1573"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molarEntropyOrMolarHeatCapacityOrGasConstant-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1574"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molarEntropyOrMolarHeatCapacityOrGasConstant-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1575"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1576"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1576"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1577"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mol per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1577"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micromole per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micromol per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1578"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1580"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1580"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1585"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1579"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1579"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1581"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1581"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1582"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amylaseUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gill-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US gill is a unit of volume defined as 1.182941e-4 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gill (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gi</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US gill</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.182941e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx159"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx160"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1585"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedKatal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/amylaseUnit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The amylase unit is a unit of catalytic activity.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amylase unit</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AU</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">U</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1582"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1583"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The katal is a unit of catalytic activity defined as mole divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">katal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">katal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerSecond-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kat</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The katal is a unit of catalytic activity defined as mole divided by second. The katal is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1583"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1584"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1584"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450PerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450PerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">delta A450 per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">delta A450 per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedKatal"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed katal</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1590"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1586"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1587"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1587"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceFlowUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceFlowUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance flow unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1575"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1588"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1589"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1589"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CatalyticActivityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CatalyticActivityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">catalytic activity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1578"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx160"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx161"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/liquidPint-US"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1590"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1592"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1592"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1594"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1591"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1591"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1594"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1596"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1593"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1593"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1596"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1598"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1595"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1595"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1598"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1597"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1597"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1599"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1600"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1600"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katalPerCubicmetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx17"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx18"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IntervalScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/liquidPint-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US liquid pint is a unit of volume defined as 4.731765e-4 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">liquid pint (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">liq pt</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US liquid pint</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">pint (US liquid)</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.731765e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx161"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx162"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/liquidQuart-US"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/katalPerCubicmetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">katal per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">katal per kubieke meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivityConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kat/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kat m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kat·m-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1601"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1602"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1602"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CatalyticActivityConcentrationUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CatalyticActivityConcentrationUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">catalytic activity concentration unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1599"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1603"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1604"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1604"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1605"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokatalPerMilligram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokatalPerMilligram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanokatal per milligram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanokatal per milligram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificCatalyticActivity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokatal"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nkat/mg</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nkat mg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nkat·mg-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1605"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450PerSecond-TimePerMilligram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450PerSecond-TimePerMilligram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">delta A450 per second per milligram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">delta A450 per seconde per milligram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificCatalyticActivity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450PerSecond-Time"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1606"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1607"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1607"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificCatalyticActivityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificCatalyticActivityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific catalytic activity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1603"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1608"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">catalytic activity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1609"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivityConcentration-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivityConcentration-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">catalytic activity concentration dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/liquidQuart-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US liquid quart is a unit of volume defined as 9.463529e-4 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">liquid quart (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">liq qt</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US liquid quart</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">quart (US liquid)</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">9.463529e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx162"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx163"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peck-US"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1610"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificCatalyticActivity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/specificCatalyticActivity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific catalytic activity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1611"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1613"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1613"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1615"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1612"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1612"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1614"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1614"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1615"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedCandela"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The candela is a unit of luminous intensity defined as the luminous intensity, in a given direction, of a source that emits monochromatic radiation of frequency 540e12 hertz and that has a radiant intensity in that direction of 1/683 watt per steradian.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">candela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">candela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">坎德拉</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cd</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The candela is a unit of luminous intensity defined as the luminous intensity, in a given direction, of a source that emits monochromatic radiation of frequency 540e12 hertz and that has a radiant intensity in that direction of 1/683 watt per steradian. The candela is a base unit in the International System of Units.</longcomment> - <hasQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensityInAGivenDirectionOfASourceThatEmitsMonochromaticRadiationOfFrequency540e12HertzAndThatHasARadiantIntensityInThatDirectionOf1683WattPerSteradian"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedCandela"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed candela</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1618"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1616"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1617"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1617"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousIntensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousIntensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous intensity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1611"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1618"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1620"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1620"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1622"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1619"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1619"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/peck-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US peck is a unit of volume defined as 8.809768e-3 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">peck (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pk</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US peck</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">8.809768e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx163"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx164"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pint-Imperial"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1622"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1624"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1621"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1621"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1624"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1626"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1623"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1623"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1626"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1625"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1625"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1627"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1628"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1628"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1629"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footlambert"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/footlambert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The footlambert is a unit of luminance defined as 3.426259 candela per square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">footlambert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminance-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.426259</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1629"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1630"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lambert"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/lambert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The lambert is a unit of luminance defined as 3.183099e3 candela per square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">lambert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lambert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminance-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.183099e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1630"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1631"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stilb"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pint-Imperial"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The pint is a unit of volume defined as 568.26125 millilitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pint (imperial)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilitre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">imperial pint</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">568.26125</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx164"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx165"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quart-Imperial"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/stilb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The stilb is a unit of luminance defined as 1.0e4 candela per square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stilb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stilb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sb</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1631"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1632"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Candela per square metre is a unit of luminance defined as candela divided by square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">candela per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">candela per vierkante meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminance-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cd/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cd m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cd·m-1</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Candela per square metre is a unit of luminance defined as candela divided by square metre. Candela per square metre is a derived unit in the Internationa; System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1632"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareCentimetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">candela per square centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">candela per vierkante centimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminance-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareCentimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cd/cm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cd cm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cd·cm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1633"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1634"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1634"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminanceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminanceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1627"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1635"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1637"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1637"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1640"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1636"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1636"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1638"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1638"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1639"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1640"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedLumen"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The lumen is a unit of luminous flux defined as candela times steradian = lux times square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">lumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaSteradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lm</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The lumen is a unit of luminous flux defined as candela times steradian = lux times square metre. The lumen is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1639"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaSteradian"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaSteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">candela steradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">candela steradiaal</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cd sr</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cd·sr</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/quart-Imperial"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The imperial quart is a unit of volume defined as 1.1365 litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quart (imperial)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">imperial quart</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.1365</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx165"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx166"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stere"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedLumen"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed lumen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1643"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1641"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1642"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1642"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousFluxUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousFluxUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous flux unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1635"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1643"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1645"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1645"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1647"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1644"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1644"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1647"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1649"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1646"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1646"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1649"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1651"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1648"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1648"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1651"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1650"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/stere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The stere is a unit of volume defined as cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stere</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx166"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx167"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tablespoon-US"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1650"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1652"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1654"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1654"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1653"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1653"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1655"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1655"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">lumen second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lumen seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousEnergy-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lm s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lm·s</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1656"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1657"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1657"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousEnergyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousEnergyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous energy unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1652"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1658"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1660"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1660"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1665"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1659"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1659"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1661"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1661"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1662"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footcandle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tablespoon-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US tablespoon is a unit of volume defined as 1.478676e-5 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">tablespoon (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US tablespoon</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.478676e-5</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx167"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx168"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teaspoon-US"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1665"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedLux"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/footcandle"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The footcandle is a unit of illuminance defined as 1.076391e1 lux.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">footcandle</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.076391e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1662"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1663"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The lux is a unit of illuminance defined as lumen divided by square metre = candela times steradian divided by square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">lux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenPerSquareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lx</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The lux is a unit of illuminance defined as lumen divided by square metre = candela times steradian divided by square metre. The lux is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1663"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1664"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/phot"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/phot"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The phot is a unit of illuminance defined as 1.0e4 lux.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">phot</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">phot</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ph</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1664"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenPerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">lumen per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lumen per vierkante meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lm/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lm m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lm·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedLux"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed lux</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1668"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1666"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1667"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1667"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IlluminanceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/IlluminanceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">illuminance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1658"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1668"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1670"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1670"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1672"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1669"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1669"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teaspoon-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US teaspoon is a unit of volume defined as 4.928922e-6 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teaspoon (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US teaspoon</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.928922e-6</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx168"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx169"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dessertspoon"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1672"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1674"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1671"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1671"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1674"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1676"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1673"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1673"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1676"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1675"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1675"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1677"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1679"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1679"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1678"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1678"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1680"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1680"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luxSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/dessertspoon"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The desserspoon is a unit of volume defined as 2 teaspoon.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dessertspoon</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teaspoon-US"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx169"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx170"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Register"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/luxSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">lux second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lux seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exposure-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lx s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lx·s</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1681"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1682"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1682"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExposureUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ExposureUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exposure unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1677"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1683"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1685"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1685"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1684"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1684"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1686"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1686"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenPerWatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenPerWatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">lumen per watt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lumen per watt</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousEfficacy-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lm/W</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lm W-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lm·W-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1687"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1688"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1688"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousEfficacyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousEfficacyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous efficacy unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1683"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1689"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous intensity dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lichtsterktedimensie</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J</symbol> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Register"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The register ton is a unit of volume defined as 2.831658 cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ton (register)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">register ton</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.831658</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx170"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx171"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1690"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminance-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/luminance-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminance dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1691"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousEnergy-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousEnergy-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous energy dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1692"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous flux dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1693"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">illuminance dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1694"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exposure-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exposure-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exposure dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1695"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousEfficacy-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousEfficacy-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous efficacy dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1696"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1698"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1698"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1703"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1697"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1697"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1699"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1699"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1700"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1703"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGray"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gray is a unit of absorbed dose defined as joule divided by kilogram = square metre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gy</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The gray is a unit of absorbed dose defined as joule divided by kilogram = square metre divided by second squared. The gray is a derived unit is the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1700"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1701"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rad"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/IntervalScale"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">interval scale</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx18"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx19"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RatioScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Cubic metre is a unit of volume defined as the volume of a cube whose sides measure exactly one metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cubic metre is a unit of volume defined as the volume of a cube whose sides measure exactly one metre. Cubic metre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx171"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx172"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicParsec"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/rad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The rad is a unit of absorbed dose defined as 1.0e-2 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">rad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">rad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rad</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1701"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1702"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">焦耳每千克</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/kg</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J kg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·kg-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1702"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoulePerHectogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoulePerHectogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilojoule per hectogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilojoule per hectogram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kJ/hg</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">kilojoule per 100 gram</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">kilojoule per 100 gram</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kJ hg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kJ·hg-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGray"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed gray</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1709"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1704"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1705"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1705"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDoseUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDoseUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">absorbed dose unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1696"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1706"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific energy, absorbed dose, or dose equivalent dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1707"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1708"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">frequency dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1709"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1711"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1711"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1713"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1710"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicParsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic parsec</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke parsec</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pc3</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx172"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicKiloparsec"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1710"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1713"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1715"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1712"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1712"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1715"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1717"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1714"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1714"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1717"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1716"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1716"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1718"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1720"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1720"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1725"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1719"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1719"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1721"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1721"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1722"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rem"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicKiloparsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic kiloparsec</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke kiloparsec</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kpc3</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1725"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSievert"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/rem"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The rem is a unit of dose equivalent defined as 1.0e-2 sievert.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">rem</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">rem</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rem</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1722"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1723"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The sievert is a unit of dose equivalent defined as joule divided by kilogram = square metre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">sievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">sievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sv</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The sievert is a unit of dose equivalent defined as joule divided by kilogram = square metre divided by second squared. The sievert is a derived unit is the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1723"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1724"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1724"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoulePerHectogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSievert"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed sievert</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1728"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1726"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1727"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1727"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DoseEquivalentUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DoseEquivalentUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dose equivalent unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1718"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1728"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1730"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1730"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1732"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1729"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1729"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx174"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1732"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1734"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1731"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1731"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1734"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1736"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1733"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1733"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1736"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1735"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1735"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1737"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1739"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1739"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1743"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1738"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1738"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1740"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1740"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1741"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1743"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedBecquerel"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic prefixed metre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx177"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The becquerel is a unit of activity defined as the activity of a quantity of radioactive material in which one nucleus decays per second. Algebraically it is defined as 1 divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">becquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">becquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bq</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The becquerel is a unit of activity defined as the activity of a quantity of radioactive material in which one nucleus decays per second. Algebraically it is defined as 1 divided by second. The becquerel is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1741"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1742"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/curie"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/curie"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The curie is a unit of activity defined as 3.7e10 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">curie</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">curie</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ci</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.7e10</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1742"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s-1</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedBecquerel"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed becquerel</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1746"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1744"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1745"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1745"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ActivityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ActivityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">activity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1737"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1746"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1748"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1748"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1750"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1747"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1747"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1750"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1752"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1749"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1749"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx175"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx176"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx176"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumeUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1752"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1754"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1751"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1751"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1754"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1753"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1753"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1755"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1756"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1756"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1757"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/röntgen"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/röntgen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The röntgen is a unit of exposure to x and γ rays defined as 2.58e-4 coulomb per kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">röntgen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">röntgen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerKilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exposureToXAndGammaRays-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">R</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.58e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1757"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">coulomb per kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">coulomb per kilogram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exposureToXAndGammaRays-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C/kg</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C kg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C·kg-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1758"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1759"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1759"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExposureToXAndGammaRaysUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ExposureToXAndGammaRaysUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exposure to x and γ rays unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1755"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumeUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volume unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx142"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1760"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1761"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1761"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/grayPerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/grayPerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gray per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gray per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/absorbedDoseRate-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gy/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gy s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gy·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1762"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1763"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1763"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDoseRateUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDoseRateUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">absorbed dose rate unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1760"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1764"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exposureToXAndGammaRays-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exposureToXAndGammaRays-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exposure to x and γ rays dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1765"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/absorbedDoseRate-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/absorbedDoseRate-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">absorbed dose rate dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1766"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radiance-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/radiance-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radiance dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1767"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1768"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1768"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1769"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1770"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1770"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx177"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx179"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx179"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx181"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx178"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1771"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1772"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1772"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicRangeUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicRangeUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dynamic range unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1767"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1773"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1774"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1774"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantumEfficiencyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantumEfficiencyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quantum efficiency unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1769"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1775"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1776"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1777"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1778"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1779"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1779"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1780"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1780"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1781"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx178"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasBase"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Eenheid waarmee de helderheid van sterren wordt aangegeven. Meestal wordt het symbool niet aangeduid (http://en.wikipedia.org/wiki/Magnitude_(astronomy)).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnitude</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">magnitude</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mag</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1781"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1782"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimagnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimagnitude"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millimagnitude is a unit of magnitude defined as 1.0e-3 magnitude.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimagnitude</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimagnitude</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mmag</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1782"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromagnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micromagnitude"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The micromagnitude is a unit of magnitude defined as 1.0e-6 magnitude.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micromagnitude</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micromagnitude</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmag</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1783"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1784"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1784"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnitude unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1778"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1785"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1786"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1786"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1787"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerWatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerWatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volt per watt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">volt per watt</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V/W</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V W-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V·W-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1787"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerWatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerWatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ampere per watt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ampere per watt</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A/W</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A W-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A·W-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1788"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1789"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1789"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ResponsivityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ResponsivityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">responsivity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1785"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx181"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx183"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx180"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1790"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1791"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1791"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1792"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1793"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1793"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CurvatureConstantUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CurvatureConstantUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">curvature constant unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1790"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1794"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1795"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1796"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1796"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1797"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1798"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1798"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DecelerationParameterUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DecelerationParameterUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">deceleration parameter unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1795"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1799"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1800"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1800"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RatioScale"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ratio scale</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx19"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Measure"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx180"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasBase"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1801"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1802"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1802"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameterUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameterUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">density parameter unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1799"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1803"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1804"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1805"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1805"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1806"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-TimePerMegaparsec"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-TimePerMegaparsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">De eenheid van de Hubble constante (die niet constant is!) (http://en.wikipedia.org/wiki/Hubble_constant).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilometre per second per megaparsec</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilometer per seconde per megaparsec</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-Time"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km s-1 Mpc-1</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1806"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimePerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per second per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per seconde per metre</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-Time"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/s/m</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1807"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1808"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1808"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HubbleConstantUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HubbleConstantUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Hubble constant unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1804"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1809"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">area dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oppervlaktedimensie</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx183"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx185"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx182"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1810"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1812"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1812"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1815"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1811"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1811"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1813"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1813"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1814"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/darcy"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1815"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/darcy"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The darcy is a unit of area defined as 9.869233e-13 square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">darcy</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">darcy</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">9.869233e-13</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1814"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1816"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1817"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1817"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Permeability-EarthScienceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Permeability-EarthScienceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permeability (earth science) unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1810"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1818"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1819"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1819"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1820"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/perm-0C"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/perm-0C"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The 0 °C perm is a unit ofpermeance defined as 5.72135e-11 kilogram per pascal second (time) square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">perm (0 °C)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">perm (0 °C)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerPascalSecond-TimeSquareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/permeance-MaterialsScience-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">0 °C perm</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">0 °C perm</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">5.72135e-11</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1820"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1821"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/perm-23C"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx182"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasExponent"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">3</hasValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/perm-23C"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The 23 °C perm is a unit of permeance defined as 5.74525e-11 kilogram per pascal second (time) square metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">perm (23 °C)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">perm (23 °C)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerPascalSecond-TimeSquareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/permeance-MaterialsScience-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">23 °C perm</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">23 °C perm</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">5.74525e-11</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1821"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerPascalSecond-TimeSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerPascalSecond-TimeSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram per pascal second square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per pascal seconde vierkante meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/permeance-MaterialsScience-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascalSecond-TimeSquareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg Pa-1 s-1 m-2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/(Pa s m2)</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/(Pa·s·m2)</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·Pa-1·s-1·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1822"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1823"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1823"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Permeance-MaterialsScienceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Permeance-MaterialsScienceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permeance (materials science) unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1818"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1824"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/permeance-MaterialsScience-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/permeance-MaterialsScience-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permeance (materials science) dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1825"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1826"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1826"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1827"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">colony forming unit per millilitre</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnit"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CFU/ml</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1827"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1828"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">colony forming unit per 25 millilitre</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnit"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_25Millilitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CFU/ml</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1828"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1000 colony forming unit per millilitre</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnit"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1000 CFU/ml</symbol> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1000 CFU/ml</unofficialAbbreviation> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1829"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1830"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1830"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCountUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx185"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx184"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCountUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volumetric viable count unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1825"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1831"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1832"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1832"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">colony forming unit per gram</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnit"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CFU/g</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1833"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1834"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1834"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCountUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCountUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific viable count unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1831"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1835"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1836"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1836"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1837"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitedStatesDollar"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitedStatesDollar"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">United States dollar</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">美国美元</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1837"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1838"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/euro"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/euro"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">euro</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">欧元</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1838"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1839"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/JapaneseYen"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/JapaneseYen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Japanese yen</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1839"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1840"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundSterling"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/poundSterling"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pound sterling</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">英镑</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1840"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1841"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AustralianDollar"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx184"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasExponent"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AustralianDollar"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Australian dollar</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1841"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1842"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SwissFranc"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SwissFranc"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Swiss franc</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1842"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1843"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CanadianDollar"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CanadianDollar"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Canadian dollar</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1843"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1844"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MexicanPeso"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MexicanPeso"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mexican peso</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1844"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1845"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ChineseYuan"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ChineseYuan"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Chinese yuan</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1845"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1846"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NewZealandDollar"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NewZealandDollar"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">New Zealand dollar</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1846"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1847"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SwedishKrona"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SwedishKrona"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Swedish krona</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1847"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1848"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RussianRuble"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RussianRuble"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">RussianRuble</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1848"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1849"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HongKongDollar"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HongKongDollar"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Hong Kong dollar</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1849"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1850"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NorwegianKrone"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NorwegianKrone"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Norwegian krone</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1850"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1851"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingaporeDollar"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SingaporeDollar"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Singapore dollar</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1851"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1852"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TurkishLira"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TurkishLira"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Turkish lira</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1852"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1853"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SouthKoreanWon"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SouthKoreanWon"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">South Korean won</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1853"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1854"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SouthAfricanRand"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SouthAfricanRand"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">South African rand</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1854"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1855"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BrazilianReal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BrazilianReal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">BrazilianReal</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1855"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1856"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IndianRupee"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/IndianRupee"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Indian rupee</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1856"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuro"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuro"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megaeuro</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/euro"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1857"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1858"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1858"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfMoneyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfMoneyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of money unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1835"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1859"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1861"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1861"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1866"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1860"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx186"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx188"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx188"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx190"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx187"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1860"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1862"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1862"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1863"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1866"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1867"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedBit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The bit is a unit of information capacity defined as the information capacity of one binary digit.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">bit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">指二进制中的一位</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bit</symbol> - <hasQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/informationCapacityOfOneBinaryDigit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1863"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1864"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The byte is a unit of information capacity defined as 8 bit.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">byte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">byte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">字节</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">8</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1864"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1865"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hartley"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hartley"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hartley is a unit of information capacity defined as 3.321928095 bit.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hartley</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hartley</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hart</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.321928095</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1865"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shannon"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/shannon"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The shannon is a unit of information capacity defined as 1 bit.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">shannon</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">shannon</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sh</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedBit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed bit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1870"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1867"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedByte"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedByte"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed byte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1879"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1868"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1869"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1869"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/InformationCapacityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/InformationCapacityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">information capacity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1859"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx187"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1870"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1872"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1872"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1874"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1871"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1871"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1874"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1876"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1873"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1873"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1876"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1878"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1875"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1875"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Prefix"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Prefix"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A prefix is a name that precedes a basic unit of measure to indicate a decimal or binary multiple or fraction of the unit. Each prefix has a unique symbol that is prepended to the unit symbol. For example, an electric current of 0.000 000 001 ampere is written by using the SI-prefix nano as 1 nanoampere or 1 nA.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefix</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1878"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1877"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1877"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1879"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1881"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1881"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1883"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1880"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx190"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx192"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx189"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1880"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1883"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1885"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1882"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1882"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1885"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1887"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1884"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1884"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Prefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1887"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1886"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1886"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1888"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1889"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1889"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/baud"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/baud"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The baud is a unit of symbol rate defined as one distinct symbol change or signalling event made to the transmission medium per second in a digitally modulated signal or a line code.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">baud</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">baud</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bd</symbol> - <hasQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/oneDistinctSymbolChangeOrSignallingEventMadeToTheTransmissionMediumPerSecondInADigitallyModulatedSignalOrALineCode"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx189"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1890"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1891"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1891"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SymbolRateUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SymbolRateUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">symbol rate unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1888"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1892"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1893"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1893"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1894"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The cicero is a unit of length defined as 12 point (Didot).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cicero</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">cicero</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">12</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1894"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1895"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The ATA pica is a unit of length defined as 12 point (ATA).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pica (ATA)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ATA pica</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">12</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1895"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1896"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Postscript pica is a unit of length defined as 12 point (Postscript).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pica (Postscript)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">Postscript pica</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">12</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1896"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1897"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The TeX pica is a unit of length defined as 12 point (TeX).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pica (TeX)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">TeX pica</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">12</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1897"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1898"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The ATA point is a unit of length defined as 0.3514598e-3 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">point (ATA)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pt</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ATA point</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">0.3514598e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1898"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1899"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Didot point is a unit of length defined as 0.3759e-3 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">point (Didot)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pt</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">Didot point</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">0.3759e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1899"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1900"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Postscript point is a unit of length defined as 0.013888888888888888888888888888889 inch.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">point (Postscript)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pt</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">Postscript point</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">0.013888888888888888888888888888889</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1900"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Measure"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A measure combines a number to a unit of measure. For example, "3 m" is a measure.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">measure</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx192"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx194"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx191"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The TeX point is a unit of length defined as 0.01383700013837000138370001383 inch.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">point (TeX)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pt</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">TeX point</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">0.013837000138370001383700013837</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1901"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1902"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1902"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FontSizeUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FontSizeUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">font size unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LengthUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1892"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx191"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx194"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx193"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx193"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx195"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx197"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx197"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx208"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx196"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx196"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx198"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx198"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx199"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx208"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedRadian"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The degree is a unit of angle defined as 1.745329e-2 radian.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">degree</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">graad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">度</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.745329e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx199"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx200"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gon"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gon"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gon is a unit of angle defined as 1.570796e-2 radian.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gon</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gon</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">grade</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.570796e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx200"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx201"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Angle"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx20"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx21"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx21"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx22"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiple"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Angle"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The mil (angle) is a unit of angle defined as 9.817477e-4 radian.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mil (angle)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">9.817477e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx201"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx202"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The minute (angle) is a unit of angle defined as 2.908882e-4 radian.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">minute (angle)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">minuut (hoek)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">分钟(角)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">'</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">arcminute</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">minute of arc</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">arcminuut</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.908882e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx202"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx203"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The radian is a unit of angle defined as the angle subtended at the center of a circle by an arc that is equal in length to the radius of the circle.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">radiaal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">弧度</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rad</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The radian is a unit of angle defined as the angle subtended at the center of a circle by an arc that is equal in length to the radius of the circle. The radian is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx203"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx204"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/revolution"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/revolution"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The revolution is a unit of angle defined as 6.283185 radian.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">revolution</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">r</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">6.283185</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx204"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx205"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The second (angle) is a unit of angle defined as 4.848137e-6 radian.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">second (angle)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">seconde (hoek)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">秒(角度)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">"</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">arcsecond</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">second of arc</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">boogseconde</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.848137e-6</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx205"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx206"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millisecond (angle) is a unit of length defined as 1.0e-3 second (angle). Used in astronomy (measurements of positions of stars, galaxies, etc.) to represent the error.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millisecond (angle)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milliseconde (hoek)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mas</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">milliarcsecond</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">millisecond of arc</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">milliboogseconde</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx206"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx207"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microsecond (angle) is a unit of length defined as 1.0e-6 second (angle). Used in astronomy (measurements of positions of stars, galaxies, etc.) to represent the error.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microsecond (angle)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microseconde (hoek)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μas</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">microarcsecond</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">microsecond of arc</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">microboogseconde</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx207"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedRadian"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed radian</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx211"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx209"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx210"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx210"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngleUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx22"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx23"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AngleUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angle unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx195"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx211"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx213"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx213"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx215"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx212"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx212"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx215"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx217"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx214"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx214"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx217"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx219"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx216"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx216"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx219"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx218"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx218"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx23"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx24"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Prefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx220"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx222"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx222"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx227"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx221"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx221"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx223"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx223"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx224"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx227"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSteradian"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The steradian is a unit of solid angle defined as the solid angle subtended at the center of a sphere by a portion of the surface of the sphere that has an area equal to the square of the radius of the sphere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">steradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">steradiaal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">球面度</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSquareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sr</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The steradian is a unit of solid angle defined as the solid angle subtended at the center of a sphere by a portion of the surface of the sphere that has an area equal to the square of the radius of the sphere. The steradian is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx224"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx225"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter per vierkante meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx225"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx226"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">degree squared</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx226"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-AngleSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/second-AngleSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">second (angle) squared</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">arcsec2</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">arcsecond squared</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSteradian"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed steradian</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx230"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx228"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx229"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx229"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SolidAngleUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SolidAngleUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">solid angle unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx220"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx24"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx230"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx232"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx232"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx234"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx231"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx231"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx234"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx236"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx233"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx233"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx236"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx238"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx235"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx235"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx238"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx237"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx237"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx239"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">length dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lengtedimensie</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">L</symbol> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">scale</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">schaal</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">measurement scale</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">meetschaal</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx240"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx241"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volume dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">volumedimensie</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx242"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx243"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx244"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx245"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx246"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx247"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx248"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx249"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx25"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx26"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx26"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx250"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx251"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx253"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx253"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx267"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx252"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx252"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx254"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx254"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx255"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx267"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/day"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The day is a unit of time defined as 86400 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">dag</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">天</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">d</symbol> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\dayUnit</LaTeXCommand> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">86400</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx255"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx256"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day-Sidereal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/day-Sidereal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The sidereal day is a unit of time defined as 8.616409e4 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">day (sidereal)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">sidereal day</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">8.616409e4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx256"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx257"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hour is a unit of time defined as 3600 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hour</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">uur</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">小时</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">h</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">u</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.6e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx257"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx258"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-Sidereal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-Sidereal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hour (sidereal)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">sidereal hour</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.590170e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx258"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx259"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The minute (time) is a unit of time defined as 60 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">minute</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">minuut</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">分钟</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">min</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">6.0e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx259"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx260"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Sidereal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Sidereal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The sidereal minute is a unit of time defined as 5.983617e1 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">minute (sidereal)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">sidereal minute</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">5.983617e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx260"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx261"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Sidereal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">unit multiplication</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CompoundUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Sidereal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The sidereal second is a unit of time defined as 9.972696e-1 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">second (sidereal)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">second (sidereal)</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">sidereal second</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">9.972696e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx261"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx262"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The second is a unit of time defined as the duration of 9 192 631 770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">seconde</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">秒</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s</symbol> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sec</unofficialAbbreviation> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The second is a unit of time defined as the duration of 9 192 631 770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom. The second is a base unit in the International System of Units.</longcomment> - <hasQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/durationOf9192631770PeriodsOfTheRadiationCorrespondingToTheTransitionBetweenTheTwoHyperfineLevelsOfTheGroundStateOfTheCesium133Atom"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx262"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx263"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shake"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/shake"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The shake is a unit of time defined as 1.0e-8 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">shake</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-8</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx263"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx264"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/year"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The year is a unit of time defined as 3.1536e7 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">year</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">jaar</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">y</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yr</alternativeSymbol> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\yearUnit</LaTeXCommand> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.1536e7</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx264"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx265"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Sidereal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Sidereal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The sidereal year is a unit of time defined as 3.155815e7 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">year (sidereal)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">sidereal year</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.155815e7</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx265"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx266"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Tropical"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Tropical"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The tropical year is a unit of time defined as 3.155693e7 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">year (tropical)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">tropical year</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.155693e7</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx266"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigayear</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigajaar</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gyr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-Time"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed second (time)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx270"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx268"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx269"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx269"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TimeUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TimeUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">time unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx251"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx27"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx28"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx28"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx270"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx272"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx272"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx274"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx271"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx271"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx274"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx276"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx273"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx273"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx276"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx278"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx275"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx275"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx278"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx277"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx277"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx279"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx281"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx281"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx301"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx280"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A unit of measure is a definite magnitude of a quantity, defined and adopted by convention or by law. It is used as a standard for measurement of the same quantity, where any other value of the quantity can be expressed as a simple multiple of the unit. For example, length is a quantity; the metre is a unit of length that represents a definite predetermined length. When we say 10 metre (or 10 m), we actually mean 10 times the definite predetermined length called "metre".</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">unit</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">unit of measure</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">unit of measurement</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx280"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx282"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx282"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx283"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/carat-Mass"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx301"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx302"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/carat-Mass"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The carat (mass) is a unit of mass defined as 2.0e-4 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">carat (mass)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">karaat (massa)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.0e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx283"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx284"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/grain"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/grain"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The grain is a unit of mass defined as 6.479891e-5 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">grain</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gr</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">6.479891e-5</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx284"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx285"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gram is a unit of mass defined as 1.0e-3 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">克</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx285"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx286"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hundredweight-British"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hundredweight-British"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The British hundredweight is a unit of mass defined as 5.080235e1 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hundredweight (British)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">British hundredweight</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">5.080235e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx286"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx287"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hundredweight-US"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hundredweight-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US hundredweight is a unit of mass defined as 4.535924e1 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hundredweight (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US hundredweight</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.535924e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx287"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx288"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/InternationalUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/InternationalUnit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">International Unit</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IU</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx288"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx289"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramRAE"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramRAE"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milligram RAE</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx289"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx290"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ounceAvoirdupois"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ounceAvoirdupois"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The avoirdupois ounce is a unit of mass defined as 2.834952e-2 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ounce (avoirdupois)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">oz</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">avoirdupois ounce</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">oz (av.)</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">oz avdp</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.834952e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx290"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx291"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ounceApothecaries"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx29"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx30"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx30"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ounceApothecaries"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The apothecaries' ounce is a unit of mass defined as 3.110348e-2 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ounce (apothecaries')</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">oz (ap.)</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">apothecaries' ounce</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ounce (troy)</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">troy ounce</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">oz (apoth)</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.110348e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx291"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx292"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pennyweight-Troy"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pennyweight-Troy"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Troy pennyweight is a unit of mass defined as 1.555174e-3 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pennyweight (Troy)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dwt</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">Troy pennyweight</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.555174e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx292"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx293"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundApothecaries"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/poundApothecaries"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The apothecaries' pound is a unit of mass defined as 3.732417e-1 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pound (apthecaries')</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lb</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">apothecaries' pound</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">pound (troy)</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">troy pound</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.732417e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx293"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx294"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundAvoirdupois"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/poundAvoirdupois"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The avoirdupois pound is a unit of mass defined as 4.535924e-1 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pound (avoirdupois)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lb</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">avoirdupois pound</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.5359237e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx294"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx295"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/slug"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/slug"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The slug is a unit of mass defined as 1.459390e1 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">slug</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">金属块</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">slug</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.459390e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx295"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx296"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMass"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMass"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Solar mass is a unit used in astronomy to denote stellar or galactic masses (http://en.wikipedia.org/wiki/SolarMass).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">solar mass</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zonsmassa</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_☉</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.98892e30</hasFactor> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_{\astrosun}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx296"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx297"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-ShortAssay"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-ShortAssay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The short assay ton is a unit of mass defined as 2.916667e-2 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ton (short assay)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">short assay ton</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.916667e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx297"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx298"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Long"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Long"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The long ton is a unit of mass defined as 1.016047e3 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ton (long)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">long ton</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.016047e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx298"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx299"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Short"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Short"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The short ton is a unit of mass defined as 9.071847e2 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ton (short)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">short ton</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">9.071847e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx299"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx300"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The tonne is a unit of mass defined as 1000 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">tonne</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">公吨</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">metric ton</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx300"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/unifiedAtomicMassUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/unifiedAtomicMassUnit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The unified atomic mass unit is a unit of mass defined as 1.660538782(83)e-27 kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">unified atomic mass unit</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">u</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGram"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed gram</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx306"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx302"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx303"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedTonne"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedTonne"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed tonne</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx315"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx303"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnifiedAtomicMassUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnifiedAtomicMassUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed unified atomic mass unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx324"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx304"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx305"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx305"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MassUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mass unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx279"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx306"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx308"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx308"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx310"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx307"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx307"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx310"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx312"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx309"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx309"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx31"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx32"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx32"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx312"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx314"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx311"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx311"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx314"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx313"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx313"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx315"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx317"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx317"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx319"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx316"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx316"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx319"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx321"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx318"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx318"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx321"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx323"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx320"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx320"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx323"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx322"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx322"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx324"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx326"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx326"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx328"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx325"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx325"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/unifiedAtomicMassUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx328"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx330"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx327"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx327"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx330"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx332"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx329"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx329"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx33"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx34"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx34"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx332"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx331"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx331"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx333"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx334"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx334"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx335"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx335"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx336"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx336"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx337"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx338"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx338"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantityOfDimensionOneUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantityOfDimensionOneUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quantity of dimension one unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx333"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx339"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx340"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx340"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">unit exponentiation</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CompoundUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx341"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx342"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx342"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx339"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx343"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx344"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx344"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx345"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx345"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx346"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx346"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx347"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx348"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx348"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RatioUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RatioUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ratio unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx343"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx349"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx350"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx350"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx35"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx36"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx36"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx351"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx352"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx352"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PercentageUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PercentageUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">percentage unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx349"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx353"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx354"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx354"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx355"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx355"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx356"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx356"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx357"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx357"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx358"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per gram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per gram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/g</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g g-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·g-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx358"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx359"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per kilogram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/kg</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g kg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·kg-1</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">0.001</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx359"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx360"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerHectogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerHectogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per hectogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per hectogram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/hg</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">gram per 100 gram</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">gram per 100 gram</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g hg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·hg-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx360"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx361"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram per kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per kilogram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/kg</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg kg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·kg-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx361"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx362"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerHectogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerHectogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milligram per hectogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milligram per hectogram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg/hg</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">milligram per 100 gram</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">milligram per 100 gram</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg hg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg·hg-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx362"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milligram per kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milligram per kilogram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg/kg</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg kg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg·kg-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx363"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx364"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx364"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFractionUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFractionUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mass fraction unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx353"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx365"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx366"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx366"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx367"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx367"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx368"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx368"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx369"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx369"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx37"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx38"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx38"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx370"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx371"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx371"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaFractionUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaFractionUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">area fraction unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx365"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx372"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx373"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx373"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx374"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx374"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx375"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx375"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx376"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx376"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx377"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetrePerCubicCentimetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetrePerCubicCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic centimetre per cubic centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke centimeter per kubieke centimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm3/cm3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm3 cm-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm3·cm-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx377"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx378"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerCubicmetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerCubicmetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic metre per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke meter per kubieke meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3 m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3·m-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx378"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMillimetrePerCubicMillimetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMillimetrePerCubicMillimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic millimetre per cubic millimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke millimeter per kubieke millimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMillimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMillimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm3/mm3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm3 mm-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm3·mm-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx379"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx380"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx380"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumeFractionUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumeFractionUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volume fraction unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx372"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx381"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx382"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx382"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx383"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx383"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx384"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx385"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx385"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RelativeHumidityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RelativeHumidityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">relative humidity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx381"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx386"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx388"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx388"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx394"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx387"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx387"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx389"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx389"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx390"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx394"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedHertz"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hertz is a unit of frequency defined as 1 divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">赫兹</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hz</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The hertz is a unit of frequency defined as 1 divided by second. The hertz is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx390"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx391"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalHour"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx39"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx40"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx40"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalHour"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal hour</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerd uur</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">h-1</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx391"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx392"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalDay"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde dag</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">d-1</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx392"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx393"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx393"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalYear"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalYear"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal year</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerd jaar</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a-1</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedHertz"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed hertz</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx397"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx395"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx396"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx396"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FrequencyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FrequencyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">frequency unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx386"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx397"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx399"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx399"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx401"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx398"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx398"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx401"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx403"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx400"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx4"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx5"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx5"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx6"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Measure"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">unit division</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CompoundUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx400"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx403"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx405"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx402"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx402"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx405"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx404"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx404"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx406"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx407"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx407"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx408"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicCentimetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal cubic centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde kubieke centimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/numberDensity-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm-3</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx408"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx409"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde kubieke meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/numberDensity-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-3</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx409"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicParsec"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicParsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal cubic parsec</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde kubieke parsec</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/numberDensity-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pc-3</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx41"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx42"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx42"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx410"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx411"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx411"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberDensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberDensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number density unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx406"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx412"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx413"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx413"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx414"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kayser"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kayser"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kayser is a unit of wavenumber defined as 100 reciprocal metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kayser</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kayser</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wavenumber-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">rydberg</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">rydberg</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx414"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Reciprocal metre is a unit of wavenumber defined as 1 divided by metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerder meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wavenumber-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-1</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reciprocal metre is a unit of wavenumber defined as 1 divided by metre. Reciprocal metre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx415"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx416"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx416"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/WavenumberUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WavenumberUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">wave number unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx412"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx417"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx419"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx419"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx422"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx418"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx418"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx420"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx420"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx421"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gal"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx422"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx423"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gal is a unit of acceleration defined as centimetre per second (time) squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-TimeSquared"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gal</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">galileo</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">galileo</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx421"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimeSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per second squared is a unit of acceleration defined as metre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·s-2</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Metre per second squared is a unit of acceleration defined as metre divided by second squared. Metre per second squared is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed metre per second (time) squared</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx427"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx423"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx424"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per prefixed second (time) squared</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx436"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx424"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerPrefixedSecond-TimeSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerPrefixedSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed metre per prefixed secon (time) squared</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx445"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx425"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx426"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx426"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AccelerationUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AccelerationUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">acceleration unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx417"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx427"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx429"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx429"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx431"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx428"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx428"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx431"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx433"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx430"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx43"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx44"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx44"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx430"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx433"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx435"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx432"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx432"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">seconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s2</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx435"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx434"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx434"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx436"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx438"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx438"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx440"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx437"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx437"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx440"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx442"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx439"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx439"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx442"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx444"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx441"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx441"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed second (time) squared</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx853"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx444"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx443"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx443"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx445"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx447"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx447"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx449"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx446"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx446"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx449"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx451"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx448"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx448"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx451"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx453"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx450"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx45"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx46"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx46"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx450"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx453"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx452"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx452"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx454"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx456"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx456"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx465"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx455"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx455"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx457"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx457"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx458"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCubicmetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx465"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx466"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCubicmetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per cubic metre is a unit of density defined as gram divided by cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per kubieke meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·m-3</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gram per cubic metre is a unit of density defined as gram divided by cubic metre. Gram per cubic metre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx458"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx459"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerCubicmetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerCubicmetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Milligram per cubic metre is a unit of density defined as milligram divided by cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milligram per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milligram per kubieke meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg·m-3</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Milligram per cubic metre is a unit of density defined as milligram divided by cubic metre. Milligram per cubic metre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx459"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx460"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCubicCentimetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCubicCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per cubic centimetre is a unit of density defined as gram divided by cubic centimetre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per cubic centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per kubieke centimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/cm3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g cm-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·cm-3</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gram per cubic centimetre is a unit of density defined as gram divided by cubic centimetre. Gram per cubic centimetre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx460"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx461"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgramPerCubicCentimetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microgramPerCubicCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Microram per cubic centimetre is a unit of density defined as microgram divided by cubic centimetre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microgram per cubic centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microgram per kubieke centimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μg/cm3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μg cm-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μg·cm-3</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Microgram per cubic centimetre is a unit of density defined as microgram divided by cubic centimetre. Microgram per cubic centimetre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx461"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx462"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerCubicmetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerCubicmetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kilogram per cubic metre is a unit of density defined as kilogram divided by cubic metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per kubieke meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·m-3</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kilogram per cubic metre is a unit of density defined as kilogram divided by cubic metre. Kilogram per cubic metre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx462"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx463"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerCubicDecimetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerCubicDecimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kilogram per cubic decimetre is a unit of density defined as kilogram divided by cubic decimetre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram per cubic decimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per kubieke decimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicDecimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/dm3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg dm-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·dm-3</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kilogram per cubic decimetre is a unit of density defined as kilogram divided by cubic decimetre. Kilogram per cubic decimetre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx463"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx464"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerLitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per litre is a unit of density defined as gram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·l-1</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gram per litre is a unit of density defined as gram divided by litre. Gram per litre is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx464"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMassPerCubicParsec"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMassPerCubicParsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The mass (in solar masses) per cubic parsec.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">solar mass per cubic parsec</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zonsmassa per kubieke parsec</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMass"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicParsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_☉/pc3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_☉ pc-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_☉·pc-3</alternativeSymbol> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_{\astrosun} pc^{-3}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed gram per litre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx470"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx466"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx467"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per prefixed litre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx479"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx467"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerPrefixedLitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerPrefixedLitre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed gram per prefixed litre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx488"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx468"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx469"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx469"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">density unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx454"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx47"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx48"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx48"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx49"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Measure"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx470"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx472"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx472"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx474"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx471"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx471"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGram"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx474"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx476"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx473"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx473"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx476"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx478"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx475"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx475"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx478"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx477"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx477"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx479"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx481"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx481"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx483"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx480"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx49"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Point"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx480"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx483"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx485"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx482"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx482"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx485"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx487"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx484"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx484"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedLitre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx487"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx486"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx486"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx488"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx490"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx490"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx492"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx489"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx489"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Point"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A point is an element of an interval scale or a ratio scale, for example, 273.16 on the Kelvin scale indicates the triple point of water thermodynamic temperature.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">point</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx492"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx494"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx491"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx491"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx494"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx496"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx493"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx493"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedLitre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx496"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx495"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx495"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx497"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx498"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx498"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Cubic metre per kilogram is a unit of specific volume defined as cubic metre divided by kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic metre per kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke meter per kilogram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificVolume-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3/kg</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3 kg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3·kg-1</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cubic metre per kilogram is a unit of specific volume defined as cubic metre divided by kilogram. Cubic metre per kilogram is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx499"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx500"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx500"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificVolumeUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx6"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Point"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx50"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx51"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx51"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx52"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IntervalScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificVolumeUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific volume unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx497"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx501"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx503"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx503"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx513"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx502"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx502"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx504"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx504"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx505"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/knot-International"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx513"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx514"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/knot-International"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The international knot is a unit of speed defined as nautical mile per hour.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">knot (international)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">knoop (internationaal)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">海里/小时(国际)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-InternationalPerHour"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">international knot</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx505"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx506"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerHour"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerHour"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Millimetre per hour is a unit of speed defined as millimetre divided by hour.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimetre per hour</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimeter per uur</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm/h</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm·h-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx506"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx507"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerHour"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerHour"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kilometre per hour is a unit of speed defined as kilometre divided by hour.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilometre per hour</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilometer per uur</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km/h</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km·h-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx507"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx508"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerDay"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Centimetre per day is a unit of speed defined as centimetre divided by day.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre per day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter per dag</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm/d</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm d-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm·d-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx508"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx509"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDay"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per day is a unit of speed defined as metre divided by day.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per dag</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/d</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m d-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·d-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx509"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx510"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerDay"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Millimetre per day is a unit of speed defined as millimetre divided by day.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimetre per day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimeter per dag</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm/d</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm d-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm·d-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx510"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx511"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx52"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx53"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RatioScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per second is a unit of speed defined as metre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mps</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·s-1</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Metre per second is a unit of speed defined as metre divided by second. Metre per second is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx511"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx512"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-StatutePerHour"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-StatutePerHour"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mile (statute) per hour is a unit of speed defined as mile (statute) divided by hour.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mile (statute) per hour</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mijl per uur</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mi/h</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mi h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mi·h-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx512"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-InternationalPerHour"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-InternationalPerHour"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Nautical mile per hour is a unit of speed defined as nautical mile divided by hour.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nautical mile per hour</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeemijl per uur</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M/h</symbol> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmi/h</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M·h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NM h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NM/h</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NM·h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm/h</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmi h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmi·h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm·h-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed metre per second (time)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx518"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx514"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx515"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per prefixed second (time)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx527"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx515"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerPrefixedSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerPrefixedSecond-Time"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed metre per prefixed second (time)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx536"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx516"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx517"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx517"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpeedUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpeedUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">speed unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx501"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx518"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx520"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx520"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx522"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx519"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx519"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx53"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx522"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx524"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx521"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx521"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx524"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx526"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx523"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx523"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx526"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx525"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx525"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx527"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx529"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx529"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx531"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx528"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx528"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx531"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx533"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx530"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx530"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx533"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx535"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx532"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx532"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx535"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx534"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx534"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx536"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx538"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx538"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx540"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx537"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx537"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx540"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx542"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx539"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx539"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumerator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx54"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPoint"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx55"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx55"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx56"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPoint"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has point</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Point"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx50"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx542"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx544"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx541"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx541"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx544"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx543"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx543"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDenominator"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx545"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx547"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx547"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx555"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx546"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx546"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx548"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx548"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx549"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dyne"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx555"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedNewton"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/dyne"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The dyne is a unit of force defined as 1.0e-5 newton.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dyne</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">dyne</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">达因</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dyn</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-5</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx549"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx550"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kip"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kip"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kip is a unit of force defined as 4.448222e3 newton.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kip</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kip</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.448222e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx550"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx551"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx56"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The newton is a unit of force defined as kilogram timesmetre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">newton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">newton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">牛顿</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-TimeSquared"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The newton is a unit of force defined as kilogram times metre divided by second squared. The newton is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx551"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx552"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/poundal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The poundal is a unit of force defined as 1.382550e-1 newton.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">poundal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.382550e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx552"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx553"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pound-Force"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pound-Force"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The pound-force is a unit of force defined as 4.448222 newton.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pound-force</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lbf</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.448222</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx553"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx554"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Force-Short"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Force-Short"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The short ton-force is a unit of force defined as 8.896443e3 newton.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ton-force (short)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">short ton-force</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">8.896443e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx554"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-TimeSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre kilogram per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter kilogram per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m kg/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m kg s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·kg/s2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·kg·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedNewton"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed newton</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx558"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx556"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx557"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx557"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ForceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ForceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">force unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx545"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx558"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx560"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx560"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx562"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx559"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx559"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx562"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx564"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx561"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx561"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx564"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx566"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx563"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx563"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx566"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx565"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx565"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx567"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx569"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx569"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx584"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx568"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx568"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx570"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx570"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx571"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx584"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedPascal"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx57"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx58"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx58"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx59"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The standard atmosphere is a unit of pressure defined as 1.01325e5 pascal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">atmosphere (standard)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">atmosfeer (standaard)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">atm</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">standard atmosphere</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.01325e5</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx571"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx572"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The technical atmosphere is a unit of pressure defined as 9.80665e4 pascal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">atmosphere (technical)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">at</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">technical atmosphere</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">9.80665e4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx572"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx573"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The bar is a unit of pressure defined as 100 000 pascal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bar</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">bar</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">巴(压力计量单位)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bar</symbol> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\barUnit</LaTeXCommand> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e5</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx573"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx574"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The barye is a unit of pressure defined as 0.1 pascal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">barye</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">barye</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ba</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx574"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx575"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The metre of mercury is a unit of pressure defined as 133 322 pascal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre of mercury</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter kwik</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Hg</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.33322e5</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx575"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx576"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The pascal is a unit of pressure and stress defined as newton divided by square metre = joule divided by cubic metre = kilogram divided by metre second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">pascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pa</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The pascal is a unit of pressure and stress defined as newton divided by square metre = joule divided by cubic metre = kilogram divided by metre second squared. The pascal is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx576"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx577"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The torr is a unit of pressure defined as 1.333224e2 pascal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">torr</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">torr</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Torr</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.33322368421053e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx577"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx578"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decibar is a unit of pressure defined as 1.0e-1 bar.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decibar</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decibar</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dbar</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx578"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx579"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microbar is a unit of pressure defined as 1.0e-6 bar.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microbar</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microbar</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">微巴</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μbar</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx579"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx580"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millibar is a unit of pressure defined as 1.0e-3 bar.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millibar</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millibar</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mbar</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx580"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx581"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx59"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx60"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centimetre of mercury is a unit of pressure defined as 1.0e-2 metre of mercury.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre of mercury</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter kwik</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm Hg</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx581"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx582"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millimetre of mercury is a unit of pressure defined as 1.0e-3 metre of mercury.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimetre of mercury</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimeter kwik</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm Hg</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx582"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx583"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal metre kilogram second to the power -2</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde meter kilogram seconde tot de macht -2</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-1 kg s-2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-1·kg·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx583"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">newton per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">newton per vierkante meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedPascal"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed pascal</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx609"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx585"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx587"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx587"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx602"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx586"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx586"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx588"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx588"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx589"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx602"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedPascal"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx589"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx590"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx590"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx591"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A quantity is a representation of a quantifiable (standardised) aspect (such as length, mass, and time) of a phenomenon (e.g., a star, a molecule, or a food product). Quantities are classified according to similarity in their (implicit) metrological aspect, e.g. the length of my table and the length of my chair are both classified as length.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quantity</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx60"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx591"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx592"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx592"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx593"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx593"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx594"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx594"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx595"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx595"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx596"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx596"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx597"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx597"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx598"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx598"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx599"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx599"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx600"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx600"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx601"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">An application area groups quantities and units of measure for application areas such as scientific disciplines (e.g., thermodynamics, mechanics).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">application area</label> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx601"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx603"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx604"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx604"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PressureUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PressureUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pressure unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx567"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx605"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx606"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx606"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StressUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StressUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stress unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx585"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx607"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx608"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx608"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StressUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx609"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx611"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx611"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx613"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx610"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx61"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx62"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx62"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx63"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx610"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx613"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx615"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx612"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx612"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx615"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx617"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx614"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx614"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx617"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx616"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx616"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx618"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx619"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx619"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx620"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">newton metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">newton meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N·m</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx620"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx621"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx63"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx64"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micronewton metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micronewton meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewton"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μN m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μN·m</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx621"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millinewton metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millinewton meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewton"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mN m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mN·m</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx622"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx623"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx623"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx624"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx624"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx625"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx625"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx626"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx627"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx627"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TorqueUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TorqueUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">torque unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx618"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx628"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx629"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx629"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MomentOfForceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MomentOfForceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">moment of force unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx622"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx64"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx630"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx632"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx632"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx660"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx631"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx631"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx633"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx633"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx634"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-39F"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx660"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx661"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedJoule"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-39F"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The 39 °F British thermal unit is a unit of energy defined as 1.05967e3 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">British thermal unit (39 °F)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Btu</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">39 °F British thermal unit</alternativeLabel> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\BritishTermalUnitThirtyNineF</LaTeXCommand> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.05967e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx634"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx635"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-59F"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-59F"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The 59 °F British thermal unit is a unit of energy defined as 1.05480e3 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">British thermal unit (59 °F)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Btu</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">59 °F British thermal unit</alternativeLabel> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\BritishTermalUnitFiftyNineF</LaTeXCommand> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.05480e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx635"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx636"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-60F"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-60F"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The 60 °F British thermal unit is a unit of energy defined as 1.05468e3 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">British thermal unit (60 °F)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Btu</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">60 °F British thermal unit</alternativeLabel> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\BritishTermalUnitSixtyF</LaTeXCommand> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.05468e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx636"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx637"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The International Table British thermal unit is a unit of energy defined as 1.055056e3 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">British thermal unit (International Table)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Btu_IT</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">International Table British thermal unit</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.055056e3</hasFactor> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Btu_{IT}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx637"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx638"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Mean"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Mean"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The mean British thermal unit is a unit of energy defined as 1.05587e3 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">British thermal unit (mean)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Btu</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">mean British thermal unit</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.05587e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx638"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx639"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Thermochemical"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Thermochemical"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The thermochemical British thermal unit is a unit of energy defined as 1.054350e3 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">British thermal unit (thermochemical)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Btu_th</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">thermochemical British thermal unit</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.054350e3</hasFactor> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BTU_{th}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx639"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx640"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-15C"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-15C"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The 15 °C calorie is a unit of energy defined as 4.18580 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">calorie (15 °C)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">calorie (15 °C)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cal_15</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">15 °C calorie</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">15 °C calorie</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.18580</hasFactor> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cal_{15}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx640"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx641"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-20C"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-20C"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The 20 °C calorie is a unit of energy defined as 4.18190 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">calorie (20 °C)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">calorie (20 °C)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cal_20</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">20 °C calorie</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">20 °C calorie</alternativeLabel> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\calorieTwentyC</LaTeXCommand> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.18190</hasFactor> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cal_{20}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx641"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx642"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-InternationalTable"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-InternationalTable"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The International Table calorie is a unit of energy defined as 4.1868 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">calorie (International Table)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cal_IT</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">International Steam Table calorie</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">International Table calorie</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">calorie (International Steam Table)</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.1868</hasFactor> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cal_{IT}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx642"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx643"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The mean calorie is a unit of energy defined as 4.19002 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">calorie (mean)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cal</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">mean calorie</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">c</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.19002</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx643"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx644"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Thermochemical"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Thermochemical"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The thermochemical calorie is a unit of energy defined as 4.184 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">calorie (thermochemical)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cal_th</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">thermochemical calorie</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.184</hasFactor> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cal_{th}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx644"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx645"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The electronvolt is a unit of energy defined as 1.602177e-19 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electronvolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">electronvolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">电子伏特</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eV</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.602177e-19</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx645"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx646"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The erg is a unit of energy defined as 1.0e-7 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">erg</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">erg</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">尔格</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">erg</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-7</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx646"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx647"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The foot poundal is a unit of energy defined as 4.214011e-2 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">foot poundal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.214011e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx647"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx648"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The joule is a unit of energy defined as kilogram times square metre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">焦耳</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The joule is a unit of energy defined as kilogram times square metre divided by second squared. The joule is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx648"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx649"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quad"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/quad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The quad is a unit of energy defined as 1.0e15 British thermal unit (International Table).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\quadUnit</LaTeXCommand> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e15</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx649"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx650"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigaelectronvolt is a unit of energy defined as 1.0e9 electronvolt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigaelectronvolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigaelectronvolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GeV</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx650"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx651"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx65"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx67"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx67"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx99"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx66"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kiloelectronvolt is a unit of energy defined as 1.0e3 electronvolt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kiloelectronvolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kiloelectronvolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">keV</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx651"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx652"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megaelectronvolt is a unit of energy defined as 1.0e6 electronvolt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megaelectronvolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megaelectronvolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MeV</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx652"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx653"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilowatt hour</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowatt"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kW h</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">kilowatt-hour</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">kilowatthour</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kWh</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kW·h</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx653"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx654"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawattHour"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terawattHour"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terawatt hour</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawatt"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TW h</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">terawatt-hour</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">terawatthour</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TWh</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TW·h</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx654"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx655"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-EC"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-EC"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The EC therm is a unit of energy defined as 1.05506e8 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">therm (EC)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">EC therm</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.05506e8</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx655"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx656"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-US"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US therm is a unit of energy defined as 1.054804e8 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">therm (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US therm</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.054804e8</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx656"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx657"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfTNT"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfTNT"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The ton of TNT is a unit of energy defined as 4.184e9 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ton of TNT</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.184e9</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx657"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx658"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx658"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx659"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx659"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx66"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx68"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx68"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx69"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedJoule"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed joule</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx665"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx661"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx662"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedElectronvolt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedElectronvolt"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed electronvolt</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx674"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx662"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedCalorie-Mean"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedCalorie-Mean"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed calorie (mean)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx683"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx663"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx664"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx664"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/EnergyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/EnergyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">energy unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx630"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx665"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx667"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx667"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx669"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx666"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx666"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx669"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx671"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx668"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx668"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx671"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx673"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx670"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx99"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx670"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx673"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx672"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx672"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx674"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx676"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx676"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx678"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx675"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx675"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx678"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx680"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx677"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx677"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx680"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx682"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx679"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx679"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The ångström is a unit of length defined as 1.0e-10 metre. The unit is often used for wavelengths of electromagnetic radiation or to express the sizes of atoms and molecules.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ångström</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ångström</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Å</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">angstrom</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">angstrom</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-10</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx69"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx70"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx682"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx681"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx681"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx683"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx685"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx685"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx687"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx684"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx684"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx687"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx689"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx686"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx686"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx689"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx691"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx688"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx688"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx691"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx690"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The atronomical unit is a unit of length defined as 149 597 870 700 metre (IAU 2012 Resolution).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">astronomical unit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/IAU_2012_Resolution_B2"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AU</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.495978707e11</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx70"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx71"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx690"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx692"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx694"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx694"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx704"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx693"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx693"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx695"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx695"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx696"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Boiler"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx704"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedWatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Boiler"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The boiler horsepower is a unit of power defined as 9.80950e3 watt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">horsepower (boiler)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">boiler horsepower</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">9.80950e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx696"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx697"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-British"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-British"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The British horsepower is a unit of power defined as 7.4570e2 watt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">horsepower (British)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">British horsepower</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">imperial horsepower</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">7.4570e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx697"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx698"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Electric"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Electric"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The electric horsepower is a unit of power defined as 7.46e2 watt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">horsepower (electric)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">electric horsepower</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">7.46e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx698"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx699"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Metric"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Metric"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The metric horsepower is a unit of power defined as 7.354988e2 watt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">horsepower (metric)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PS</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">metric horsepower</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">7.354988e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx699"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx700"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Water"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Water"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The water horsepower is a unit of power defined as 7.46043e2 watt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">horsepower (water)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">water horsepower</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">7.46043e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx700"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx701"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarLuminosity"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx7"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx8"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx8"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The chain is a unit of length defined as 2.011684e1 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">chain</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ch</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.011684e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx71"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx72"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/solarLuminosity"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Solar luminosity is a unit used in astronomy to denote stellar or galactic radiant fluxes (http://en.wikipedia.org/wiki/SolarLuminosity).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">solar luminosity</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">L_☉</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.839e26</hasFactor> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">L_{\astrosun}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx701"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx702"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfRefrigeration"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfRefrigeration"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The ton of refrigeration is a unit of power defined as 3.516853e3 watt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ton of refrigeration</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.516853e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx702"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx703"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The watt is a unit of power defined as joule divided by second = newton times metre divided by second = volt times ampere = kilogram times square metre divided by second to the power 3.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerSecond-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The watt is a unit of power defined as joule divided by second = newton times metre divided by second = volt times ampere = kilogram times square metre divided by second to the power 3. The watt is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx703"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedWatt"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed watt</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx707"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx705"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx706"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx706"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PowerUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PowerUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">power unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx692"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx707"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx709"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx709"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx711"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx708"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx708"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx711"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx713"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx710"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx72"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx73"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx710"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx713"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx715"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx712"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx712"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx715"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx714"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx714"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx716"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx717"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx717"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx718"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx718"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoulePerHectogram"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx719"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx720"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx720"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEnergyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US survey fathom is a unit of length defined as 1.828804 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fathom (US survey)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US survey fathom</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.828804</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx73"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx74"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEnergyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific energy unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx716"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx721"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx722"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx722"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx723"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-AnglePerYear"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-AnglePerYear"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Wordt gebruikt om de waargenomen verandering van de positie van sterren uit te drukken (de proper motion).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millisecond (angle) per year</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milliseconde (hoek) per jaar</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angularSpeed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mas/yr</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx723"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radianPerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/radianPerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radian per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">radiaal per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angularSpeed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rad/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rad s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rad·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx724"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx725"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx725"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularSpeedUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularSpeedUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular speed unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx721"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx726"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx727"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx727"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radianPerSecond-TimeSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/radianPerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radian per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">radiaal per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angularAcceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rad/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rad s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rad·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx728"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx729"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx729"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularAccelerationUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularAccelerationUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular acceleration unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx726"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fermi is a unit of length defined as 1.0e-15 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fermi</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">fermi</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-15</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx74"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx75"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx730"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx732"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx732"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx735"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx731"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx731"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx733"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx733"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx734"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poise"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx735"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedPoise"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/poise"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The poise is a unit of dynamic viscosity defined as 1.0e-1 pascal second (time).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">poise</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">poise</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascalSecond-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dynamicViscosity-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">P</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx734"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascalSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pascalSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pascal second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">pascal seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dynamicViscosity-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pa s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pa·s</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedPoise"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed poise</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx738"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx736"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx737"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx737"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicViscosityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicViscosityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dynamic viscosity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx730"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx738"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx740"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx740"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx742"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx739"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx739"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poise"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The international foot is a unit of length defined as 3.048e-1 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">foot (international)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">英尺(国际)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ft</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">international foot</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.048e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx75"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx76"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx742"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx744"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx741"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx741"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx744"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx746"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx743"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx743"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx746"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx745"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx745"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx747"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx749"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx749"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx752"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx748"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx748"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx750"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx750"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx751"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stokes"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx752"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedStokes"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US survey foot is a unit of length defined as 3.048006e-1 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">foot (US survey)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ft</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US survey foot</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.048006e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx76"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx77"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/stokes"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The stokes is a unit of kinematic viscosity defined as 1.0e-4 square metre per second (time).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stokes</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stokes</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSecond-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kinematicViscosityOrThermalDiffusivity-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">St</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-4</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx751"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kinematicViscosityOrThermalDiffusivity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedStokes"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed stokes</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx755"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx753"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx754"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx754"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KinematicViscosityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/KinematicViscosityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kinematic viscosity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx747"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx755"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx757"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx757"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx759"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx756"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx756"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stokes"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx759"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx761"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx758"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx758"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx761"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx763"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx760"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The international furlong is a unit of length defined as 201.168 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">furlong (international)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">international furlong</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">201.168</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx77"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx78"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx760"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx763"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx762"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx762"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx764"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx765"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx765"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per vierkante meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/powerDensity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx766"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx767"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx767"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PowerDensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PowerDensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">power density unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx764"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx768"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx769"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx769"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSteradian"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per steradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per steradiaal</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/sr</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W sr-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·sr-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The international inch is a unit of length defined as 2.54e-2 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">inch (international)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">英寸(国际)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">international inch</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.54e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx78"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx79"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx770"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx771"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx771"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RadiantIntensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RadiantIntensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radiant intensity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx768"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx772"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx773"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx773"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreSteradian"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreSteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per square metre steradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per vierkante meter steradiaal</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radiance-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreSteradian"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/(m2 sr)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W m-2 sr-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/(m2·sr)</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·m-2·sr-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx774"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx775"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx775"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RadianceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RadianceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radiance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx772"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx776"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx777"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx777"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerCubicmetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerCubicmetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per kubieke meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energyDensity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·m-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx778"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx779"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx779"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/EnergyDensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/EnergyDensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">energy density unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx776"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The light year is a unit of length defined as 9.46073e15 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">light year</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lichtjaar</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ly</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">lightyear</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">9.46073e15</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx79"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx80"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx780"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx781"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx781"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx782"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ergSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ergSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">erg second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">erg seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/actionOrAngularMomentum-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">erg s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">erg·s</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx782"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/jouleSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/jouleSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/actionOrAngularMomentum-Dimension"/> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·s</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx783"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx784"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx784"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx785"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ergSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx785"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/jouleSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx786"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx787"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx787"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ActionUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ActionUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">action unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx780"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx788"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx789"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx789"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularMomentumUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularMomentumUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular momentum unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx783"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx80"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx81"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx790"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx791"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx791"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx792"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rhe"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/rhe"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The rhe is a unit of fluidity defined as 10 reciprocal pascal second (time).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">rhe</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">rhe</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalPascalSecond-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidity-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx792"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalPascalSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalPascalSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal pascal second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde pascal seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidity-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascalSecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pa-1 s-1</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">(Pa s)-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">(Pa·s)-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pa-1·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx793"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx794"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx794"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FluidityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FluidityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fluidity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx790"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx795"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx796"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx796"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre kilogram per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter kilogram per seconde</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m kg/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m kg s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·kg/s</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·kg·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx797"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx798"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx798"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MomentumUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MomentumUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">momentum unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx795"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx799"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx800"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx800"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The micron is a unit of length defined as 1.0e-6 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micron</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micron</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μ</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.0e-6</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx81"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx82"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram vierkante meter</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·m2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx801"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx802"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx802"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MomentOfInertiaUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MomentOfInertiaUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">moment of inertia unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx799"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx803"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx804"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx804"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx805"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx806"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx806"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearRateUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearRateUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">shear rate unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx803"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx807"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx808"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx808"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">newton per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">newton per meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/surfaceTension-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx809"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx810"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx810"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SurfaceTensionUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The mil (length) is a unit of length defined as 2.54e-5 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mil (length)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">thou</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">2.54e-5</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx82"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx83"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SurfaceTensionUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">surface tension unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx807"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx811"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx812"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx812"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx813"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic metre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke meter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volumetricFlowRate-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3 s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx813"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx814"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerYear"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerYear"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic metre per year</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke meter per jaar</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volumetricFlowRate-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx814"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litrePerHour"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/litrePerHour"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">litre per hour</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">liter per uur</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">l/h</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">l h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">l·h-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx815"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx816"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx816"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricFlowRateUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricFlowRateUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volumetric flow rate unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx811"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx817"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx818"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx818"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalWatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalWatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal watt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde watt</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W-1</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx819"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx820"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx820"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DetectivityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The statute mile is a unit of length defined as 1.609344e3 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mile (statute)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mi</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">statute mile</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.609344e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx83"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx84"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DetectivityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">detectivity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx817"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx821"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx822"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx822"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/massFlow-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx823"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx824"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx824"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFlowUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFlowUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mass flow unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx821"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx825"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx827"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx827"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx829"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx826"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx826"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasTerm1"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasTerm1"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has term 1</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx27"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx25"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx829"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx831"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx828"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx828"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasTerm1"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx831"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx833"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx830"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US survey mile is a unit of length defined as 1.609347e3 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mile (US survey)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US survey mile</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.609347e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx84"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx85"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx830"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasTerm2"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasTerm2"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has term 2</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx31"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx29"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx833"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx832"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx832"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasTerm2"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx834"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx836"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx836"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx835"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx835"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx837"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx837"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx838"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per vierkante meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx838"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx839"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per vierkante meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx839"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerHectare"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerHectare"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram per hectare</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per hectare</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectare"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/ha</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg ha-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·ha-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The international nautical mile is a unit of length defined as 1852 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nautical mile (international)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeemijl (internationaal)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">海里(国际)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmi</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">international nautical mile</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NM</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1852</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx85"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx86"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx840"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx841"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx841"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaDensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaDensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">area density unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx834"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx842"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx844"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx844"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx843"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx843"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx845"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx845"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerHectareDay"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerHectareDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram per hectare day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per hectare dag</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectareDay"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/(ha d)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg ha-1 d-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·ha-1·d-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx846"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx847"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx847"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaDensityRateUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaDensityRateUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">area density rate unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx842"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx848"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx849"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx849"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx850"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareCentimetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal square centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde vierkante centimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/columnNumberDensity-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm-2</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx850"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The parsec is a unit of length defined as 3.08567758149137e16 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">parsec</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pc</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3.08567758149137e16</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx86"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx87"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde vierkante meter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/columnNumberDensity-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-2</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx851"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx852"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx852"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ColumnNumberDensityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ColumnNumberDensityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">column number density unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx848"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx853"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx855"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx855"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx857"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx854"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx854"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasBase"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx857"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx859"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx856"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx856"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasBase"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx859"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx861"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx858"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx858"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasExponent"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">2</hasValue> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx861"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx860"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx87"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx88"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx860"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasExponent"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx862"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">time dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">dimensie van tijd</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx863"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mass dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">massadimensie</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M</symbol> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx864"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/numberDensity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/numberDensity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number density dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx865"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/columnNumberDensity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/columnNumberDensity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">column number density dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx866"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wavenumber-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wavenumber-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">wavenumber dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">golfgetaldimensie</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx867"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx868"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">acceleration dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">versnellingdimensie</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx869"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">density dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">dichtheiddimensie</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx88"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx89"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx870"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificVolume-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/specificVolume-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific volume dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx871"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">speed dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">snelheiddimensie</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx872"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">force dimension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">krachtdimensie</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx873"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx874"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">energy dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx875"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx876"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx877"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">power dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx878"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx879"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angularSpeed-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/angularSpeed-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular speed dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx89"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx90"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx880"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angularAcceleration-Dmension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/angularAcceleration-Dmension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular acceleration dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx881"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dynamicViscosity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/dynamicViscosity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dynamic viscosity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx882"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kinematicViscosityOrThermalDiffusivity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kinematicViscosityOrThermalDiffusivity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kinematic viscosity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx883"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/powerDensity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/powerDensity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">power density dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-3</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx884"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energyDensity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/energyDensity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">energy density dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx885"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/actionOrAngularMomentum-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/actionOrAngularMomentum-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">action or angular momentum dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx886"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/actionOrAngularMomentum-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx887"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidity-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidity-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fluidity dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx888"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volumetricFlowRate-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/volumetricFlowRate-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volumetric flow rate dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx889"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDimension"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/massFlow-Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/massFlow-Dimension"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mass flow dimension</label> - <hasSIAmountOfSubstanceDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIAmountOfSubstanceDimensionExponent> - <hasSIElectricCurrentDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIElectricCurrentDimensionExponent> - <hasSILengthDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILengthDimensionExponent> - <hasSILuminousIntensityDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSILuminousIntensityDimensionExponent> - <hasSIMassDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</hasSIMassDimensionExponent> - <hasSIThermodynamicTemperatureDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</hasSIThermodynamicTemperatureDimensionExponent> - <hasSITimeDimensionExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasSITimeDimensionExponent> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx90"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx91"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx890"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx891"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx891"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx892"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx893"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx893"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalDiffusivityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalDiffusivityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal diffusivity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx890"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx894"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx896"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx896"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx898"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx895"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx895"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx897"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx897"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx898"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedKelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kelvin is a unit of temperature defined as 1/273.16 of the thermodynamic temperature of the triple point of water.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">开</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The kelvin is a unit of temperature defined as 1/273.16 of the thermodynamic temperature of the triple point of water. The kelvin is a base unit in the International System of Units.</longcomment> - <hasQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_127316OfTheThermodynamicTemperatureOfTheTriplePointOfWater"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedKelvin"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed kelvin</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx909"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx899"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx901"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx901"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx907"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx900"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx9"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx10"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx91"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx92"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx900"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx902"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx902"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx903"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx907"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx908"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedDegreeCelsius"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The degree Celsius is a unit of temperature defined as 1 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">degree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">graad Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">摄氏度</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">centigrade</alternativeLabel> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The degree Celsius is a unit of temperature defined as 1 kelvin. The degree Celsius is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx903"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx904"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeFahrenheit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeFahrenheit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The degree Fahrenheit is a unit of temperature defined as 5.555556e-1 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">degree Fahrenheit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">graad Fahrenheit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°F</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">5.555556e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx904"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx905"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeRankine"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeRankine"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The degree Rankine is a unit of temperature defined as 5.555556e-1 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">degree Rankine</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">graad Rankine</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°R</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°Ra</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">5.555556e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx905"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx906"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeReaumur"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeReaumur"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The degree Réaumur is a unit of temperature defined as 1.25 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">degree Réaumur</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">graad Réaumur</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°Ré</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°R</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°Re</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.25</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx906"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedDegreeCelsius"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed degree Celsius</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx923"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx908"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedKelvin"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx909"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx911"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx911"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx913"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx910"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx92"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx93"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx910"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx913"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx915"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx912"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx912"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx915"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx917"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx914"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx914"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx917"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx916"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx916"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx918"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx920"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx920"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx922"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx919"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx919"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx921"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx921"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx93"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx94"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx922"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedDegreeCelsius"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx923"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <intersectionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx925"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx925"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx927"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx924"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx924"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx927"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx929"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx926"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx926"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx929"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx931"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx928"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx928"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx931"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx930"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The US rod is a unit of length defined as 5.029210 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">rod (US)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rd</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">perch</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">US rod</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">pole</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">5.029210</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx94"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx95"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx930"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPrefix"/> - <cardinality xmlns="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</cardinality> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx932"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx934"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx934"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx933"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx933"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx935"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx935"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeFahrenheit"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx936"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx938"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx938"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx937"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx937"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx939"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx939"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeRankine"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Solar radius is a unit used in astronomy to denote stellar or stellar system radii (http://en.wikipedia.org/wiki/solarRadius).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">solar radius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">R_☉</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">6.955e8</hasFactor> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">R_{\astrosun}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx95"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx96"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx940"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx942"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx942"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx941"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx941"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx943"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx943"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeReaumur"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx944"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx945"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx945"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per kelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per kelvin</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/entropyOrHeatCapacity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/K</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J K-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·K-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx946"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx947"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx947"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvin"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx948"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx949"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx949"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/EntropyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/EntropyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">entropy unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx944"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The international yard is a unit of length defined as 9.144e-1 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yard (international)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">码(国际)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yd</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">international yard</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">9.144e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx96"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx97"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx950"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx951"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx951"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatCapacityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatCapacityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">heat capacity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx946"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx952"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx953"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx953"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per kelvin kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per kelvin kilogram</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEntropyOrSpecificHeatCapacity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvinKilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/(K kg)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J K-1 kg-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/(K·kg)</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·K-1·kg-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx954"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx955"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx955"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinKilogram"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx956"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx957"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx957"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEntropyUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEntropyUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific entropy unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx952"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx958"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx959"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx959"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificHeatCapacityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificHeatCapacityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific heat capacity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx954"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigaparsec is a unit of length defined as 1.0e9 parsec. Gebruikt voor de afstand op de schaal van het heelal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigaparsec</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigaparsec</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gpc</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx97"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx98"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx960"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx961"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx961"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerMetreKelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerMetreKelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per metre kelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per meter kelvin</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermalConductivity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/(m K)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W m-1 K-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/(m·K)</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·m-1·K-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx962"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx963"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx963"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalConductivityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalConductivityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal conductivity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx960"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx964"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx965"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx965"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreKelvinPerWatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreKelvinPerWatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre kelvin per watt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter kelvin per watt</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermalInsulance-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreKelvin"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 K/W</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 K W-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·K/W</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·K·W-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx966"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx967"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx967"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalInsulanceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalInsulanceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal insulance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx964"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx968"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx969"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx969"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvinPerWatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvinPerWatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kelvin per watt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kelvin per watt</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermalResistance-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K/W</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K W-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K·W-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kiloparsec is a unit of length defined as 1.0e3 parsec. Gebruikt voor afstanden op de schaal van het melkwegstelsel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kiloparsec</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kiloparsec</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kpc</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx98"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx970"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx971"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx971"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalResistanceUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalResistanceUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal resistance unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx968"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx972"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx973"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx973"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreKelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreKelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per square metre kelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per vierkante meter kelvin</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/heatTransferCoefficient-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreKelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/m2 K</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W-1 m2 K</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W-1·m2·K</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/(m2·K)</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx974"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx975"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx975"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatTransferCoefficientUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatTransferCoefficientUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">heat transfer coefficient unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx972"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx976"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx977"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx977"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx978"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusPerHour"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusPerHour"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">degree Celsius per hour</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">graad Celsius per uur</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C/h</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C h-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C·h-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx978"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx979"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusPerMinute-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusPerMinute-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">degree Celsius per minute</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">graad Celsius per minuut</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C/min</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C min-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C·min-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx979"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusPerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusPerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">degree Celsius per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">graad Celsius per seconde</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megaparsec is a unit of length defined as 1.0e6 parsec. Gebruikt voor afstanden op de schaal van clusters.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megaparsec</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megaparsec</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mpc</symbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx980"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx981"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx981"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureRateUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureRateUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">temperature rate unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx976"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx982"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx983"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx983"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerCubicMetreKelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerCubicMetreKelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per cubic metre kelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per kubieke meter kelvin</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volumetricHeatCapacity-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetreKelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/m3 K</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J-1 m3 K</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J-1·m3·K</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/(m3·K)</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx984"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx985"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx985"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricHeatCapacityUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricHeatCapacityUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volumetric heat capacity unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx982"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx986"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasScale"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx987"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx988"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx988"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx989"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx989"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx990"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx990"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx991"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperatureUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperatureUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermodynamic temperature unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx894"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx991"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperatureScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperatureScale"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermodynamic temperature scale</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx992"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasScale"/> - <hasValue xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx993"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx994"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx994"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/> - <onProperty xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit"/> - <allValuesFrom xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx995"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx995"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <unionOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx996"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx996"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx997"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusTemperatureUnit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusTemperatureUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Celsius temperature unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureUnit"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx918"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx997"> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusTemperatureScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusTemperatureScale"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Celsius temperature scale</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx998"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <oneOf xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx999"/> -</rdf:Description> - -<rdf:Description rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx999"> - <rdf:rest rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1000"/> - <rdf:first rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://purl.org/dc/elements/1.1/creator"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> -</rdf:Description> - -<rdf:Description rdf:about="http://purl.org/dc/elements/1.1/date"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> -</rdf:Description> - -<rdf:Description rdf:about="http://purl.org/dc/elements/1.1/identifier"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.iau.org/static/resolutions/IAU2012_English.pdf"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Standard"/> - <creator xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/IAUDiv1WG"/> - <date xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2012</date> - <publisher xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/International_Astronomical_Union"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IAU 2012</title> - <uri xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.iau.org/static/resolutions/IAU2012_English.pdf</uri> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/IAUDiv1WG"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Organization"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IAU Division I Working Group Numerical Standards</name> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/International_Astronomical_Union"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Organization"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">International Astronomical Union</name> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/reference"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reference</label> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://purl.org/ontology/bibo/Document"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.openisbn.com/isbn/9789462280618/"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Thesis"/> - <creator xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Hajo_Rijgersberg"/> - <date xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2013</date> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Semantic Support of Quantitative Research</title> - <uri xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.openisbn.com/isbn/9789462280618/</uri> - <degree xmlns="http://purl.org/ontology/bibo/" rdf:resource="http://purl.org/bibo/degrees/phd"/> - <isbn13 xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">978-94-6228-061-8</isbn13> - <issuer xmlns="http://purl.org/ontology/bibo/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/VU"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/vocabularies/WV/illustration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/vocabularies/WV/logo"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AFS"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">AFS</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Aberration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The apparent angular displacement of the observed position of a celestial object from its geometric position, caused by the finite velocity of light in combination with the motions of the observer and of the observed object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">aberration</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularDisplacement"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/commonlyHasUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This property indicates a commonly-used unit.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">commonly has unit</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx7"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">commonly has unit of measure</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularDisplacement"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular displacement</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gon"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/revolution"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoradian"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/BookSection"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Glossary</title> - <pageEnd xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">739</pageEnd> - <pageStart xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">721</pageStart> - <reproducedIn xmlns="http://purl.org/ontology/bibo/" rdf:resource="http://www.openisbn.com/isbn/1891389459/"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AberrationInLatitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The apparent angular displacement in ecliptical latitude of the observed position of a celestial object from its geometric position, caused by the finite velocity of light in combination with the motions of the observer and of the observed object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">aberration in latitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularDisplacement"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/chapter23_Astronomical_Algorithms"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Δβ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/symbol"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">symbol</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">has symbol</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/chapter23_Astronomical_Algorithms"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Chapter"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Apparent place of a star</title> - <chapter xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">23</chapter> - <pageEnd xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">158</pageEnd> - <pageStart xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">149</pageStart> - <reproducedIn xmlns="http://purl.org/ontology/bibo/" rdf:resource="urn:isbn:0943396611"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AberrationInLongitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The apparent angular displacement in ecliptical longitude of the observed position of a celestial object from its geometric position, caused by the finite velocity of light in combination with the motions of the observer and of the observed object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">aberration in longitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularDisplacement"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/chapter23_Astronomical_Algorithms"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Anglee"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Δλ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsoluteBolometricMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The absolute magnitude (see absolute magnitude) of a star is a measure of its total energy emission per second, or luminosity, i.e., the bolometric magnitude from a standard distance (10 pc).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">absolute bolometric magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BolometricMagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_bol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BolometricMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The magnitude of a star measured across all wavelengths, so that it takes into account the total amount of energy radiated. If a star is a strong infrared or ultraviolet emitter, its bolometric magnitude will differ greatly from its visual magnitude.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bolometric magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_bol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsoluteMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Logarithmic measure of the brightness of an object as seen from a standard distance of 10 pc. Units usually not indicated (http://en.wikipedia.org/wiki/Magnitude_(astronomy).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">absolute magnitude</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">absolute magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromagnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Reverse logarithmic measure of the brightness of an object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnitude</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1776"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1783"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/IntroAstronomicalPhotometry_chapter_2"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromagnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:parseType="Literal">The magnitude scale was originally created by Hipparchos of Nicea (160-127 BCE) and was measured by comparing the brightness between stars. Initially this was done inaccurately by eye but is currently done by using photoelectric photometers or even more recently by CCDs. Hipparchos divided the stars into six magnitude (brightness classes), the brightest stars being assigned to the first class and the faintest to the sixth class. By about the middle 1800s it became apparent that the traditional magnitude scale is close to a logarithmic scale with base 2.5. This is due to the fact that the response of the eye is nearly logarithmic. N.R. Pogson formalised the magnitude scale to closely match the traditional (visual) scale. It is now defined as: - <math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> - <msub xmlns="http://www.w3.org/1998/Math/MathML"><mi xmlns="http://www.w3.org/1998/Math/MathML">m</mi><mn xmlns="http://www.w3.org/1998/Math/MathML">1</mn></msub> <mo xmlns="http://www.w3.org/1998/Math/MathML">-</mo> <msub xmlns="http://www.w3.org/1998/Math/MathML"><mi xmlns="http://www.w3.org/1998/Math/MathML">m</mi><mn xmlns="http://www.w3.org/1998/Math/MathML">2</mn> </msub><mo xmlns="http://www.w3.org/1998/Math/MathML">=</mo> - <mn xmlns="http://www.w3.org/1998/Math/MathML">-2.5</mn><mi xmlns="http://www.w3.org/1998/Math/MathML">log</mi> - <mfrac xmlns="http://www.w3.org/1998/Math/MathML" linethickness="1"> - <mrow xmlns="http://www.w3.org/1998/Math/MathML"> - <msub xmlns="http://www.w3.org/1998/Math/MathML"><mi xmlns="http://www.w3.org/1998/Math/MathML">f</mi><mn xmlns="http://www.w3.org/1998/Math/MathML">1</mn></msub> - </mrow> - <mrow xmlns="http://www.w3.org/1998/Math/MathML"><msub xmlns="http://www.w3.org/1998/Math/MathML"><mi xmlns="http://www.w3.org/1998/Math/MathML">f</mi><mn xmlns="http://www.w3.org/1998/Math/MathML">2</mn></msub> - </mrow> - </mfrac> - </math> - where <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline"><msub xmlns="http://www.w3.org/1998/Math/MathML"><mi xmlns="http://www.w3.org/1998/Math/MathML">m</mi><mn xmlns="http://www.w3.org/1998/Math/MathML">1</mn></msub> <mo xmlns="http://www.w3.org/1998/Math/MathML">-</mo> <msub xmlns="http://www.w3.org/1998/Math/MathML"><mi xmlns="http://www.w3.org/1998/Math/MathML">m</mi><mn xmlns="http://www.w3.org/1998/Math/MathML">2</mn> </msub></math> is the magnitude difference between two objects, and <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline"><msub xmlns="http://www.w3.org/1998/Math/MathML"><mi xmlns="http://www.w3.org/1998/Math/MathML">f</mi><mn xmlns="http://www.w3.org/1998/Math/MathML">1</mn></msub></math> and <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline"><msub xmlns="http://www.w3.org/1998/Math/MathML"><mi xmlns="http://www.w3.org/1998/Math/MathML">f</mi><mn xmlns="http://www.w3.org/1998/Math/MathML">2</mn></msub></math> are the luminous fluxes of the two objects. The magnitude of Vega (α Lyrae, HD 172167) is defined to be 0 in all wavelengths and passbands, although in practice this can only be an approximation. The zero point is now defined using multiple standard stars from the north polar sequence (non-variable stars within 2 degrees of the north celestial pole) or secondary standard stars from other parts of the sky. Please note that the scale is inverted, objects of magnitude 1 have a higher luminous flux than objects of magnitude 5. Stars of magnitude 6 are just visible to the naked eye under good observing conditions. - The units of magnitude, also called magnitude, are usually not indicated except when indicating small magnitude differences when milli- or micromagnitudes are used.</longcomment> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDose"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Absorbed dose is the energy deposited in a medium by ionizing radiation. It is a derived quantity in the International System of Units. Absorbed dose is energy divided by mass.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">absorbed dose</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1704"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1706"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centigray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decigray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teragray"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">total ionizing dose</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/alternativeLabel"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">alternative label</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attogray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attogray is a unit of absorbed dose defined as 1.0e-18 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attogray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attogray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centigray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centigray is a unit of absorbed dose defined as 1.0e-2 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centigray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centigray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decagray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decagray is a unit of absorbed dose defined as 1.0e1 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decagray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decagray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decigray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decigray is a unit of absorbed dose defined as 1.0e-1 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decigray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decigray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exagray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exagray is a unit of absorbed dose defined as 1.0e18 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exagray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exagray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtogray is a unit of absorbed dose defined as 1.0e-15 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtogray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtogray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigagray is a unit of absorbed dose defined as 1.0e9 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigagray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigagray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectogray is a unit of absorbed dose defined as 1.0e2 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectogray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectogray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilogray is a unit of absorbed dose defined as 1.0e3 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megagray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megagray is a unit of absorbed dose defined as 1.0e6 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megagray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megagray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microgray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microgray is a unit of absorbed dose defined as 1.0e-6 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microgray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microgray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milligray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The milligray is a unit of absorbed dose defined as 1.0e-3 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milligray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milligray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanogray is a unit of absorbed dose defined as 1.0e-9 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanogray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanogray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petagray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petagray is a unit of absorbed dose defined as 1.0e15 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petagray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petagray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picogray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picogray is a unit of absorbed dose defined as 1.0e-12 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picogray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picogray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teragray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The teragray is a unit of absorbed dose defined as 1.0e12 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teragray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teragray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDoseRate"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">absorbed dose rate</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1762"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1765"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/grayPerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Acceleration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">acceleration</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">versnelling</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx425"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx868"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">acceleratie</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Attometre per second squared is a unit of acceleration defined as attometre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attometre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attometer per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">am/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">am s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">am·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Centimetre per second squared is a unit of acceleration defined as centimetre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Decametre per second squared is a unit of acceleration defined as decametre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decametre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decameter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dam/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dam s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dam·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Decimetre per second squared is a unit of acceleration defined as decimetre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decimetre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decimeter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Exametre per second squared is a unit of acceleration defined as exametre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exametre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exameter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Em/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Em s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Em·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Femtometre per second squared is a unit of acceleration defined as femtometre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtometre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtometer per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gigametre per second squared is a unit of acceleration defined as gigametre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigametre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigameter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Hectometre per second squared is a unit of acceleration defined as hectometre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectometre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectometer per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kilometre per second squared is a unit of acceleration defined as kilometre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilometre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilometer per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Megametre per second squared is a unit of acceleration defined as megametre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megametre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megameter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per attosecond squared is a unit of acceleration defined as metre divided by attosecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per attosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per attoseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/as2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m as-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·as-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per centisecond squared is a unit of acceleration defined as metre divided by centisecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per centisecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per centiseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/cs2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m cs-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·cs-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per decasecond squared is a unit of acceleration defined as metre divided by decasecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per decasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per decaseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/das2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m das-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·das-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per decisecond squared is a unit of acceleration defined as metre divided by decisecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per decisecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per deciseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ds2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ds-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ds-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per exasecond squared is a unit of acceleration defined as metre divided by exasecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per exasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per exaseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Es2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Es-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Es-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per femtosecond squared is a unit of acceleration defined as metre divided by femtosecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per femtosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per femtoseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/fs2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m fs-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·fs-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per gigasecond squared is a unit of acceleration defined as metre divided by gigasecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per gigasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per gigaseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Gs2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Gs-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Gs-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per hectosecond squared is a unit of acceleration defined as metre divided by hectosecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per hectosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per hectoseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/hs2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m hs-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·hs-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per kilosecond squared is a unit of acceleration defined as metre divided by kilosecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per kilosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per kiloseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ks2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ks-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ks-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per megasecond squared is a unit of acceleration defined as metre divided by megasecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per megasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per megaseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Ms2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Ms-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Ms-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per microsecond squared is a unit of acceleration defined as metre divided by microsecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per microsecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per microseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/μs2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m μs-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·μs-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per millisecond squared is a unit of acceleration defined as metre divided by millisecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per millisecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per milliseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ms2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ms-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ms-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per nanosecond squared is a unit of acceleration defined as metre divided by nanosecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per nanosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per nanoseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ns2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ns-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ns-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per petasecond squared is a unit of acceleration defined as metre divided by petasecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per petasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per petaseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Ps2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Ps-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Ps-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per picosecond squared is a unit of acceleration defined as metre divided by picosecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per picosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per picoseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ps2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ps-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ps-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per terasecond squared is a unit of acceleration defined as metre divided by terasecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per terasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per teraseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Ts2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Ts-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Ts-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Micrometre per second squared is a unit of acceleration defined as micrometre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micrometre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micrometer per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Millimetre per second squared is a unit of acceleration defined as millimetre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimetre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimeter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Nanometre per second squared is a unit of acceleration defined as nanometre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanometre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanometer per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Petametre per second squared is a unit of acceleration defined as petametre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petametre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petameter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Picometre per second squared is a unit of acceleration defined as picometre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picometre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picometer per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Terametre per second squared is a unit of acceleration defined as terametre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terametre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terameter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AceticAcidMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of acetic acid in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">acetic acid mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mass fraction</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">massafractie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx247"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx363"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerKilogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerHectogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerKilogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerHectogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerKilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">w</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">concentration (w/w)</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Acidity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">acidity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AcousticFirmness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Stevigheid gemeten met AWETA (acoustic firmness value). AFS value.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">acoustic firmness</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">akoestische stevigheid</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AFS"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_ac</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Action"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">action</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">actie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx786"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx885"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ergSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/jouleSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Activity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Activity is the decay rate of a radioactive substance. It is a derived quantity in the International System of Units. Activity is 1 divided by time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">activity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">activiteit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1708"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1744"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/curie"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attobecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centibecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decabecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exabecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtobecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigabecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectobecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilobecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megabecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanobecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petabecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picobecquerel"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terabecquerel"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">activity (of a radionuclide)</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">activity of a radionuclide</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attobecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attobecquerel is a unit of activity defined as 1.0e-18 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attobecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attobecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centibecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centibecquerel is a unit of activity defined as 1.0e-2 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centibecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centibecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decabecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decabecquerel is a unit of activity defined as 1.0e1 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decabecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decabecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decibecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decibecquerel is a unit of activity defined as 1.0e-1 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decibecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decibecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exabecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exabecquerel is a unit of activity defined as 1.0e18 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exabecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exabecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtobecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtobecquerel is a unit of activity defined as 1.0e-15 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtobecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtobecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigabecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigabecquerel is a unit of activity defined as 1.0e9 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigabecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigabecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectobecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectobecquerel is a unit of activity defined as 1.0e2 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectobecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectobecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilobecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilobecquerel is a unit of activity defined as 1.0e3 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilobecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilobecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megabecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megabecquerel is a unit of activity defined as 1.0e6 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megabecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megabecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microbecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microbecquerel is a unit of activity defined as 1.0e-6 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microbecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microbecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millibecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millibecquerel is a unit of activity defined as 1.0e-3 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millibecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millibecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanobecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanobecquerel is a unit of activity defined as 1.0e-9 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanobecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanobecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petabecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petabecquerel is a unit of activity defined as 1.0e15 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petabecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petabecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picobecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picobecquerel is a unit of activity defined as 1.0e-12 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picobecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picobecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terabecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The terabecquerel is a unit of activity defined as 1.0e12 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terabecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terabecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Admittance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Admittance is a measure of how easily a circuit or device will allow a current to flow. It is electric current divided by electric potential.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">admittance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Y</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Albedo"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Ratio between radiation falling onto an object and the radiation reflected or scattered back. Or the ratio between the illumination and observed brightness.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">albedo</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">albedo</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantityOfDimensionOne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">α</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantityOfDimensionOne"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quantity of dimension one</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx244"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx337"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AlfvenNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Alfvén number</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1312"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1314"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Al</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Altitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance of a celestial body above or below the horizon, measured along the great circle passing through the body and the zenith.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">altitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">h</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">elevation</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alt</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/alternativeSymbol"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">alternative symbol</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">has alternative symbol</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Angle is the ratio between an arc and its radius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angle</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hoek</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">角度</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx209"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx242"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gon"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/revolution"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoradian"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">α</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">plane angle</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">β</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">γ</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">θ</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">φ</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmbientDoseEquivalent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ambient dose equivalent</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DoseEquivalent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rem"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasievert"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attosievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attosievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attosievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centisievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centisievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centisievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decasievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decasievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decasievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decisievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decisievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decisievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exasievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exasievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exasievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ESv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtosievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtosievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigasievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigasievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectosievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectosievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilosievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilosievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megasievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megasievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megasievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microsievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microsievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microsievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millisievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millisievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millisievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanosievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanosievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petasievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petasievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petasievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picosievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picosievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picosievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terasievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terasievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terasievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DoseEquivalent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Dose equivalent is a measure of the radiation dose to tissue where an attempt has been made to allow for the different relative biological effects of different types of ionizing radiation.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dose equivalent</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1707"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1726"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rem"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasievert"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfMoney"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of money</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1857"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitedStatesDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/euro"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/JapaneseYen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundSterling"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AustralianDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SwissFranc"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CanadianDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MexicanPeso"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ChineseYuan"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NewZealandDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SwedishKrona"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RussianRuble"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HongKongDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NorwegianKrone"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingaporeDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TurkishLira"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SouthKoreanWon"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SouthAfricanRand"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BrazilianReal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IndianRupee"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuro"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Amount of substance is the number of elementary entities such as atoms, molecules, electrons, particles, etc. present in a phenomenon. It is a base quantity in the International System of Units.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stofhoeveelheid</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1446"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1569"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attomole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decamole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/examole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megamole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petamole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picomole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teramole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">n</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attomole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attomole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attomol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decamole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decamole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decamol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">damol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decimole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decimole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decimol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/examole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">examole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">examol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Emol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtomole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtomol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigamole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigamol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectomole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectomol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilomole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilomol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megamole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megamole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megamol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micromole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micromole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micromol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanomole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanomol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petamole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petamole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petamol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picomole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picomole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picomol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teramole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teramole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teramol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceConcentration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance concentration</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1467"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1570"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerCubicmetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attomolair"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attomolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decamolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/examolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomolair"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megamolair"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megamolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolair"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimolair"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerAttolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerCentilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerDecalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerDecilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerExalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerFemtolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerGigalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerHectolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerKilolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMegalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMicrolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerNanolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerPetalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerPicolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerTeralitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomolair"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petamolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picomolair"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picomolePerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teramolePerLitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">molar concentration</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">molaire concentratie</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attomolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attomolair is a unit of amount of substance concentration defined as 1.0e-18 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attomolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attomolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attomolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Attomole per litre is a unit of amount of substance concentration defined as attomole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attomole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attomole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Centimole per litre is a unit of amount of substance concentration defined as centimole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decamolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Decamole per litre is a unit of amount of substance concentration defined as decamole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decamole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decamole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">damol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">damol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">damol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decimolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Decimole per litre is a unit of amount of substance concentration defined as decimole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decimole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decimole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/examolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Examole per litre is a unit of amount of substance concentration defined as examole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">examole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">examole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/examole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Emol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Emol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Emol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtomolair is a unit of amount of substance concentration defined as 1.0e-15 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtomolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtomolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Femtomole per litre is a unit of amount of substance concentration defined as femtomole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtomole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtomole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gigamole per litre is a unit of amount of substance concentration defined as gigamole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigamole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigamole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Hectomole per litre is a unit of amount of substance concentration defined as hectomole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectomole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectomole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kilomole per litre is a unit of amount of substance concentration defined as kilomole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilomole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilomole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megamolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megamolair is a unit of amount of substance concentration defined as 1.0e6 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megamolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megamolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megamolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Megamole per litre is a unit of amount of substance concentration defined as megamole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megamole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megamole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The micromolair is a unit of amount of substance concentration defined as 1.0e-6 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micromolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micromolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Micromole per litre is a unit of amount of substance concentration defined as micromole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micromole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micromole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millimolair is a unit of amount of substance concentration defined as 1.0e-3 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Millimole per litre is a unit of amount of substance concentration defined as millimole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerAttolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per attolitre is a unit of amount of substance concentration defined as mole divided by attolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per attolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per attoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/al</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol al-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·al-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerCentilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per centilitre is a unit of amount of substance concentration defined as mole divided by centilitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per centilitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per centiliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/cl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol cl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·cl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerDecalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per decalitre is a unit of amount of substance concentration defined as mole divided by decalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per decalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per decaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/dal</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol dal-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·dal-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerDecilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per decilitre is a unit of amount of substance concentration defined as mole divided by decilitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per decilitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per deciliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/dl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol dl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·dl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerExalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per exalitre is a unit of amount of substance concentration defined as mole divided by exalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per exalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per exaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/El</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol El-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·El-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerFemtolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per femtolitre is a unit of amount of substance concentration defined as mole divided by femtolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per femtolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per femtoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/fl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol fl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·fl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerGigalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per gigalitre is a unit of amount of substance concentration defined as mole divided by gigalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per gigalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per gigaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Gl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Gl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Gl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerHectolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per hectolitre is a unit of amount of substance concentration defined as mole divided by hectolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per hectolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per hectoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/hl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol hl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·hl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerKilolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per kilolitre is a unit of amount of substance concentration defined as mole divided by kilolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per kilolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per kiloliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/kl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol kl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·kl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMegalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per megalitre is a unit of amount of substance concentration defined as mole divided by megalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per megalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per megaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Ml</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Ml-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Ml-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMicrolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per microlitre is a unit of amount of substance concentration defined as mole divided by microlitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per microlitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per microliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microlitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/μl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol μl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·μl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMillilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per millilitre is a unit of amount of substance concentration defined as mole divided by millilitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per millilitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per milliliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/ml</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol ml-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·ml-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerNanolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per nanolitre is a unit of amount of substance concentration defined as mole divided by nanolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per nanolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per nanoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/nl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol nl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·nl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerPetalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per petalitre is a unit of amount of substance concentration defined as mole divided by petalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per petalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per petaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Pl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Pl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Pl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerPicolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per picolitre is a unit of amount of substance concentration defined as mole divided by picolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per picolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per picoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/pl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol pl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·pl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerTeralitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per teralitre is a unit of amount of substance concentration defined as mole divided by teralitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per teralitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per teraliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teralitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Tl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Tl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Tl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanomolair is a unit of amount of substance concentration defined as 1.0e-9 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanomolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanomolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Nanomole per litre is a unit of amount of substance concentration defined as nanomole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanomole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanomole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petamolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Petamole per litre is a unit of amount of substance concentration defined as petamole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petamole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petamole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picomolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picomolair is a unit of amount of substance concentration defined as 1.0e-12 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picomolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picomolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picomolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Picomole per litre is a unit of amount of substance concentration defined as picomole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picomole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picomole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teramolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Teramole per litre is a unit of amount of substance concentration defined as teramole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teramole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teramole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teramole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceFlow"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance flow</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1586"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerSecond-Time"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">amount-of-substance flow</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">molar flow</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1440"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1511"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerMole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">x</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">amount-of-substance fraction</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">mole fraction</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">molfractie</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">y</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceFractionFlow"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance fraction flow</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">amount-of-substance fraction flow</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">mole fraction flow</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Amphiphilicity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amphiphilicity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">amfifiliciteit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Amplitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The difference between the maximum and minimum magnitudes of a variable star, i.e., the total range of its brightness.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amplitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attoradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attoradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attoradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">arad</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centiradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centiradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centiradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">crad</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/deciradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">deciradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">deciradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">drad</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtoradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtoradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frad</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μrad</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milliradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milliradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milliradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mrad</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanoradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanoradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nrad</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picoradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picoradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picoradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">prad</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularAcceleration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular acceleration</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hoekversnelling</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx728"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx880"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radianPerSecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">α</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularMomentum"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular momentum</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">impulsmoment</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx788"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx886"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ergSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/jouleSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">L</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">draaiimpuls</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">draaimoment</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">hoekmoment</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularSize"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular size</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SolidAngle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-AngleSquared"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SolidAngle"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Solid angle is the ratio of the surface of a portion of a sphere enclosed by the conical surface that forms an angle to the square of the radius of the sphere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">solid angle</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ruimtehoek</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">立体角</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx228"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx243"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-AngleSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosteradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisteradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisteradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosteradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsteradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisteradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosteradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosteradian"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ω</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularSpeed"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular speed</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hoeksnelheid</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx724"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx879"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-AnglePerYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radianPerSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ω</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">angular frequency</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">hoekfrequentie</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularVelocity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">angular velocity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularSpeed"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radianPerSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ω</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AnnualAberration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The component of the stellar abberation resulting from the motion of the Earth about the Sun. The abberation is the apparent angular displacement of the observed position of a celestial object from its geometric position, caused by the finite velocity of light in combination with the motions of the observer and of the observed object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">annual aberration</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularDisplacement"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ApparentDiameter"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angle that the actual diameter of an object makes in the sky; also known as angular size. Most often small, so units are mostly arcminutes, arcseconds, or even milli- or microarcseconds.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">apparent diameter</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ApparentDistanceModulus"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">apparent distance modulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DistanceModulus"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DistanceModulus"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The difference between the apparent magnitude (m) of an astronomical object, such as a star, and its absolute magnitude (M), used as a distance measurement. Distances can be expressed in distance modulii as $$m-M = 5\log d + 10 = 10-5 log \varpi$$ where \(d\) is the distance in kiloparsec and \(\varpi\) is the parallax in milliarcseconds. - </comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">distance modulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Distance"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-M</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ApparentMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Logarithmic measure of the apparent brightness of an object. Units usually not indicated(http://en.wikipedia.org/wiki/Magnitude_(astronomy).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">apparent magnitude</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">schijnbare magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromagnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Area"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Area expresses the two-dimensional size of a defined part of a surface, typically a region bounded by a closed curve. It is a derived quantity in the International System of Units. Area is length squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">area</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oppervlakte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">面积</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx122"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx240"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acre-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acre-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/are"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barn"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/circularMil"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiare"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectare"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareAttometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareDecametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareDecimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareExametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareFemtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareGigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareHectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareKilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMegametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMicrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMillimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareNanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squarePetametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squarePicometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareTerametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">oppervlak</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centiare"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centiare is a unit of area defined as 1.0e-2 are.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centiare</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centiare</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/are"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ca</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectare"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectare is a unit of area defined as 1.0e2 are.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectare</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectare</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/are"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ha</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareAttometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square attometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante attometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">am2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante centimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareDecametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square decametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante decameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dam2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareDecimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square decimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante decimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareExametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square exametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante exameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Em2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareFemtometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square femtometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante femtometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareGigametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square gigametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante gigameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareHectometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square hectometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante hectometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareKilometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square kilometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante kilometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km2</symbol> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10^6 m2</unofficialAbbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMegametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square megametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante megameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMicrometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square micrometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante micrometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMillimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square millimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante millimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareNanometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square nanometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante nanometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squarePetametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square petametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante petameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squarePicometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square picometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante picometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareTerametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square terametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante terameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">area density</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oppervlaktedichtheid</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx840"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerHectare"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaDensityRate"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">area density rate</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx846"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerHectareDay"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">area fraction</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oppervlaktefractie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx249"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx370"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/AtomicMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">atomic mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/unifiedAtomicMassUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanounifiedAtomicMassUnit"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_a</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanounifiedAtomicMassUnit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanounified atomic mass unit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/unifiedAtomicMassUnit"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nu</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mass is the amount of matter of a phenomenon. It is a base quantity in the International System of Units. Mass is force divided by acceleration.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mass</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">massa</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">质量</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx304"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx863"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/carat-Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/grain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hundredweight-British"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hundredweight-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/InternationalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramRAE"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ounceAvoirdupois"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ounceApothecaries"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pennyweight-Troy"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundApothecaries"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundAvoirdupois"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/slug"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-ShortAssay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Long"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Short"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/unifiedAtomicMassUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanounifiedAtomicMassUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centigram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decagram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decigram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exagram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megagram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petagram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teragram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilotonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megatonne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m</symbol> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Azimuth"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance measured clockwise along the horizon from a specified reference point (usually north) to the intersection with the great circle drawn from the zenith through a body on the celestial sphere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">azimuth</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">azimut</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Az</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Johnson B magnitude. The Johnson B band is a standard filter in the blue area. The central wavelength is 440nm and the bandwidth is 100nm. The filter to be used is the Corning 5030 filter plus the Schott GG13 filter.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">B magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/JohnsonMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromagnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_B</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/JohnsonMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A magnitude measured in one of Johnson's standard passbands (using a standard filter, i.e. U, B, or V).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Johnson magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:parseType="Literal">For accurate photometry the magnitude needs to be determined over well-defined spectral regions as the spectrum of to objects may be quite different. These magnitudes are measured using filters that allows only radiation within specific spectral regions (passbands) to pass through to the detector. These filters have accurately defined transmission curves characterised by a central wavelength and a bandwidth. The UBV system devised by Harold Johnson and William Morgan has been the most important general system until recently. The precise definition requires a reflecting telescope with aluminised mirrors fitted with an RCA 1P21 photomultiplier. The U region corresponds to a region in the violet and ultraviolet, the B region corresponds to typical photographic response and the V region to the visual response region (approximating the eye's response curve).</longcomment> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Chapter"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Photometry</title> - <chapter xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</chapter> - <pageEnd xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">365</pageEnd> - <pageStart xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">329</pageStart> - <reproducedIn xmlns="http://purl.org/ontology/bibo/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BMagnitudeAtMaximumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Johnson B magnitude at maximum brightness (i.e. for a variable star). The Johnson B band is a standard filter in the blue area. The central wavelength is 440nm and the bandwidth is 100nm. The filter to be used is the Corning 5030 filter plus the Schott GG13 filter.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">B magnitude at maximum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BMagnitude"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMaximumBrightness"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B_max</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMaximumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The magnitude at maximum brightness of a variable star.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnitude at maximum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_max</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BMagnitudeAtMinimumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Johnson B magnitude at minimum brightness (i.e. for a variable star). The Johnson B band is a standard filter in the blue area. The central wavelength is 440nm and the bandwidth is 100nm. The filter to be used is the Corning 5030 filter plus the Schott GG13 filter.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">B magnitude at minimum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BMagnitude"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMinimumBrightness"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B_min</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMinimumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The magnitude at minimum brightness of a variable star.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnitude at minimum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_min</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BetaNarrowMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">β_narrow Magnitude in the Strömgren-Crawford photometric system with a peak wavelength at 485.8 nm and a peak-half-width of 2.9 nm.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">β_narrow magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StroemgrenMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Crawford1958"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">β_n</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">β_narrow</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StroemgrenMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A magnitude measured in one of Strömgren's standard passbands (using a standard filter, u, b, v, or y) or in the passbands defined by Crawford (β_narrow or β_wide).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Strömgren magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Crawford1958"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Stroemgren1956"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Crawford1958"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Article"/> - <creator xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/DLCrawford"/> - <date xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1958</date> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Two-dimensional spectral classification by narrow-band photometry for B stars in clusters and associations</title> - <uri xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1958ApJ...128..185C&data_type=PDF_HIGH&whole_paper=YES&type=PRINTER&filetype=.pdf</uri> - <pageEnd xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">206</pageEnd> - <pageStart xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</pageStart> - <isPartOf xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/ApJ"/> - <subject xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Astronomy</subject> - <subject xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Distance Measurement</subject> - <authorList xmlns="http://purl.org/ontology/bibo/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Crawford1958Authors"/> - <volume xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</volume> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BetaWideMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">β_wide Magnitude in the Strömgren-Crawford photometric system with a peak wavelength at 485 nm and a peak-half-width of 12.9 nm.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">β_wide magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StroemgrenMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Crawford1958"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">β_w</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">β_wide</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BinaryPrefix"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">IEC prefix</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">binary prefix</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Prefix"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BodyLabelMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">body label mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LabelMass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">body label weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilogram is a unit of mass defined as the mass of the international prototype of the kilogram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">公斤</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg</symbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The kilogram is a unit of mass defined as the mass of the international prototype of the kilogram. The kilogram is a base unit in the International System of Units.</longcomment> - <hasQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/massOfTheInternationalPrototypeOfTheKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/unofficialLabel"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Used to specify labels that are used in e.g. every day speech but are not defined in any standard.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">unofficial label</label> - <subPropertyOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2004/02/skos/core#hiddenLabel"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">has unofficial label</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LabelMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">label mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">label weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BodyMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">body mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">body weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BolometricCorrection"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The visual magnitude of an object minus its bolometric magnitude.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bolometric correction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BondAlbedo"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Is the fraction of the total incident solar radiation - the radiation at all wavelengths - that is reflected or scattered by an object in all directions.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bond albedo</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Albedo"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">spherical albedo</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Breadth"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">breadth</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">breedte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">b</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attometre is a unit of length defined as 1.0e-18 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attometer</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">am</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centimetre is a unit of length defined as 1.0e-2 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decametre is a unit of length defined as 1.0e1 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decameter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dam</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decimetre is a unit of length defined as 1.0e-1 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decimeter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exametre is a unit of length defined as 1.0e18 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exameter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">千兆兆米</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Em</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtometre is a unit of length defined as 1.0e-15 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtometer</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">1/(10^15)米</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigametre is a unit of length defined as 1.0e9 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigameter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^9米</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectometre is a unit of length defined as 1.0e2 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectometer</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilometre is a unit of length defined as 1.0e3 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilometer</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">公里</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megametre is a unit of length defined as 1.0e6 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megameter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">百万米</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The micrometre is a unit of length defined as 1.0e-6 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micrometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micrometer</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">微米</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millimetre is a unit of length defined as 1.0e-3 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimeter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">毫米</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanometre is a unit of length defined as 1.0e-9 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanometer</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petametre is a unit of length defined as 1.0e15 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petameter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^15米</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picometre is a unit of length defined as 1.0e-12 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picometer</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">1/(10^12)米</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The terametre is a unit of length defined as 1.0e12 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terameter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^12米</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tm</symbol> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10^9 km</unofficialAbbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Length is the amount of space between two geographical points along a curve. It is a base quantity in the International System of Units and other systems of units. Length is speed times time. The metre, a base unit of length in the International System of Units, is defined in terms of speed of light during a certain time interval.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">length</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lengte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">长度</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx100"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx239"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">L</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BrightnessTemperature"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The temperature that a blackbody would need to have in order to emit radiation of the observed intensity at a given wavelength (mostly used in radio astronomy).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">brightness temperature</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperature"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperature"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Thermodynamic temperature is the absolute measure of temperature. Its zero point is the temperature at which the particle constituents of matter have minimal motion and can be no colder. Thermodynamic temperature is a base quantity in the International System of Units.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermodynamic temperature</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">absolute temperatuur</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx986"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx987"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Temperature"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centikelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decakelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decikelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exakelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigakelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megakelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microkelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millikelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petakelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terakelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">thermodynamische temperatuur</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LaTeXCommand"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">OMLaTeX command that can be used to render this quantity or unit.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">LaTeX command</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">typeset by LaTeX command</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasFactor"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has factor</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx20"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LaTeXSymbol"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">OMLaTeX formatted symbol may include commands such as \unit and \E as defined in OMLaTeX.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">LaTeX symbol</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">LaTeX formatted symbol</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">has LaTeX symbol</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BudStadium"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bud stadium</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">knopstadium</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-5"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-5"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1-5</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">1-5</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BudStadiumDay0"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Knopstadium vaasdag 0 (start vaasleven) (code).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bud stadium day 0</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">knopstadium dag 0</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BudStadium"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-5"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">sday0</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BudStadiumDay4"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Knopstadium vaasdag 4 (code).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bud stadium day 4</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">knopstadium dag 4</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BudStadium"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-5"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">sday4</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BudStadiumDay7"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Knopstadium vaasdag 7 (code).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bud stadium day 7</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">knopstadium dag 7</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BudStadium"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-5"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">sday7</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/BulkModulus"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Bulk modulus is a substance's resistance to uniform compression.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bulk modulus</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">compressiemodulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicModulus"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">κ</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attopascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attopascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centipascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centipascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decapascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decapascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decipascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decipascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exapascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exapascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtopascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtopascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigapascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigapascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectopascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectopascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilopascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilopascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megapascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megapascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micropascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micropascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millipascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millipascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanopascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanopascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petapascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petapascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picopascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picopascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terapascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terapascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicModulus"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dynamic modulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1308"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx607"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CapMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cap mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cap weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Capacitance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Capacitance is the ability to hold electrical charge. It is a derived quantity in the International System of Units. Capacitance is electric charge divided by electric potential.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">capacitance</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">capaciteit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1122"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1284"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abfarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statfarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerVolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attofarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centifarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decafarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decifarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exafarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtofarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigafarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectofarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilofarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megafarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microfarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millifarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanofarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petafarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picofarad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terafarad"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">electric capacitance</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">electrische capaciteit</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attofarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attofarad is a unit of capacitance defined as 1.0e-18 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attofarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attofarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centifarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centifarad is a unit of capacitance defined as 1.0e-2 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centifarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centifarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decafarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decafarad is a unit of capacitance defined as 1.0e1 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decafarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decafarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decifarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decifarad is a unit of capacitance defined as 1.0e-1 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decifarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decifarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exafarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exafarad is a unit of capacitance defined as 1.0e18 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exafarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exafarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtofarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtofarad is a unit of capacitance defined as 1.0e-15 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtofarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtofarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigafarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigafarad is a unit of capacitance defined as 1.0e9 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigafarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigafarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectofarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectofarad is a unit of capacitance defined as 1.0e2 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectofarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectofarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilofarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilofarad is a unit of capacitance defined as 1.0e3 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilofarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilofarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megafarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megafarad is a unit of capacitance defined as 1.0e6 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megafarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megafarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microfarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microfarad is a unit of capacitance defined as 1.0e-6 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microfarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microfarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millifarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millifarad is a unit of capacitance defined as 1.0e-3 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millifarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millifarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanofarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanofarad is a unit of capacitance defined as 1.0e-9 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanofarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanofarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petafarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petafarad is a unit of capacitance defined as 1.0e15 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petafarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petafarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picofarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picofarad is a unit of capacitance defined as 1.0e-12 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picofarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picofarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terafarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The terafarad is a unit of capacitance defined as 1.0e12 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terafarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terafarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CartonMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">carton mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">carton weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CatalyticActivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">catalytic activity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1588"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1608"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amylaseUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450PerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attokatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centikatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decakatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decikatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exakatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtokatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigakatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectokatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilokatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megakatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microkatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millikatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petakatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picokatal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terakatal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attokatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attokatal is a unit of catalytic activity defined as 1.0e-18 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attokatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attokatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">akat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centikatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centikatal is a unit of catalytic activity defined as 1.0e-2 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centikatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centikatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ckat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decakatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decakatal is a unit of catalytic activity defined as 1.0e1 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decakatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decakatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dakat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decikatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decikatal is a unit of catalytic activity defined as 1.0e-1 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decikatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decikatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exakatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exakatal is a unit of catalytic activity defined as 1.0e18 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exakatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exakatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ekat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtokatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtokatal is a unit of catalytic activity defined as 1.0e-15 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtokatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtokatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigakatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigakatal is a unit of catalytic activity defined as 1.0e9 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigakatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigakatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectokatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectokatal is a unit of catalytic activity defined as 1.0e2 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectokatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectokatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilokatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilokatal is a unit of catalytic activity defined as 1.0e3 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilokatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilokatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megakatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megakatal is a unit of catalytic activity defined as 1.0e6 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megakatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megakatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microkatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microkatal is a unit of catalytic activity defined as 1.0e-6 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microkatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microkatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millikatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millikatal is a unit of catalytic activity defined as 1.0e-3 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millikatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millikatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanokatal is a unit of catalytic activity defined as 1.0e-9 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanokatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanokatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petakatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petakatal is a unit of catalytic activity defined as 1.0e15 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petakatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petakatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picokatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picokatal is a unit of catalytic activity defined as 1.0e-12 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picokatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picokatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terakatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The terakatal is a unit of catalytic activity defined as 1.0e12 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terakatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terakatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CatalyticActivityConcentration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">catalytic activity concentration</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1601"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1609"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katalPerCubicmetre"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">catalytic concentration</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeAbscisedBuds"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven knopval (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life abscised buds</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven knopval</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">abscised buds</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1/0</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">1/0</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeAbscisedFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven bloemval (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life abscised flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven bloemval</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">abscised flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeAbscisedLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven bladval (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life abscised leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven bladval</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">abscised leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeBlueFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven blauwe bloemen (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life blue flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven blauwe bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">blue flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeBotrytis"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven Botrytis (b3 of b4) (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life Botrytis</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven Botrytis</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">bot</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeDryBuds"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven knopverdroging (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life dry buds</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven knopverdroging</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">dry buds</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeDryFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven bloemverdroging (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life dry flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven bloemverdroging</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">dry flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeDryLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven bladverdroging (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life dry leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven bladverdroging</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">dry leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeMalformedBuds"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven misvormde knoppen (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life malformed buds</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven misvormde knoppen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">malformed buds</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeMalformedFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven misvormde bloemen (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life malformed flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven misvormde bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">malformed flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeNonturgidFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven slappe bloemen (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life nonturgid flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven slappe bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">nonturgid flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeNonturgidLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven slappe bladeren (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life nonturgid leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven slappe bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">nonturgid leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeRottenFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven bloemrot (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life rotten flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven bloemrot</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">rotten flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeRottenLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven rotte bladeren (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life rotten leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven rotte bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">rotten leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeWiltedFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven bloemverwelking (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life wilted flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven bloemverwelking</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">wilted flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeWiltedLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven bladverwelking (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life wilted leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven bladverwelking</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">wilted leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CauseEndOfVaseLifeYellowLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Oorzaak einde vaasleven bladvergeling (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cause end of vase life yellow leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oorzaak einde vaasleven bladvergeling</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">yellow leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasOff-Set"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has off-set</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Scale"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_-189.3442OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">-189.3442 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_83.8058OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-189.3442</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_-218.7916OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">-218.7916 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_54.3584OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-218.7916</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_-248.5939OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">-248.5939 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_24.5561OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-248.5939</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_-259.3467OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">-259.3467 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_13.8033OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-259.3467</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_-270.15To-268.15OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">One of the fixed points defining the Celsius scale</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">-270.15 to -268.15 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_3To5OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-270.15 to -268.15</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_-38.8344OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">-38.8344 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_234.3156OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-38.8344</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_0.01OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">0.01 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_273.16OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1064.18OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1064.18 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1337.33OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1064.18</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1084.62OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1084.62 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1357.77OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1084.62</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_156.5985OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">156.5985 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_429.7485OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">156.5985</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_231.928OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">231.928 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_505.078OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">231.928</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_29.7646OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">29.7646 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_302.9146OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">29.7646</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_419.527OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">419.527 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_692.677OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">419.527</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_660.323OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">660.323 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_933.473OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">660.323</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_961.78OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">961.78 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1234.93OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">961.78</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/approximately-252.85OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">~-252.85 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/approximately203OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">~-252.85</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/approximately-256.15OnTheCelsiusScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">~-256.15 on the Celsius scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusScale"/> - <hasPoint xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/approximately17OnTheKelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">~-256.15</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusTemperature"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Celsius temperature</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Celsiustemperatuur</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx992"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx993"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Temperature"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attodegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centidegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decidegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtodegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microdegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millidegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanodegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picodegreeCelsius"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">θ</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attodegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attodegree Celsius is a unit of temperature defined as 1.0e-18 degree Celsius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attodegree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attograad Celsius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a°C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centidegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centidegree Celsius is a unit of temperature defined as 1.0e-2 degree Celsius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centidegree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centigraad Celsius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">c°C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decidegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decidegree Celsius is a unit of temperature defined as 1.0e-1 degree Celsius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decidegree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decigraad Celsius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">d°C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtodegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtodegree Celsius is a unit of temperature defined as 1.0e-15 degree Celsius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtodegree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtograad Celsius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">f°C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microdegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microdegree Celsius is a unit of temperature defined as 1.0e-6 degree Celsius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microdegree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micrograad Celsius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μ°C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millidegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millidegree Celsius is a unit of temperature defined as 1.0e-3 degree Celsius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millidegree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milligraad Celsius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m°C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanodegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanodegree Celsius is a unit of temperature defined as 1.0e-9 degree Celsius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanodegree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanograad Celsius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">n°C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picodegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picodegree Celsius is a unit of temperature defined as 1.0e-12 degree Celsius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picodegree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picograad Celsius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">p°C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Temperature"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Temperature is the extent to which an object is hot.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">temperature</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">temperatuur</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">温度</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1004"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1011"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1034"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeFahrenheit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeRankine"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeReaumur"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attodegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centidegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decidegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtodegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microdegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millidegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanodegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picodegreeCelsius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centikelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decakelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decikelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exakelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigakelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megakelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microkelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millikelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petakelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picokelvin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terakelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">θ</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t</alternativeSymbol> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">temp</unofficialAbbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Circumference"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">circumference</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omtrek</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">圆周</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Co-RotationRadius"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The radius (distance from the galaxy's centre) at which the stars move at the same speed as the spiral pattern or bar in a galaxy.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">co-rotation radius</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Radius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">r_c</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Radius"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">straal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">半径</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">r</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">radius</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ColdGasMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of a galaxy that is in the form of cold gas ~10s K.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cold gas mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CollisionFrequency"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Collision frequency is the average number of collisions between reacting molecules per unit time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">collision frequency</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Frequency"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ν_coll</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ν_c</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Frequency"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Frequency is a measure of the number of occurrences of a repeating event per unit time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">frequency</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">frequentie</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">频率</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx395"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx867"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalDay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attohertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centihertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decahertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decihertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exahertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtohertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigahertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectohertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megahertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microhertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millihertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanohertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petahertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picohertz"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terahertz"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">f</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ν</alternativeSymbol> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">freq</unofficialAbbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ColorAreaFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: percentage oppervlak donker.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">color area fraction</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kleuroppervlaktefractie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">color%</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ColourIndex"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The difference between the apparent magnitude of a star at two different wavelengths (always the shorter-wavelength magnitude minus the longer-wavelength magnitude) to give a quantification of the star's colour. The magnitude of an object at different wavelengths are measured by using different filters before the detector. Often the Johnson system with UBV passbands are used. Other passbands may also be used (for instance g-r).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">colour index</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kleurindex</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ColourTemperature"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The temperature of a blackbody that has the same colour index as a given star.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">colour temperature</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperature"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ColumnNumberDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">column number density</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx851"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx865"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareMetre"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">density</unofficialLabel> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">number density</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CompoundUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">compound unit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CompressiveStress"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Compressive stress is a stress that, when applied, acts towards the center of a material.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">compressive stress</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Stress"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Stress"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Stress is a force that produces or tends to produce deformation in a body measured by the force applied per unit area.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stress</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mechanische spanning</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1301"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx605"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">σ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ContactAngle"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">contact angle</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gon"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/revolution"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoradian"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CosmologicalConstant"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The cosmological constant.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cosmological constant</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kosmologische constante</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Λ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Cost"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cost</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfMoney"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitedStatesDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/euro"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/JapaneseYen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundSterling"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AustralianDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SwissFranc"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CanadianDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MexicanPeso"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ChineseYuan"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NewZealandDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SwedishKrona"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RussianRuble"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HongKongDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NorwegianKrone"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingaporeDollar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TurkishLira"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SouthKoreanWon"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SouthAfricanRand"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BrazilianReal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IndianRupee"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuro"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CousinsMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A magnitude measured in one of Cousins standard passbands (using a standard filter, i.e. I or R).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Cousins magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Coverage"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">coverage</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CowlingNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Cowling number</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1317"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1319"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Co</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">second Cowling number</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Co2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CriticalDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The density needed for a closed universe.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">critical density</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kritieke dichtheid</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Density"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCubicmetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerCubicmetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCubicCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgramPerCubicCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerCubicmetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerCubicDecimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ρ_c</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Density"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Density is the concentration of matter. It is a derived quantity in the International System of Units. Density is mass divided by volume.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">density</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">dichtheid</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">密度</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx468"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx869"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCubicmetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerCubicmetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCubicCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgramPerCubicCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerCubicmetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerCubicDecimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attogramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centigramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decagramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decigramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exagramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerAttolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCentilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerDecalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerDecilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerExalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerFemtolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGigalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerHectolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerKilolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerMegalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerMicrolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerNanolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerPetalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerPicolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerTeralitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megagramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petagramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picogramPerLitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teragramPerLitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ρ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">concentration (w/v)</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">mass density</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">soortelijke massa</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CurrentDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Current density is the density of flow of a conserved charge. It is a derived quantity in the International System of Units. Current density is electric current divided by area.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">current density</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1072"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1281"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerSquareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">j</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/CurvatureConstant"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The curvature constant k=-1, 0, or 1.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">curvature constant</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1792"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1794"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">k</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Cut-OffWavelength"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Either: wavelengths at which the detectivity (D) falls to 0, or the wavelengths at which the detectivity falls to 1% of the peak value, or the wavelengths at which the normalised detectivity (D*) has fallen to half its peak value.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cut-off wavelength</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Wavelength"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">λ_c</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Wavelength"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">wavelength</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">golflengte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">λ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Chapter"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Detectors</title> - <chapter xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</chapter> - <pageEnd xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</pageEnd> - <pageStart xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</pageStart> - <reproducedIn xmlns="http://purl.org/ontology/bibo/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DarkNoise"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Output from a detector when unilluminated - usually as RMS voltage or current (Kitchin, Astrophysical Techniques, IoP, Table 1.1.2).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dark noise</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Date"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">date</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">datum</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shake"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Tropical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attoseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">as</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centisecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centiseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cs</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decaseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">das</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decisecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">deciseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ds</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exaseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Es</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtoseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fs</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigaseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gs</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectoseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hs</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kiloseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ks</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megaseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ms</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microsecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μs</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millisecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milliseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ms</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanoseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ns</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petaseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ps</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picoseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ps</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teraseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ts</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Time is a base quantity in the International System of Units and other systems of units. It is measured by numbers of repetitions of cyclical events.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">time</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">tijd</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">时间</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx268"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx862"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shake"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Tropical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DecelerationParameter"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">deceleration parameter</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1797"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">q</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Declination"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance on the celestial sphere north or south of the celestial equator. It is measured along the hour circle passing through the celestial object. Declination is usually given in combination with right ascension or hour angle.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">declination</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">declinatie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">δ</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dec</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attogramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Attogram per litre is a unit of density defined as attogram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attogram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attogram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ag/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ag l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ag·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centigramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Centigram per litre is a unit of density defined as centigram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centigram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centigram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centigram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decagramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Decagram per litre is a unit of density defined as decagram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decagram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decagram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decagram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dag/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dag l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dag·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decigramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Decigram per litre is a unit of density defined as decigram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decigram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decigram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decigram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exagramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Exagram per litre is a unit of density defined as exagram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exagram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exagram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exagram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Femtogram per litre is a unit of density defined as femtogram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtogram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtogram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gigagram per litre is a unit of density defined as gigagram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigagram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigagram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerAttolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per attolitre is a unit of density defined as gram divided by attolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per attolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per attoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/al</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g al-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·al-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCentilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per centilitre is a unit of density defined as gram divided by centilitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per centilitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per centiliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/cl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g cl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·cl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerDecalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per decalitre is a unit of density defined as gram divided by decalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per decalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per decaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/dal</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g dal-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·dal-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerDecilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per decilitre is a unit of density defined as gram divided by decilitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per decilitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per deciliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/dl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g dl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·dl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerExalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per exalitre is a unit of density defined as gram divided by exalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per exalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per exaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/El</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g El-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·El-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerFemtolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per femtolitre is a unit of density defined as gram divided by femtolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per femtolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per femtoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/fl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g fl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·fl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGigalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per gigalitre is a unit of density defined as gram divided by gigalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per gigalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per gigaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/Gl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g Gl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·Gl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerHectolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per hectolitre is a unit of density defined as gram divided by hectolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per hectolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per hectoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/hl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g hl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·hl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerKilolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per kilolitre is a unit of density defined as gram divided by kilolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per kilolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per kiloliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/kl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g kl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·kl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerMegalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per megalitre is a unit of density defined as gram divided by megalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per megalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per megaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/Ml</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g Ml-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·Ml-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerMicrolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per microlitre is a unit of density defined as gram divided by microlitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per microlitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per microliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microlitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/μl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g μl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·μl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerMillilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per millilitre is a unit of density defined as gram divided by millilitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per millilitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per milliliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/ml</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g ml-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·ml-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerNanolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per nanolitre is a unit of density defined as gram divided by nanolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per nanolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per nanoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/nl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g nl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·nl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerPetalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per petalitre is a unit of density defined as gram divided by petalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per petalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per petaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/Pl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g Pl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·Pl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerPicolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per picolitre is a unit of density defined as gram divided by picolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per picolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per picoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/pl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g pl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·pl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerTeralitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per teralitre is a unit of density defined as gram divided by teralitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per teralitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per teraliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teralitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/Tl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g Tl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·Tl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Hectogram per litre is a unit of density defined as hectogram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectogram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectogram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kilogram per litre is a unit of density defined as kilogram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megagramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Megagram per litre is a unit of density defined as megagram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megagram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megagram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megagram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microgramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Microgram per litre is a unit of density defined as microgram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microgram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microgram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Milligram per litre is a unit of density defined as milligram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milligram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milligram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Nanogram per litre is a unit of density defined as nanogram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanogram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanogram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ng/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ng l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ng·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petagramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Petagram per litre is a unit of density defined as petagram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petagram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petagram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petagram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picogramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Picogram per litre is a unit of density defined as picogram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picogram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picogram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teragramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Teragram per litre is a unit of density defined as teragram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teragram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teragram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teragram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameter"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Ratio of the average density and the critical density.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">density parameter</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1801"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1803"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameterForBaryonicMatter"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The density parameter for baryonic (oridnary) matter.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">density parameter for baryonic matter</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameter"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω_B</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameterForMatter"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The density parameter for matter (either baryonic or dark).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">density parameter for matter</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameter"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω_M</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameterForRadiation"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The density parameter for radiation.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">density parameter for radiation</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameter"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω_R</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameterForVacuum"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The density parameter for vacuum.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">density parameter for vacuum</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameter"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω_Λ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Depth"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">depth</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">diepte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">d</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DetectiveQuantumEfficiency"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Square of ratio between the output signal noise ratio and the input signal noise ratio.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">detective quantum efficiency</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantumEfficiency"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DQE</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantumEfficiency"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Ratio (of a detector such as a CCD) of actual number of detected photons and the number of incident photons.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quantum efficiency</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1773"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1777"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">QE</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Detectivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Reciprocal of Noise equivalent power. The signal-to-noise ratio for incident radiation of unit intensity.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">detectivity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx819"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalWatt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">D</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Diameter"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">diameter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">diameter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">直径</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">d</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Diameter-Angle"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">diameter (angle)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">diameter (hoek)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Dimensions are abstract properties of units and quantities neglecting their vectorial or tensorial character and all numerical factors including their sign.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dimension</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DirectionalDoseEquivalent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">directional dose equivalent</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DoseEquivalent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rem"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasievert"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DisodiumEthyleneDiamineTetreAcetateMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of disodium ethylene diamine tetra acetate in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">disodium ethylene diamine tetra acetate mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">NaEDTA mass fraction</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Displacement"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">displacement</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">verplaatsing</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">d</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Distance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">distance</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">afstand</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">距离</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">d</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DiurnalAberration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The component of the stellar abberation resulting from the diurnal motion of the observer around the centre of the Earth. The abberation is the apparent angular displacement of the observed position of a celestial object from its geometric position, caused by the finite velocity of light in combination with the motions of the observer and of the observed object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">diurnal aberration</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularDisplacement"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DrainageSpeed"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">drainage speed</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Speed"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/knot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerDay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerDay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-StatutePerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-InternationalPerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Attometre per second is a unit of speed defined as attometre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attometre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attometer per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">am/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">am s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">am·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Centimetre per second is a unit of speed defined as centimetre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Decametre per second is a unit of speed defined as decametre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decametre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decameter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dam/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dam s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dam·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Decimetre per second is a unit of speed defined as decimetre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decimetre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decimeter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Exametre per second is a unit of speed defined as exametre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exametre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exameter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Em/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Em s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Em·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Femtometre per second is a unit of speed defined as femtometre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtometre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtometer per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gigametre per second is a unit of speed defined as gigametre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigametre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigameter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Hectometre per second is a unit of speed defined as hectometre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectometre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectometer per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kilometre per second is a unit of speed defined as kilometre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilometre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilometer per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Megametre per second is a unit of speed defined as megametre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megametre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megameter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per attosecond is a unit of speed defined as metre divided by attosecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per attosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per attoseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/as</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m as-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·as-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per centisecond is a unit of speed defined as metre divided by centisecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per centisecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per centiseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/cs</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m cs-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·cs-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per decasecond is a unit of speed defined as metre divided by decasecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per decasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per decaseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/das</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m das-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·das-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per decisecond is a unit of speed defined as metre divided by decisecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per decisecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per deciseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ds</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ds-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ds-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per exasecond is a unit of speed defined as metre divided by exasecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per exasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per exaseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Es</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Es-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Es-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per femtosecond is a unit of speed defined as metre divided by femtosecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per femtosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per femtoseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/fs</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m fs-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·fs-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per gigasecond is a unit of speed defined as metre divided by gigasecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per gigasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per gigaseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Gs</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Gs-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Gs-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per hectosecond is a unit of speed defined as metre divided by hectosecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per hectosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per hectoseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/hs</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m hs-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·hs-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per kilosecond is a unit of speed defined as metre divided by kilosecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per kilosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per kiloseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ks</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ks-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ks-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per megasecond is a unit of speed defined as metre divided by megasecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per megasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per megaseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Ms</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Ms-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Ms-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per microsecond is a unit of speed defined as metre divided by microsecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per microsecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per microseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/μs</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m μs-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·μs-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per millisecond is a unit of speed defined as metre divided by millisecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per millisecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per milliseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ms</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ms-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ms-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per nanosecond is a unit of speed defined as metre divided by nanosecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per nanosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per nanoseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ns</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ns-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ns-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per petasecond is a unit of speed defined as metre divided by petasecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per petasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per petaseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Ps</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Ps-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Ps-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per picosecond is a unit of speed defined as metre divided by picosecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per picosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per picoseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ps</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ps-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ps-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per terasecond is a unit of speed defined as metre divided by terasecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per terasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per teraseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Ts</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Ts-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Ts-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Micrometre per second is a unit of speed defined as micrometre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micrometre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micrometer per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Millimetre per second is a unit of speed defined as millimetre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimetre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimeter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Nanometre per second is a unit of speed defined as nanometre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanometre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanometer per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Petametre per second is a unit of speed defined as petametre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petametre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petameter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Picometre per second is a unit of speed defined as picometre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picometre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picometer per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Terametre per second is a unit of speed defined as terametre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terametre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terameter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Speed"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Speed is the time rate of motion measured by the distance moved over in unit time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">speed</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">snelheid (scalair)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">速度</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx516"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx871"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/knot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerDay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerDay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-StatutePerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-InternationalPerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">v</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">u</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DryBodyMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dry body mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DryMass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dry body weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DryMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dry mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dry weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DryMatterMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of dry matter in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dry matter mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Duration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">duration</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">duur</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shake"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Tropical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicRange"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Ratio between the saturation output and the dark signal, sometimes only over the region of linearity.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dynamic range</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1771"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1775"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicViscosity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Viscosity is the definite resistance to change of form of many materials.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">dynamic viscosity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">dynamische viscositeit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx736"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx881"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poise"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascalSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipoise"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μ</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">η</alternativeSymbol> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">viscosity</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centipoise"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centipoise</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centipoise</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poise"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dynamicViscosity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cP</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Eccentricity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A measure of the deviation from a circle for an orbit.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">eccentricity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">eccentriciteit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantityOfDimensionOne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">e</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/EclipticLatitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance on the celestial sphere north or south of the ecliptic (the path of the Sun on the celestial sphere during one year). It is measured along the great circle passing through the object and the ecliptic poles and perpendicular to the ecliptic.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ecliptic latitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/chapter13_Astronomical_Algorithms"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">β</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/chapter13_Astronomical_Algorithms"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Chapter"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Transformation of Coordinates</title> - <chapter xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</chapter> - <pageEnd xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</pageEnd> - <pageStart xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">92</pageStart> - <reproducedIn xmlns="http://purl.org/ontology/bibo/" rdf:resource="urn:isbn:0943396611"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/EclipticLongitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance on the celestial sphere measured clockwise from the vernal equinox along the ecliptic (the path of the Sun on the celestial sphere during one year) to the intersection with the great circle drawn from the ecliptical north pole through the object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ecliptic longitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/chapter13_Astronomical_Algorithms"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">λ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/EggMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of egg in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">egg mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElasticityTensor"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">elasticity tensor</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">elasticiteitstensor</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicModulus"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">c_ijkl</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">stiffness tensor</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCharge"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Electric charge is a conserved property of some subatomic particles, which determines their electromagnetic interaction. It is a derived quantity in the International System of Units. Electric charge is electric current times time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric charge</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">electrische lading</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1084"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1282"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abcoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/faraday"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/franklin"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statcoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeAmpere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attocoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centicoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decacoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decicoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exacoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtocoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigacoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectocoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megacoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microcoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millicoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanocoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petacoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picocoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teracoulomb"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Q</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">quantity of electricity</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">lading</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">q</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attocoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attocoulomb is a unit of electric charge defined as 1.0e-18 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attocoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attocoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centicoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centicoulomb is a unit of electric charge defined as 1.0e-2 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centicoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centicoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decacoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decacoulomb is a unit of electric charge defined as 1.0e1 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decacoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decacoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decicoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decicoulomb is a unit of electric charge defined as 1.0e-1 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decicoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decicoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exacoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exacoulomb is a unit of electric charge defined as 1.0e18 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exacoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exacoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtocoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtocoulomb is a unit of electric charge defined as 1.0e-15 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtocoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtocoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigacoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigacoulomb is a unit of electric charge defined as 1.0e9 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigacoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigacoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectocoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectocoulomb is a unit of electric charge defined as 1.0e2 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectocoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectocoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilocoulomb is a unit of electric charge defined as 1.0e3 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilocoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilocoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megacoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megacoulomb is a unit of electric charge defined as 1.0e6 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megacoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megacoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microcoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microcoulomb is a unit of electric charge defined as 1.0e-6 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microcoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microcoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millicoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millicoulomb is a unit of electric charge defined as 1.0e-3 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millicoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millicoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanocoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanocoulomb is a unit of electric charge defined as 1.0e-9 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanocoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanocoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petacoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petacoulomb is a unit of electric charge defined as 1.0e15 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petacoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petacoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picocoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picocoulomb is a unit of electric charge defined as 1.0e-12 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picocoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picocoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teracoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The teracoulomb is a unit of electric charge defined as 1.0e12 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teracoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teracoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricChargeDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Electric charge density is the amount of electric charge in a volume. It is a derived quantity in the International System of Units. Electric charge density is electric charge divided by volume.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric charge density</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1179"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1288"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerCubicmetre"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">charge density</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Electric current is the flow of electric charge. It is a base quantity in the International System of Units. Electric current is electric charge divided by time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric current</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1057"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1279"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/biot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decaampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exaampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petaampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teraampere"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">current</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">i</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attoampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attoampere is a unit of electric current defined as 1.0e-18 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attoampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attoampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centiampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centiampere is a unit of electric current defined as 1.0e-2 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centiampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centiampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decaampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decaampere is a unit of electric current defined as 1.0e1 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decaampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decaampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/deciampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The deciampere is a unit of electric current defined as 1.0e-1 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">deciampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">deciampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exaampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exaampere is a unit of electric current defined as 1.0e18 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exaampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exaampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtoampere is a unit of electric current defined as 1.0e-15 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtoampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtoampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigaampere is a unit of electric current defined as 1.0e9 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigaampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigaampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectoampere is a unit of electric current defined as 1.0e2 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectoampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectoampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kiloampere is a unit of electric current defined as 1.0e3 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kiloampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kiloampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megaampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megaampere is a unit of electric current defined as 1.0e6 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megaampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megaampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microampere is a unit of electric current defined as 1.0e-6 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milliampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The milliampere is a unit of electric current defined as 1.0e-3 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milliampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milliampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanoampere is a unit of electric current defined as 1.0e-9 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanoampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanoampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petaampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petaampere is a unit of electric current defined as 1.0e15 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petaampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petaampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picoampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picoampere is a unit of electric current defined as 1.0e-12 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picoampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picoampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teraampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The teraampere is a unit of electric current defined as 1.0e12 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teraampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teraampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricDipoleMoment"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Electric dipole moment is a measure of the polarity of a system of electric charges.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric dipole moment</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1265"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1297"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/debye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">p</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricField"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Electric field is a property of the space surrounding an electric charge or in the presence of a time-varying magnetic field which exerts a forceon other electrically charged objects.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric field</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">electrisch veld</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1175"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1287"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerCoulomb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">electric field strength</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricFluxDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric flux density</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1183"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1289"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotential"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Electric potential is the potential energy per unit charge associated with static (time-invariant) electric field.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electric potential</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">electrische potentiaal</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1103"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1283"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerAmpere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centivolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decivolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teravolt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">voltage</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">voltage</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">φ</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attovolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attovolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attovolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centivolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centivolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centivolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decavolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decavolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decavolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decivolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decivolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decivolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exavolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exavolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exavolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtovolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtovolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtovolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigavolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigavolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigavolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectovolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectovolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectovolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilovolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilovolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilovolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megavolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megavolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megavolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microvolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microvolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microvolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millivolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millivolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanovolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanovolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanovolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petavolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petavolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petavolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picovolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picovolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picovolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teravolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teravolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teravolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Electrical conductance is a measure of how easily electricity flows along a certain path through an electrical element.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical conductance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1161"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1286"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abmho"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mho"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statmho"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerVolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosiemens"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasiemens"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">G</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">conductance</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">electric conductance</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attosiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attosiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attosiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centisiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centisiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centisiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decasiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decasiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decasiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decisiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decisiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decisiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exasiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exasiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exasiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ES</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtosiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtosiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigasiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigasiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectosiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectosiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilosiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilosiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megasiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megasiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megasiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microsiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microsiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microsiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millisiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millisiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millisiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanosiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanosiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petasiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petasiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petasiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picosiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picosiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picosiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terasiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terasiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terasiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical conductivity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1277"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1300"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemensPerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Electrical resistance is the degree to which an object opposes an electric current through it. It is a derived quantity in the International System of Units. Electrical resistance is electric potential divided by electric current.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical resistance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1141"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1285"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerAmpere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decaohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exaohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petaohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoohm"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teraohm"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">R</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">resistance</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">electric resistance</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attoohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attoohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attoohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centiohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centiohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centiohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decaohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decaohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decaohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/deciohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">deciohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">deciohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exaohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exaohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exaohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtoohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtoohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigaohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigaohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectoohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectoohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kΩ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">kiloohm</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MΩ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">megaohm</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milliohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milliohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milliohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanoohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanoohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petaohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petaohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petaohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picoohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picoohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picoohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teraohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teraohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teraohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electrical resistivity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1273"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1299"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohmMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectromotiveForce"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Electromotive force is that which causes a flow of current.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electromotive force</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotential"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerAmpere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centivolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decivolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teravolt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">emf</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectronTemperature"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The temperature determined by the mean kinetic energy of free electrons in a plasma; also known as kinetic temperature.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electron temperature</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperature"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T_e</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">kinetic temperature</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T_k</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Ellipticity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A measure of the amount by which an object, such as a planet or a galaxy, deviates from a perfect sphere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ellipticity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantityOfDimensionOne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">f</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">flattening</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">oblateness</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Energy can be defined as the ability to do work. It is a derived quantity in the International System of Units.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">energy</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">energie</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">能量</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx663"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx874"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-39F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-59F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-60F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-15C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-20C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-EC"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfTNT"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocalorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaerg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microjoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terajoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attojoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attojoule is a unit of energy defined as 1.0e-18 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attojoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attojoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centijoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centijoule is a unit of energy defined as 1.0e-2 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centijoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centijoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decajoule is a unit of energy defined as 1.0e1 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decajoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decajoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decijoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decijoule is a unit of energy defined as 1.0e-1 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decijoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decijoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exajoule is a unit of energy defined as 1.0e18 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exajoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exajoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtojoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtojoule is a unit of energy defined as 1.0e-15 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtojoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtojoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigajoule is a unit of energy defined as 1.0e9 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigajoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigajoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectojoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectojoule is a unit of energy defined as 1.0e2 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectojoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectojoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocalorie-Mean"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilocalorie (mean) is a unit of energy defined as 1.0e3 calorie (mean).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilocalorie (mean)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kcal</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilojoule is a unit of energy defined as 1.0e3 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilojoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilojoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megaerg"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megaerg is a unit of energy defined as 1.0e6 erg.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megaerg</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Merg</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">megalerg</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megajoule is a unit of energy defined as 1.0e6 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megajoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megajoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microjoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microjoule is a unit of energy defined as 1.0e-6 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microjoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microjoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millijoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millijoule is a unit of energy defined as 1.0e-3 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millijoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millijoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanojoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanojoule is a unit of energy defined as 1.0e-9 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanojoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanojoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petajoule is a unit of energy defined as 1.0e15 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petajoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petajoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picojoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picojoule is a unit of energy defined as 1.0e-12 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picojoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picojoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The terajoule is a unit of energy defined as 1.0e12 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terajoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terajoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/EnergyDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Energy density is the amount of energy stored in a given system or region of space per unit volume.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">energy density</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">energiedichtheid</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx778"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx884"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerCubicmetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Enthalpy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Enthalpy is the sum of the internal energy of a system plus the product of the pressure-volume work done on the system.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">enthalpy</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">enthalpie</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">焓</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-39F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-59F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-60F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-15C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-20C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-EC"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfTNT"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocalorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaerg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microjoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terajoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">H</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Entropy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Entropy is a measure of the unavailability of a system’s energy to do work.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">entropy</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">entropie</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">熵单位</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1035"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx948"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Epoch"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">epoch</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Date"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/EpochAtMaximumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A moment when the object (i.e. a variable star) was at maximum brightness.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">epoch at maximum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Epoch"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/EulerNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Euler number is a dimensionless number that expresses the relationship between a local pressure drop e.g. over a restriction and the kinetic energy per unit volume.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Euler number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Euler</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1322"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1324"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eu</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Exposure"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exposure</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1681"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1694"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luxSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ExposureToXAndGammaRays"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exposure to x and γ rays</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1758"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1764"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/röntgen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerKilogram"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">exposure</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">exposure (to x and gamma rays)</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">exposure (to x and γ rays)</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">exposure to x and gamma rays</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ExternalBrowning"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: poster (code).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">external browning</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-5"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ext_brown</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Extinction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Total extinction at a specific wavelength. The extinction is caused by dust and gas between a star and the observer. It is the difference between the observed magnitude and the magnitude the source would have had if no extinction had taken place.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">extinction</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">extinctie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionAtWaveband"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">extinction at waveband</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Extinction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A_X</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionAtWavelength"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">extinction at wavelength</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Extinction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A_λ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionInB"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">extinction in B</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionAtWaveband"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A_B</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionInU"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">extinction in U</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionAtWaveband"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A_U</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionInV"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">extinction in V</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionAtWaveband"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A_V</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitTemperature"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Fahrenheit temperature</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Fahrenheittemperatuur</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1016"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1017"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Temperature"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeFahrenheit"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FatMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of fat in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fat mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Firmness-Penetrometer-Method1"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Stevigheid gemeten met penetrometer methode 1.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">firmness (penetrometer) (method 1)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stevigheid (penetrometer) (methode 1)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerSquareMetre"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_pen_1</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Firmness-Penetrometer-Method2"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Stevigheid gemeten met penetrometer methode 2.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">firmness (penetrometer) (method 2)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stevigheid (penetrometer) (methode 2)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerSquareMetre"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_pen_2</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FirstCowlingNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">first Cowling number</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1327"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1329"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Co_1</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedZeroPoint"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fixed zero point</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FlowpackMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">flowpack mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flowpack weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Fluidity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fluidity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx793"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx887"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rhe"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalPascalSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FontSize"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">font size</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">fontgrootte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1901"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Force"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Force is the extent to which an object with mass can be caused to accelerate. It is a derived quantity in the International System of Units. Force is mass times acceleration.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">force</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kracht</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">力</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx556"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx872"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dyne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kip"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pound-Force"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Force-Short"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giganewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/meganewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/piconewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teranewton"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">F</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attonewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attonewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attonewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centinewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centinewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centinewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decanewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decanewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decanewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decinewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decinewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decinewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exanewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exanewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exanewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtonewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtonewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtonewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/giganewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">giganewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">giganewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectonewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectonewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectonewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilonewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilonewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilonewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/meganewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">meganewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meganewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micronewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micronewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millinewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millinewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanonewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanonewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanonewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petanewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petanewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petanewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/piconewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">piconewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">piconewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teranewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teranewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teranewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FourierNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Fourier number is a dimensionless number that characterises heat conduction. It is the ratio of heat conduction rate to rate of thermal energy storage. The Fourier number is a dimensionless time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Fourier number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Fourier</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1332"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1334"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fo</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FourierNumberForMassTransfer"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Fourier number for mass transfer</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1337"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1339"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fo*</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attohertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attohertz is a unit of frequency defined as 1.0e-18 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attohertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attohertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centihertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centihertz is a unit of frequency defined as 1.0e-2 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centihertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centihertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decahertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decahertz is a unit of frequency defined as 1.0e1 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decahertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decahertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decihertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decihertz is a unit of frequency defined as 1.0e-1 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decihertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decihertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exahertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exahertz is a unit of frequency defined as 1.0e18 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exahertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exahertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtohertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtohertz is a unit of frequency defined as 1.0e-15 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtohertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtohertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigahertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigahertz is a unit of frequency defined as 1.0e9 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigahertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigahertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectohertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectohertz is a unit of frequency defined as 1.0e2 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectohertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectohertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilohertz is a unit of frequency defined as 1.0e3 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilohertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilohertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megahertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megahertz is a unit of frequency defined as 1.0e6 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megahertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megahertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microhertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microhertz is a unit of frequency defined as 1.0e-6 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microhertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microhertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millihertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millihertz is a unit of frequency defined as 1.0e-3 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millihertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millihertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanohertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanohertz is a unit of frequency defined as 1.0e-9 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanohertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanohertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petahertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petahertz is a unit of frequency defined as 1.0e15 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petahertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petahertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picohertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picohertz is a unit of frequency defined as 1.0e-12 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picohertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picohertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terahertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The terahertz is a unit of frequency defined as 1.0e12 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terahertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terahertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">THz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/unofficialAbbreviation"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Used to specify abbreviations that are used in e.g. every day speech but are not defined in any standard.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">unofficial abbreviation</label> - <subPropertyOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2004/02/skos/core#hiddenLabel"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">has unofficial abbreviation</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Friction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Friction is a force that resists the relative motion of solid surfaces, fluid layers, or material elements sliding against each other.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">friction</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">wrijving</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Force"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dyne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kip"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pound-Force"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Force-Short"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giganewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/meganewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/piconewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teranewton"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/FroudeNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Froude number is a dimensionless number that compares inertial and gravitational forces. It may be used to quantify the resistance of an object moving through water, and compare objects of different sizes.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Froude number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Froude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1342"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1344"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">function</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GalacticCylindricalPolarAngleCoordinate"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angle from the Galactic centre between the perpendicular projection of the Sun on the Galactic plane and the projection of the object. This is one of the three Galactic Cylindrical Polar Coordinates.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">galactic cylindrical polar angle coordinate</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">φ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GalacticLatitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance on the celestial sphere north or south of the galactic equator. It is measured along the great circle passing through the object and the galactic poles and perpendicular to the galactic equator.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">galactic latitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/chapter13_Astronomical_Algorithms"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">b</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GalacticLongitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance on the celestial sphere measured clockwise from the galactic centre (as defined by the International Astronomical Union (IAU)) along the galactic equator to the intersection with the great circle drawn from the galactic north pole through the object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">galactic longitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/chapter13_Astronomical_Algorithms"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">l</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GasConstant"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gas constant</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gasconstante</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1527"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1574"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinMole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">R</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">universal gas constant</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">universele gasconstante</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GaussianSystemOfUnits"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gaussian system of units</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Gaussische eenhedenstelsel</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">Gaussian CGS system of units</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">mixed CGS system of units</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">symmetrised CGS system of units</alternativeLabel> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Capacitance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCharge"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrent"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotential"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Inductance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticField"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFlux"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxDensity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnetomotiveForce"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gilbert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abcoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statcoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abvolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statvolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abfarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statfarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abmho"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statmho"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/maxwell"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/oersted"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gauss"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stattesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abhenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stathenry"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasBaseQuantity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has base quantity</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasBaseUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has base unit</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDerivedQuantity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has derived quantity</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Inductance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Inductance is that property in an electrical circuit where a change in the current flowing through that circuit induces an electromotive force that opposes the change in current.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">inductance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1241"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1293"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abhenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stathenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerAmpere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centihenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decahenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decihenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exahenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigahenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megahenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microhenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millihenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petahenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terahenry"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticField"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic field</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1208"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1291"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/oersted"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">H</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">magnetic field intensity</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">magnetic field strength</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">magnetizing field</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFlux"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Magnetic flux through any area perpendicular to a magnetic field is the product of the area by the field strength.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic flux</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1194"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1290"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/maxwell"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/unitPole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decaweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exaweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petaweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoweber"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teraweber"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Φ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic flux density</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1220"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1292"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gamma"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gauss"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stattesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligauss"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attotesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centitesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decatesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decitesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exatesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtotesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigatesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectotesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilotesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megatesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microtesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millitesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanotesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petatesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picotesla"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teratesla"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">magnetic field</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">magnetic induction</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnetomotiveForce"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetomotive force</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1059"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1280"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gilbert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decaampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exaampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petaampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoampere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teraampere"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">F</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasDerivedUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has derived unit</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">In order to achieve a coherent, interdependent set of units of measure in the wide variety of units that exist, units are organised in systems of units. A system of units is based on a set of units chosen by convention to be the system’s base units, units that are considered to be mutually independent (i.e., can’t be expressed in terms of each other).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">system of units</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GelatinMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of gelatin in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gelatin mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GeometricalAlbedo"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Ratio between the brightness of an object as seen from the direction of a hypothetical white, diffusely reflecting sphere of the same size and at the same distance.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">geometrical albedo</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Albedo"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">astronomical albedo</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">physical albedo</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GrashofNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Grashof number is a dimensionless number that approximates the ratio of buoyancy to viscous force that acts on a fluid.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Grashof number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Grashof</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1347"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1349"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GrashofNumberForMassTransfer"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Grashof number for mass transfer</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1352"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1354"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gr*</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GravitationalAcceleration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gravitational acceleration</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">valversnelling</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Acceleration"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">acceleration of free fall</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">gravitatieveldsterkte</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">zwaarteveldsterkte</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/GuarGumMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of guar gum in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">guar gum mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Half-Life"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">half-life</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shake"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Tropical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t_½</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T_½</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t_1/2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">τ_½</alternativeSymbol> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\Halflife</LaTeXCommand> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T_{\frac{1}{2}}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HartmannNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Hartmann number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Hartmann</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1357"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1359"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ha</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Heat"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Heat is any flow of energy from one body or system to another due to a difference in temperature.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">heat</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">warmte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-39F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-59F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-60F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-15C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-20C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-EC"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfTNT"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocalorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaerg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microjoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terajoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Q</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">quantity of heat</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatCapacity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Heat capacity is the heat required to increase the temperature of a system or substance one unit temperature.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">heat capacity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">warmtecapaciteit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">热容量</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1036"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx950"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C_p</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C_v</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatFlowRate"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">heat flow rate</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Power"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Boiler"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-British"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Electric"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Metric"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Water"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarLuminosity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfRefrigeration"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawatt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Φ</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">q</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attowatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attowatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attowatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centiwatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centiwatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centiwatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decawatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decawatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decawatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/deciwatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">deciwatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">deciwatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exawatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exawatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exawatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtowatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtowatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtowatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigawatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigawatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigawatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectowatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectowatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectowatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilowatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilowatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megawatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megawatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megawatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microwatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microwatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microwatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milliwatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milliwatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milliwatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanowatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanowatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanowatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petawatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petawatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petawatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picowatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picowatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picowatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terawatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terawatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terawatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Power"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Power is the time rate at which work is done. It is a derived quantity in the International System of Units. Power is energy divided by time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">power</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vermogen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">功率</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx705"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx877"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Boiler"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-British"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Electric"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Metric"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Water"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarLuminosity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfRefrigeration"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawatt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">P</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatFluxDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">heat flux density</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PowerDensity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PowerDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">power density</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx766"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx883"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatTransferCoefficient"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">heat transfer coefficient</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1042"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx974"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreKelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Height"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">height</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hoogte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">h</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HourAngle"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance on the celestial sphere measured westward along the celestial equator from the meridian to the hour circle that passes through the celestial object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hour angle</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">uurhoek</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-HourAngle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-HourAngle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-HourAngle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">H</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-HourAngle"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Wordt gebruikt als hoek (360°=24) voor o.a. rechte klimming. De h wordt meestal als superscript achter de waarde gezet gevolgd door de verdere opdeling naar minuten en seconden. Zoals in 5h34m12s09. Vaak wordt de fractie in seconden zonder punt geschreven, de s wordt als afscheiding gebruikt (http://en.wikipedia.org/wiki/Right_ascension).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hour (hour angle)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">uur (uurhoek)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">h</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">15</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-HourAngle"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Wordt gebruikt als hoek (360°=1440) voor o.a. rechte klimming. De m wordt meestal als superscript achter de waarde gezet gevolgd door de verdere opdeling naar seconden. Zoals in 5h34m12s09. Vaak wordt de fractie in seconden zonder punt geschreven, de s wordt als afscheiding gebruikt (http://en.wikipedia.org/wiki/Right_ascension).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">minute (hour angle)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">minuut (uurhoek)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">0.25</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/second-HourAngle"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Wordt gebruikt als hoek (360°=864000) voor o.a. rechte klimming. De s wordt meestal als superscript achter de waarde gezet. Zoals in 5h34m12s09. Vaak wordt de fractie in seconden zonder punt geschreven, de s wordt als afscheiding gebruikt (http://en.wikipedia.org/wiki/Right_ascension).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">second (hour angle)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">seconde (uurhoek)</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">4.1666667e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HubbleConstant"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Hubble constant (NOT a constant over time).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Hubble constant</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">constante van Hubble</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1807"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-TimePerMegaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimePerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/HubbleConstantAtPresentEpoch"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Hubble constant at the present epoch (a constant).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Hubble constant at present epoch</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">constante van Hubble tijdens het huidige epoch</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HubbleConstant"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-TimePerMegaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimePerMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">H_0</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Hydrophilicity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hydrophilicity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hydrofiliciteit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Hydrophobicity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hydrophobicity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hydrofobiciteit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/IMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">I magnitude in the Cousins photometric system.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">I magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CousinsMagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_I</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Illuminance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Illuminance is the total luminous flux incident on a surface per unit area.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">illuminance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1666"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1693"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footcandle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/phot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attolux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decalux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exalux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megalux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microlux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petalux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picolux"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teralux"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Φ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">illumination</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Φ_v</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attolux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attolux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attolux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centilux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centilux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centilux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">clx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decalux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decalux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decalux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dalx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decilux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decilux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decilux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dlx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exalux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exalux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exalux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtolux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtolux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigalux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigalux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Glx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectolux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectolux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hlx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilolux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilolux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">klx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megalux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megalux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megalux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mlx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microlux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microlux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microlux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μlx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millilux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millilux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millilux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mlx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanolux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanolux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nlx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petalux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petalux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petalux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Plx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picolux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picolux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picolux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teralux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teralux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teralux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tlx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Impulse"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Impulse is the integral of a force with respect to time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">impulse</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stoot</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attohenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attohenry is a unit of inductance defined as 1.0e-18 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attohenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attohenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centihenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centihenry is a unit of inductance defined as 1.0e-2 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centihenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centihenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decahenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decahenry is a unit of inductance defined as 1.0e1 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decahenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decahenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decihenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decihenry is a unit of inductance defined as 1.0e-1 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decihenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decihenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exahenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exahenry is a unit of inductance defined as 1.0e18 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exahenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exahenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtohenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtohenry is a unit of inductance defined as 1.0e-15 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtohenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtohenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigahenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigahenry is a unit of inductance defined as 1.0e9 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigahenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigahenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectohenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectohenry is a unit of inductance defined as 1.0e2 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectohenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectohenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilohenry is a unit of inductance defined as 1.0e3 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilohenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilohenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megahenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megahenry is a unit of inductance defined as 1.0e6 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megahenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megahenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microhenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microhenry is a unit of inductance defined as 1.0e-6 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microhenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microhenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millihenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millihenry is a unit of inductance defined as 1.0e-3 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millihenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millihenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanohenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanohenry is a unit of inductance defined as 1.0e-9 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanohenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanohenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petahenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petahenry is a unit of inductance defined as 1.0e15 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petahenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petahenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picohenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picohenry is a unit of inductance defined as 1.0e-12 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picohenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picohenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terahenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The terahenry is a unit of inductance defined as 1.0e12 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terahenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terahenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/InformationCapacity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">information capacity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">informatiecapaciteit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1868"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hartley"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shannon"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exabit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exabyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exbibit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exbibyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gibibit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gibibyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigabit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigabyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kibibit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kibibyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilobit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilobyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mebibit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mebibyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megabit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megabyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pebibit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pebibyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petabit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petabyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tebibit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tebibyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terabit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terabyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yobibit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yobibyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottabit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottabyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zebibit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zebibyte"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettabit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettabyte"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exabit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exabit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exabit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ebit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exabyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">千兆兆字节</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exbibit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exbibit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exbibit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exbi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eibit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exbibyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exbibyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exbibyte</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exbi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EiB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gibibit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gibibit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gibibit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gibi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gibit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gibibyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gibibyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gibibyte</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gibi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GiB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigabit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigabit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigabit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gbit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigabyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigabyte</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kibibit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kibibit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kibibit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kibi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kibit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kibibyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kibibyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kibibyte</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kibi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">KiB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilobit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilobit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilobit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kbit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilobyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilobyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilobyte</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mebibit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mebibit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mebibit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mebi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mibit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mebibyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mebibyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mebibyte</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mebi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MiB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megabit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megabit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megabit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mbit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megabyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">百万字节</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pebibit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pebibit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">pebibit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pebi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pibit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pebibyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pebibyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">pebibyte</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pebi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PiB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petabit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petabit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petabit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pbit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petabyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^15字节</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tebibit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">tebibit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">tebibit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tebi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tibit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tebibyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">tebibyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">tebibyte</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tebi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TiB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terabit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terabit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terabit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tbit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terabyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^12字节</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yobibit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yobibit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yobibit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yobi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yibit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yobibyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yobibyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yobibyte</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yobi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YiB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottabit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottabit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottabit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ybit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottabyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^24字节</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zebibit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zebibit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zebibit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zebi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zibit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zebibyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zebibyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zebibyte</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zebi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZiB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettabit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettabit</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettabit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zbit</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettabyte"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettabyte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^21字节</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/InitialMassFunction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The number of stars in mass fraction dM around mass M. Used in Salpeter's Initial Mass Function (IMF).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">initial mass function</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberDensity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicParsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IMF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberDensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number density</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx410"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx864"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicParsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">n</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/IntegratedMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The apparent magnitude that an extended object, such as a nebula or galaxy, would have if all its light were concentrated at a starlike point.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">integrated magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/InternalEnergy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The internal energy of a thermodynamic system, or a body with well-defined boundaries is the total of the kinetic energy due to the motion of molecules (translational, rotational, vibrational) and the potential energy associated with the vibrational and electric energy of atoms within molecules or crystals.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">internal energy</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">inwendige energie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-39F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-59F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-60F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-15C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-20C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-EC"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfTNT"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocalorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaerg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microjoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terajoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">U</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/InternationalSystemOfUnits"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">International System of Units</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Internationale Stelsel van Eenheden</label> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstance"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperature"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrent"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousIntensity"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDose"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDoseRate"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Acceleration"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Action"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Activity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DoseEquivalent"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularAcceleration"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularMomentum"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SolidAngle"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularSpeed"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Area"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Capacitance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CatalyticActivity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Frequency"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Density"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CurrentDensity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Speed"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicViscosity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCharge"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotential"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductivity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistivity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Exposure"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Force"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Inductance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFlux"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxDensity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnetomotiveForce"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatCapacity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Power"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Illuminance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Irradiance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Luminance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousEfficacy"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousEnergy"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousFlux"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarHeatCapacity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarMass"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Momentum"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PermeabilityOfFreeSpace"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Permittivity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Pressure"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificHeatCapacity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificVolume"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SurfaceTension"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Torque"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Volume"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Wavenumber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerSquareMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerCubicmetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerSquareMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henryPerMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/faradPerMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerCubicmetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerMole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinMole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoulePerHectogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerKilogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/grayPerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCubicmetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerCubicmetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerCubicCentimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgramPerCubicCentimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerCubicmetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerCubicDecimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerKilogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radianPerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radianPerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascalSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreSteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerCubicmetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinKilogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerMetreKelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attogray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centigray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decagray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decigray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exagray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megagray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petagray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picogray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teragray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attobecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centibecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decabecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exabecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtobecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigabecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectobecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilobecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megabecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanobecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petabecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picobecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terabecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attomole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decamole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/examole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megamole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petamole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picomole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teramole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareAttometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareCentimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareDecametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareDecimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareExametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareFemtometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareGigametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareHectometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareKilometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMegametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMicrometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMillimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareNanometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squarePetametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squarePicometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareTerametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attofarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centifarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decafarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decifarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exafarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtofarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigafarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectofarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilofarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megafarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microfarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millifarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanofarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petafarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picofarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terafarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attokatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centikatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decakatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decikatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exakatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtokatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigakatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectokatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilokatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megakatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microkatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millikatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petakatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picokatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terakatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attodegreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centidegreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decidegreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtodegreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microdegreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millidegreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanodegreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picodegreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attocoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centicoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decacoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decicoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exacoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtocoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigacoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectocoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megacoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microcoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millicoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanocoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petacoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picocoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teracoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decaampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exaampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petaampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teraampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attovolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centivolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decavolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decivolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exavolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtovolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigavolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectovolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilovolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megavolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microvolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanovolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petavolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picovolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teravolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decaohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exaohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petaohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teraohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attojoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centijoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decajoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decijoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exajoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtojoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectojoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microjoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millijoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanojoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picojoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terajoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attonewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centinewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decanewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decinewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exanewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtonewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giganewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectonewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilonewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/meganewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanonewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petanewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/piconewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teranewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attohertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centihertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decahertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decihertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exahertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtohertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigahertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectohertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megahertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microhertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millihertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanohertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petahertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picohertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terahertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attowatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiwatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decawatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciwatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exawatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtowatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigawatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectowatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megawatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microwatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliwatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanowatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petawatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picowatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attolux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decalux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exalux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megalux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microlux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petalux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picolux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teralux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attohenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centihenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decahenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decihenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exahenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtohenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigahenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectohenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megahenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microhenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millihenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanohenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petahenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picohenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terahenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attocandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attokelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attolumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attotesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centicandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centigram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centikelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centitesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicAttometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicDecametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicDecimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicExametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicFemtometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicGigametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicHectometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicKilometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMegametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMicrometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMillimetre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicNanometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicPetametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicPicometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicTerametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicYoctometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicYottametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicZeptometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicZettametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decacandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decagram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decakelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decalumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decatesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decaweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decicandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decigram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decikelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decitesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exacandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exagram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exakelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exalumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exatesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exaweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtocandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtokelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtotesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigacandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigakelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigatesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectocandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectokelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectotesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilokelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilotesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megacandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megagram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megakelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megalumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megatesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerYoctosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerYoctosecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerYottasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerYottasecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerZeptosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerZeptosecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerZettasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerZettasecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microcandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microkelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microlumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microtesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millicandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millikelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millitesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanocandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanotesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petacandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petagram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petakelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petalumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petatesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petaweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picocandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picokelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picolumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picotesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareYoctometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareYottametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareZeptometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareZettametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teracandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teragram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terakelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teralumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teratesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teraweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctoampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctobecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctocandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctocoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctodegreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctofarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctogray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctohenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctohertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctojoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctokatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctokelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctolumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctolux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctomole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctonewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctoohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctopascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctoradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctotesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctovolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctowatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctoweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottaampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottabecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottacandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottacoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottafarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottagram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottagray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottahenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottahertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottajoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottakatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottakelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottalumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottalux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottamole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottanewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottaohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottapascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottasiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottasievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottatesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottavolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottawatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottaweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptoampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptobecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptocandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptocoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptodegreeCelsius"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptofarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptogram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptogray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptohenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptohertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptojoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptokatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptokelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptolumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptolux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptomole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptonewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptoohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptopascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptoradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosteradian"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptotesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptovolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptowatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptoweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettaampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettabecquerel"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettacandela"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettacoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettafarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettagram"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettagray"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettahenry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettahertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettajoule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettakatal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettakelvin"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettalumen"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettalux"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametre"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametrePerSecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametrePerSecond-TimeSquared"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettamole"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettanewton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettaohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettapascal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettasecond-Time"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettasiemens"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettasievert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettatesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettavolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettawatt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettaweber"/> - <abbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SI</abbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/abbreviation"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">abbreviation</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">has abbreviation</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousIntensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Luminous intensity is the wavelength-weighted power emitted by a light source in a particular direction per unit solid angle. It is a base quantity in the International System of Units. Luminous intensity is luminous flux divided by solid angle.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous intensity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lichtsterkte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1616"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1689"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attocandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centicandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decacandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decicandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exacandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtocandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigacandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectocandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megacandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microcandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millicandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanocandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petacandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picocandela"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teracandela"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I_v</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Irradiance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Irradiance is the power of electromagnetic radiation at a surface per unit area.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">irradiance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PowerDensity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E_e</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Luminance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Luminous flux is the total visible energy emitted by a source per unit time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1633"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1690"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footlambert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lambert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stilb"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareCentimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">L</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">L_v</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousEfficacy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous efficacy</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1687"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1695"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenPerWatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousEnergy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous energy</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1656"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1691"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">F</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousFlux"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Luminous flux is the total visible energy emitted by a source per unit time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous flux</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1641"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1692"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaSteradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attolumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decalumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exalumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megalumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microlumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petalumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picolumen"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teralumen"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">F</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarHeatCapacity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar heat capacity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">molaire warmtecapaciteit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1525"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1573"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar mass</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">molaire massa</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1535"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerMole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Momentum"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Momentum is the product of mass and velocity of an object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">momentum</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">impuls</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx797"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">p</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">linear momentum</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PermeabilityOfFreeSpace"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permeability of free space</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1256"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1295"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henryPerMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">vacuum permeability</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Permittivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permittivity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1260"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1296"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/faradPerMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ε</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Pressure"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Pressure is the force applied to or distributed over a surface. It is a derived quantity in the International System of Units. Pressure is force divided by area.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pressure</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">druk</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">压力</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx603"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx873"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">p</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">P</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificHeatCapacity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific heat capacity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">soortelijke warmte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1038"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx958"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinKilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">c_p</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">specifieke warmte</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">specifieke warmtecapaciteit</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">c_v</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificVolume"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Specific volume is volume per unit mass.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific volume</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">soortelijk volume</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx499"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx870"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerKilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">v</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">concentration (v/w)</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">specifiek volume</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SurfaceTension"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Surface tension is an attractive property of the surface of a liquid.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">surface tension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">oppervlaktespanning</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1309"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx809"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">γ</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">σ</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Torque"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Torque is the effectiveness of a force to produce rotation about an axis, measured by the product of the force and the perpendicular distance from the line of action of the force to the axis.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">torque</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">koppel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">扭矩</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx626"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx875"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Volume"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Volume is a measure of how much three-dimensional space any phenomenon occupies. It is a derived quantity in the International System of Units. Volume is length to the power 3.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volume</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">volume</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">体积</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx175"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx241"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acreFoot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barrel-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bushel-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cord"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cup-USCustomary"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dryGallon-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dryPint-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dryQuart-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidOunce-Imperial"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidOunce-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gallon-Imperial"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gallon-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gill-Imperial"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gill-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/liquidPint-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/liquidQuart-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peck-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pint-Imperial"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quart-Imperial"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tablespoon-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teaspoon-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dessertspoon"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Register"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicParsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicKiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicAttometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicDecametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicDecimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicExametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicFemtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicGigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicHectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicKilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMegametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMicrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMillimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicNanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicPetametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicPicometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicTerametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microlitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petalitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picolitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teralitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">inhoud</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">v</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Wavenumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Wavenumber is the number of repeating units of a propagating wave (the number of times a wave has the same phase) per unit of space.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">wavenumber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">golfgetal</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx415"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx866"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kayser"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">σ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attocandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attocandela is a unit of luminous intensity defined as 1.0e-18 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attocandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attocandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attogram is a unit of mass defined as 1.0e-18 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attogram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ag</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attokelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The attokelvin is a unit of temperature defined as 1.0e-18 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attokelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attokelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attolumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attolumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attolumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attosteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attosteradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attosteradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">asr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attotesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attotesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attotesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attoweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attoweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attoweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centicandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centicandela is a unit of luminous intensity defined as 1.0e-2 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centicandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centicandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ccd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centigram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centigram is a unit of mass defined as 1.0e-2 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centigram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centigram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">百分之一克</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centikelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centikelvin is a unit of temperature defined as 1.0e-2 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centikelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centikelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centilumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centilumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centilumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">clm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centisteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centisteradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centisteradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">csr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centitesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centitesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centitesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centiweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centiweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centiweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicAttometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic attometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke attometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">am3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke centimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicDecametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic decametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke decameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dam3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicDecimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic decimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke decimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicExametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic exametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke exameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Em3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicFemtometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic femtometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke femtometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicGigametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic gigametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke gigameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicHectometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic hectometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke hectometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicKilometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic kilometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke kilometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">km3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMegametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic megametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke megameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMicrometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic micrometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke micrometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMillimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic millimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke millimeter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicNanometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic nanometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke nanometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicPetametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic petametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke petameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicPicometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic picometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke picometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicTerametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic terametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke terameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicYoctometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic yoctometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke yoctometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ym3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicYottametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic yottametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke yottameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ym3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicZeptometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic zeptometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke zeptometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicZettametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CubicPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic zettametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kubieke zettameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zm3</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decacandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decacandela is a unit of luminous intensity defined as 1.0e1 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decacandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decacandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dacd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decagram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decagram is a unit of mass defined as 1.0e1 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decagram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decagram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dag</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decakelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decakelvin is a unit of thermodynamic temperature defined as 1.0e1 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decakelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decakelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decalumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decalumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decalumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dalm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decatesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decatesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decatesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decaweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decaweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decaweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decicandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decicandela is a unit of luminous intensity defined as 1.0e-1 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decicandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decicandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decigram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decigram is a unit of mass defined as 1.0e-1 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decigram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decigram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">十分之一克</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decikelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decikelvin is a unit of temperature defined as 1.0e-1 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decikelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decikelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decilumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decilumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decilumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dlm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decisteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decisteradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decisteradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dsr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decitesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decitesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decitesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/deciweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">deciweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">deciweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exacandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exacandela is a unit of luminous intensity defined as 1.0e18 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exacandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exacandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ecd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exagram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exagram is a unit of mass defined as 1.0e18 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exagram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exagram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">千兆兆克</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exakelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The exakelvin is a unit of thermodynamic temperature defined as 1.0e18 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exakelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exakelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exalumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exalumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exalumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exatesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exatesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exatesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ET</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exaweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exaweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exaweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtocandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtocandela is a unit of luminous intensity defined as 1.0e-15 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtocandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtocandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtogram is a unit of mass defined as 1.0e-15 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtogram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtokelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The femtokelvin is a unit of temperature defined as 1.0e-15 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtokelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtokelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtolumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtolumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtosteradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtosteradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fsr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtotesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtotesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtotesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtoweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtoweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigacandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigacandela is a unit of luminous intensity defined as 1.0e9 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigacandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigacandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigagram is a unit of mass defined as 1.0e9 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigagram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigagram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigakelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigakelvin is a unit of thermodynamic temperature defined as 1.0e9 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigakelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigakelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigalumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigalumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Glm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigatesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigatesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigatesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigaweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigaweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectocandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectocandela is a unit of luminous intensity defined as 1.0e2 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectocandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectocandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectogram is a unit of mass defined as 1.0e2 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectogram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hg</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">100 gram</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectokelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectokelvin is a unit of thermodynamic temperature defined as 1.0e2 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectokelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectokelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectolumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectolumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hlm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectotesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectotesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectotesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectoweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectoweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilocandela is a unit of luminous intensity defined as 1.0e3 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilocandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilocandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilokelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilokelvin is a unit of thermodynamic temperature defined as 1.0e3 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilokelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilokelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilolumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilolumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">klm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilotesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilotesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilotesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kiloweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kiloweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megacandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megacandela is a unit of luminous intensity defined as 1.0e6 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megacandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megacandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megagram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megagram is a unit of mass defined as 1.0e6 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megagram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megagram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megakelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The megakelvin is a unit of thermodynamic temperature defined as 1.0e6 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megakelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megakelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megalumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megalumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megalumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mlm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megatesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megatesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megatesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megaweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megaweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megaweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerYoctosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per yoctosecond is a unit of speed defined as metre divided by yoctosecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per yoctosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per yoctoseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ys</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ys-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ys-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerYoctosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per yoctosecond squared is a unit of acceleration defined as metre divided by yoctosecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per yoctosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per yoctoseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/ys2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m ys-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·ys-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerYottasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per yottasecond is a unit of speed defined as metre divided by yottasecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per yottasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per yottaseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Ys</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Ys-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Ys-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerYottasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per yottasecond squared is a unit of acceleration defined as metre divided by yottasecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per yottasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per yottaseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottasecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Ys2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Ys-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Ys-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerZeptosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per zeptosecond is a unit of speed defined as metre divided by zeptosecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per zeptosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per zeptoseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/zs</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m zs-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·zs-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerZeptosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per zeptosecond squared is a unit of acceleration defined as metre divided by zeptosecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per zeptosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per zeptoseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/zs2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m zs-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·zs-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerZettasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per zettasecond is a unit of speed defined as metre divided by zettasecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per zettasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per zettaseconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Zs</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Zs-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Zs-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerZettasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MetrePerPrefixedSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Metre per zettasecond squared is a unit of acceleration defined as metre divided by zettasecond squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per zettasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per zettaseconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettasecond-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/Zs2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m Zs-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·Zs-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microcandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microcandela is a unit of luminous intensity defined as 1.0e-6 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microcandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microcandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microgram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microgram is a unit of mass defined as 1.0e-6 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microgram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microgram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">微克</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μg</symbol> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mcg</unofficialAbbreviation> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ug</unofficialAbbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microkelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The microkelvin is a unit of temperature defined as 1.0e-6 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microkelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microkelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microlumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microlumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microlumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μlm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microsteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microsteradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microsteradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μsr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microtesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microtesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microtesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millicandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millicandela is a unit of luminous intensity defined as 1.0e-3 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millicandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millicandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The milligram is a unit of mass defined as 1.0e-3 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milligram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milligram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">毫克</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millikelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The millikelvin is a unit of temperature defined as 1.0e-3 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millikelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millikelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millilumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millilumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millilumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mlm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millisteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millisteradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millisteradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">msr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millitesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millitesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millitesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milliweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milliweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milliweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanocandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanocandela is a unit of luminous intensity defined as 1.0e-9 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanocandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanocandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ncd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanogram is a unit of mass defined as 1.0e-9 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">纳克</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ng</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The nanokelvin is a unit of temperature defined as 1.0e-9 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanokelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanokelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanolumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanolumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nlm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanosteradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanosteradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nsr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanotesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanotesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanotesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanoweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanoweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petacandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petacandela is a unit of luminous intensity defined as 1.0e15 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petacandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petacandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petagram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petagram is a unit of mass defined as 1.0e15 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petagram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petagram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^15克</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petakelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petakelvin is a unit of thermodynamic temperature defined as 1.0e15 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petakelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petakelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petalumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petalumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petalumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Plm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petatesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petatesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petatesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petaweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petaweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petaweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picocandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picocandela is a unit of luminous intensity defined as 1.0e-12 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picocandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picocandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picogram is a unit of mass defined as 1.0e-12 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picogram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picokelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The picokelvin is a unit of temperature defined as 1.0e-12 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picokelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picokelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picolumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picolumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picolumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picosteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picosteradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picosteradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">psr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picotesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picotesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picotesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picoweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picoweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picoweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareYoctometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square yoctometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante yoctometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ym2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareYottametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square yottametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante yottameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ym2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareZeptometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square zeptometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante zeptometer</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareZettametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SquarePrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square zettametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante zettameter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/area-Dimension"/> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametre"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zm2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teracandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The teracandela is a unit of luminous intensity defined as 1.0e12 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teracandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teracandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teragram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The teragram is a unit of mass defined as 1.0e12 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teragram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teragram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^12克</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terakelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The terakelvin is a unit of thermodynamic temperature defined as 1.0e12 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terakelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">terakelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teralumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teralumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teralumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tlm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teratesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teratesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teratesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teraweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teraweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teraweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctoampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctoampere is a unit of electric current defined as 1.0e-24 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctoampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctoampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctobecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctobecquerel is a unit of activity defined as 1.0e-24 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctobecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctobecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctocandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctocandela is a unit of luminous intensity defined as 1.0e-24 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctocandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctocandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ycd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctocoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctocoulomb is a unit of electric charge defined as 1.0e-24 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctocoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctocoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctodegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctodegree Celsius is a unit of temperature defined as 1.0e-24 degree Celsius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctodegree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctograad Celsius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">y°C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctofarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctofarad is a unit of capacitance defined as 1.0e-24 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctofarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctofarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctogram is a unit of mass defined as 1.0e-24 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctogram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctogray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctogray is a unit of absorbed dose defined as 1.0e-24 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctogray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctogray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctohenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctohenry is a unit of inductance defined as 1.0e-24 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctohenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctohenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctohertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctohertz is a unit of frequency defined as 1.0e-24 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctohertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctohertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctojoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctojoule is a unit of energy defined as 1.0e-24 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctojoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctojoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctokatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctokatal is a unit of catalytic activity defined as 1.0e-24 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctokatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctokatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ykat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctokelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctokelvin is a unit of temperature defined as 1.0e-24 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctokelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctokelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctolumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctolumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctolumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ylm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctolux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctolux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctolux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ylx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctometre is a unit of length defined as 1.0e-24 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctometer</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ym</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Yoctometre per second is a unit of speed defined as yoctometre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctometre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctometer per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ym/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ym s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ym·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Yoctometre per second squared is a unit of acceleration defined as yoctometre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctometre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctometer per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ym/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ym s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ym·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctomole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctomole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctomol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ymol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctonewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctonewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctonewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctoohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctoohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctoohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctopascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctopascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctopascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctoradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctoradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctoradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yrad</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctoseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ys</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctosiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctosiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctosievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctosievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ySv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctosteradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctosteradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ysr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctotesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctotesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctotesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctovolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctovolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctovolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctowatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctowatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctowatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctoweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctoweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctoweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottaampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottaampere is a unit of electric current defined as 1.0e24 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottaampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottaampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottabecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottabecquerel is a unit of activity defined as 1.0e24 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottabecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottabecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottacandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottacandela is a unit of luminous intensity defined as 1.0e24 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottacandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottacandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ycd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottacoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottacoulomb is a unit of electric charge defined as 1.0e24 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottacoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottacoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottafarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottafarad is a unit of capacitance defined as 1.0e24 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottafarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottafarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottagram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottagram is a unit of mass defined as 1.0e24 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottagram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottagram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YG</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottagray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottagray is a unit of absorbed dose defined as 1.0e24 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottagray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottagray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottahenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottahenry is a unit of inductance defined as 1.0e24 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottahenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottahenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottahertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottahertz is a unit of frequency defined as 1.0e24 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottahertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottahertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottajoule is a unit of energy defined as 1.0e24 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottajoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottajoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottakatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottakatal is a unit of catalytic activity defined as 1.0e24 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottakatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottakatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ykat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottakelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottakelvin is a unit of thermodynamic temperature defined as 1.0e24 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottakelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottakelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottalumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottalumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottalumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ylm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottalux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottalux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottalux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ylx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottametre is a unit of length defined as 1.0e24 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottameter</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^24米</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ym</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Yottametre per second is a unit of speed defined as yottametre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottametre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottameter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ym/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ym s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ym·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Yottametre per second squared is a unit of acceleration defined as yottametre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottametre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottameter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ym/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ym s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ym·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottamole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottamole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottamol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ymol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottanewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottanewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottanewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottaohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottaohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottaohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottapascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottapascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottapascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottaseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ys</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottasiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottasiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottasiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottasievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottasievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottasievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottatesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottatesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottatesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottavolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottavolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottavolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottawatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottawatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottawatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottaweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottaweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottaweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptoampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptampere is a unit of electric current defined as 1.0e-21 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptoampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptoampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptobecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptbecquerel is a unit of activity defined as 1.0e-21 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptobecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptobecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptocandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptcandela is a unit of luminous intensity defined as 1.0e-21 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptocandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptocandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptocoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptcoulomb is a unit of electric charge defined as 1.0e-21 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptocoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptocoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptodegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptdegree Celsius is a unit of temperature defined as 1.0e-21 degree Celsius.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptodegree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptograad Celsius</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">z°C</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptofarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptfarad is a unit of capacitance defined as 1.0e-21 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptofarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptofarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptgram is a unit of mass defined as 1.0e-21 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptogram</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zg</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptogray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptgray is a unit of absorbed dose defined as 1.0e-21 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptogray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptogray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptohenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zepthenry is a unit of inductance defined as 1.0e-21 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptohenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptohenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptohertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zepthertz is a unit of frequency defined as 1.0e-21 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptohertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptohertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptojoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptjoule is a unit of energy defined as 1.0e-21 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptojoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptojoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptokatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptkatal is a unit of catalytic activity defined as 1.0e-21 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptokatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptokatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptokelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptkelvin is a unit of temperature defined as 1.0e-21 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptokelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptokelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptolumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptolumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptolumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zlm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptolux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptolux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptolux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zlx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptometre is a unit of length defined as 1.0e-21 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptometer</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Zeptometre per second is a unit of speed defined as zeptometre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptometre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptometer per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Zeptometre per second squared is a unit of acceleration defined as zeptometre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptometre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptometer per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptomole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptomole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptomol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptonewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptonewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptonewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptoohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptoohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptoohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptopascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptopascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptopascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptoradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptoradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptoradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zrad</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptosecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptoseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zs</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptosiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptosiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptosievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptosievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptosteradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptosteradiaal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zsr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptotesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptotesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptotesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptovolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptovolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptovolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptowatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptowatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptowatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptoweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptoweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptoweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettaampere"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettaampere is a unit of electric current defined as 1.0e21 ampere.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettaampere</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettaampère</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCurrent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZA</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettabecquerel"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettabecquerel is a unit of activity defined as 1.0e21 becquerel.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettabecquerel</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettabecquerel</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZBq</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettacandela"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettacandela is a unit of luminous intensity defined as 1.0e21 candela.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettacandela</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettacandela</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zcd</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettacoulomb"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettacoulomb is a unit of electric charge defined as 1.0e21 coulomb.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettacoulomb</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettacoulomb</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricCharge-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZC</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettafarad"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettafarad is a unit of capacitance defined as 1.0e21 farad.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettafarad</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettafarad</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/capacitance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZF</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettagram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettagram is a unit of mass defined as 1.0e21 gram.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettagram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettagram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">10^21克</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZG</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettagray"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettagray is a unit of absorbed dose defined as 1.0e21 gray.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettagray</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettagray</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZGy</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettahenry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettahenry is a unit of inductance defined as 1.0e21 henry.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettahenry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettahenry</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inductanceOrPermeance-Electromagnetic-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettahertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettahertz is a unit of frequency defined as 1.0e21 hertz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettahertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettahertz</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/frequency-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZHz</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettajoule is a unit of energy defined as 1.0e21 joule.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettajoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettajoule</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/energy-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZJ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettakatal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettakatal is a unit of catalytic activity defined as 1.0e21 katal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettakatal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettakatal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/catalyticActivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zkat</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettakelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettakelvin is a unit of thermodynamic temperature defined as 1.0e21 kelvin.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettakelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettakelvin</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperature-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZK</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettalumen"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettalumen</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettalumen</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zlm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettalux"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettalux</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettalux</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/illuminance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zlx</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettametre is a unit of length defined as 1.0e21 metre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettameter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametrePerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-Time"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Zettametre per second is a unit of speed defined as zettametre divided by second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettametre per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettameter per seconde</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/speed-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zm/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametrePerSecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePerSecond-TimeSquared"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Zettametre per second squared is a unit of acceleration defined as zettametre divided by second squared.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettametre per second squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettameter per seconde kwadraat</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acceleration-Dmension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zm/s2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zm s-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zm·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettamole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettamole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettamol</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zmol</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettanewton"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettanewton</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettanewton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/force-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZN</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettaohm"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettaohm</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettaohm</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalResistance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZΩ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettapascal"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettapascal</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettapascal</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pressure-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZPa</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettasecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettasecond</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettaseconde</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zs</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettasiemens"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettasiemens</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettasiemens</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricalConductance-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZS</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettasievert"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettasievert</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettasievert</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/specificEnergyOrAbsorbedDoseOrDoseEquivalent-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZSv</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettatesla"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettatesla</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettatesla</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFluxDensity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZT</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettavolt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettavolt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettavolt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electricPotential-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZV</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettawatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettawatt</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettawatt</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/power-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZW</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettaweber"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettaweber</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettaweber</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magneticFlux-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZWb</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/IntrinsicColourIndex"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The colour index a star would have in the absence of interstellar extinction (reddening). It is assumed that all stars of the same spectral type and luminosity class have the same colour index.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">intrinsic colour index</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ColourIndex"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/IonizationTemperature"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The temperature of a gas or plasma derived from the relative numbers of neutral atoms and ions. Specifically, it is the temperature for which the Saha equations would predict these relative numbers, assuming the atoms and ions are in thermodynamic equilibrium.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ionization temperature</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperature"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T_ion</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/JeansMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The critical mass of a molecular cloud, above which it will be unstable to collapse.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Jeans mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_J</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/longcomment"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">longcomment</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">has longcomment</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">long comment</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1234.93OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1234.93 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1234.93</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_13.8033OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">13.8033 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13.8033</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1337.33OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1337.33 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1337.33</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1357.77OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1357.77 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1357.77</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_234.3156OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">234.3156 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">234.3156</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_24.5561OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">24.5561 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24.5561</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_273.16OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">273.16 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">273.16</hasNumericalValue> - <hasQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperatureOfTheTriplePointOfWater"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_302.9146OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">302.9146 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">302.9146</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_3To5OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">3 to 5 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3 to 5</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_429.7485OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">429.7485 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">429.7485</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_505.078OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">505.078 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">505.078</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_54.3584OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">54.3584 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">54.3584</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_692.677OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">692.677 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">692.677</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_83.8058OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">83.8058 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83.8058</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_933.473OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">933.473 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">933.473</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/approximately17OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">~17 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">~17</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/approximately203OnTheKelvinScale"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FixedPoint"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">~20.3 on the Kelvin scale</label> - <hasScale xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KelvinScale"/> - <hasNumericalValue xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">~20.3</hasNumericalValue> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Kerma"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kerma</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDose"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centigray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decigray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teragray"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/KinematicViscosity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kinematic viscosity is the ratio of viscosity to density.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kinematic viscosity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kinematische viscositeit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx753"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx882"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stokes"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centistokes"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ν</symbol> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">viscosity</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centistokes"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centistokes</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centistokes</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stokes"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kinematicViscosityOrThermalDiffusivity-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cSt</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/KineticEnergy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kinetic energy is energy due to motion.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kinetic energy</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kinetische energie</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">动能</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-39F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-59F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-60F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-15C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-20C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-EC"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfTNT"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocalorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaerg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microjoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terajoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E_k</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">bewegingsenergie</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/KnudsenNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Knudsen number is a dimensionless number defined as the ratio of the molecular mean free path length to a representative physical length scale.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Knudsen number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Knudsen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1362"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1364"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kn</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LactoseMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of lactose in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">lactose mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LewisNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Lewis number is a dimensionless number defined as the ratio of thermal diffusivity to mass diffusivity.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Lewis number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Lewis</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1367"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1369"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Le</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LightTime"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The time electromagnetic radiation takes to reach Earth from a distant source. Often the correction in light time is needed to accurately calculate the apparent position of solar system objects or to calculate the period of variable stars (different times are observed when the Earth is at a different position in its orbit).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">light time</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">τ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LimitingMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The magnitude of the faintest object (star) that can be detected by a telescope or other instrument. Depends not only on the telescope but also on the detector and on the observing method.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">limiting magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LinearStrain"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">linear strain</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lineaire vervorming</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Strain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">e</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Strain"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">strain</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vervorming</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1305"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1307"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ε</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">γ</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Lipophilicity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">lipophilicity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">lipofiliciteit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LocustBeanGumMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of locust bean gum in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">locust bean gum mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LossModulus"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">loss modulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicModulus"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E''</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminosityFunction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The number of stars of absolute magnitudes between Mv and Mv+ΔMv per cubic parsec.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminosity function</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberDensity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicParsec"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MachNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Mach number is the speed of an object that moves through air, or any fluid substance, divided by the speed of sound as it is in that substance.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mach number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Machgetal</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1372"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1374"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ma</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasSIAmountOfSubstanceDimensionExponent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has SI amount of substance dimension exponent</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasSIElectricCurrentDimensionExponent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has SI electric current dimension exponent</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasSILengthDimensionExponent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has SI length dimension exponent</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasSILuminousIntensityDimensionExponent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has SI luminous intensity dimension exponent</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasSIMassDimensionExponent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has SI mass dimension exponent</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasSIThermodynamicTemperatureDimensionExponent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has SI thermodynamic temperature dimension exponent</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasSITimeDimensionExponent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has SI time dimension exponent</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Dimension"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticReynoldsNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnetic Reynolds number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">magnetisch getal van Reynolds</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1377"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1379"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Rm</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/IntroAstronomicalPhotometry_chapter_2"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Chapter"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Introduction</title> - <chapter xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</chapter> - <pageEnd xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</pageEnd> - <pageStart xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</pageStart> - <reproducedIn xmlns="http://purl.org/ontology/bibo/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/IntroAstronomicalPhotometry"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ManualFirmness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: code 0 - 5.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">manual firmness</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">manuele stevigheid</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_0-5"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_0-5"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">0-5</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">0-5</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilotonne"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilotonne</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kiloton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kt</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megatonne"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megatonne</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megaton</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mass-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mt</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFlow"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mass flow is the movement of substances at equal rates or as a single body.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mass flow</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx823"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx889"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Metallicity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The log of the ratio between the ratios of the observed Fe and H quantities in a star and the same ratio in the Sun. This is a very important quantity that is often used in astronomy as an indicator of the age of a star.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metallicity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantityOfDimensionOne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ModeratedStarchMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of moderated starch in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">moderated starch mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ModulusOfElasticity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">modulus of elasticity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">elasticiteitsmodulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicModulus"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">Young's modulus</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Y</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Molality"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Molality is the number of moles of solute per kilogram of solvent.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molality</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">molaliteit</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1531"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerKilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">b</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">molality of solution</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarEnergy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar energy</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">molaire energie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1515"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1571"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarEntropy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar entropy</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">molaire entropie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1523"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1572"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarVolume"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">molar volume</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">molair volume</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1540"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerMole"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litrePerMole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V_m</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per prefixed metre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1551"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MomentOfForce"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Moment of force is the effectiveness of a force to produce rotation about an axis measured by the product of the force and the perpendicular distance from the line of action of the force to the axis.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">moment of force</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx628"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx876"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">moment</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MomentOfInertia"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Moment of inertia is a measure of the effectiveness of mass in rotation.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">moment of inertia</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">traagheidsmoment</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx801"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSquareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">massatraagheidsmoment</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/MustardPowderMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of mustard powder in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mustard powder mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NeckRingMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">neck ring mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neck ring weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NoiseEquivalentPower"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Radiative flux on a detector needed for a signal/noise ratio of 1 (Kitchin, Astrophysical Techniques, IoP, Table 1.1.2).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">noise equivalent power</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Power"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NEP</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NormalAlbedo"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Ratio between radiation falling vertically onto an object and the radiation radiated back vertically.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">normal albedo</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Albedo"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NormalStrain"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">normal strain</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">normaalvervorming</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Strain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NormalStress"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">normal stress</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">normaalspanning</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Stress"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NormalisedDetectivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The detectivity normalised by multiplying by the square root of the detector area, and by the electrical bandwidth. The units cm Hz(1/2)/W are commonly used and it then represents the signal-to-noise ratio when 1 W of radiation is incident on a detector with an area of 1 cm2, and the electrical bandwidth is 1 Hz.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">normalised detectivity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">D*</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx245"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx341"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N</symbol> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">#</unofficialAbbreviation> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">no</unofficialAbbreviation> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nr</unofficialAbbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberAbscisedBuds"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal gevallen knoppen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number abscised buds</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal gevallen knoppen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBuds"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#abscised buds</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBuds"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number buds</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal knoppen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberAbscisedFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal gevallen bloemen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number abscised flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal gevallen bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberFlowers"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#abscised flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberAbscisedLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal gevallen bladeren.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number abscised leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal gevallen bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberLeaves"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#abscised leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBlue-DiscoloredFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal blauwverkleurde bloemen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number blue-discolored flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal blauwverkleurde bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberFlowers"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#blue flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number Botrytis</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal Botrytis</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis0"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal bloemen zonder Botrytis.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number Botrytis 0</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal Botrytis 0</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">b0</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis1"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal bloemen met Botrytis 1: enkele laesies: max 3 op één petaal of max 5 op meerdere plekken.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number Botrytis 1</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal Botrytis 1</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">b1</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis2"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal bloemen met Botrytis 2: grotere vlek(ken) op één petaal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number Botrytis 2</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal Botrytis 2</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">b2</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis3"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal bloemen met Botrytis 3: één bruin petaal of vlekken op meer petalen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number Botrytis 3</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal Botrytis 3</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">b3</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis4"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal bloemen met Botrytis 4: minimaal één bruin petaal en hart aangetast.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number Botrytis 4</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal Botrytis 4</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBotrytis"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">b4</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number bud stadium</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal knopstadium</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium1"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Roos aantal in knopstadium 1: spitse knop.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number bud stadium 1</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal knopstadium 1</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">s1</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium2"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Roos aantal in knopstadium 2: spitse knop.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number bud stadium 2</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal knopstadium 2</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">s2</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium3"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Roos aantal in knopstadium 3: spitse knop.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number bud stadium 3</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal knopstadium 3</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">s3</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium4"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Roos aantal in knopstadium 4: spitse knop.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number bud stadium 4</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal knopstadium 4</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">s4</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Roos aantal in knopstadium 5: spitse knop.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number bud stadium 5</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal knopstadium 5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBudStadium"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">s5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number color</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal kleur</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor1"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 1 poster (vrijwel) geheel groen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number color 1</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal kleur 1</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">color_1</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor2"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 2 poster meer groen dan donker.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number color 2</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal kleur 2</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">color_2</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor3"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 3 poster 50% groen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number color 3</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal kleur 3</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">color_3</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor4"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 4 poster meer donker dan groen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number color 4</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal kleur 4</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">color_4</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 5 poster (vrijwel) geheel donker.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number color 5</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal kleur 5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">color_5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberDryBuds"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal verdroogde knoppen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number dry buds</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal verdroogde knoppen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBuds"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#dry buds</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberDryFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal verdroogde bloemen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number dry flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal verdroogde bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberFlowers"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#dry flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberDryLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal verdroogde bladeren.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number dry leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal verdroogde bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberLeaves"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#dry leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberExternalBrowning"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number external browning</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberExternalBrowning1"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 1 poster.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number external browning 1</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ext_brown_1</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberExternalBrowning2"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 2 poster.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number external browning 2</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ext_brown_2</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberExternalBrowning3"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 3 poster.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number external browning 3</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ext_brown_3</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberExternalBrowning4"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 4 poster.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number external browning 4</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ext_brown_4</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberExternalBrowning5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 5 poster.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number external browning 5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">ext_brown_5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberMalformedBuds"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal misvormde knoppen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number malformed buds</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal misvormde knoppen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBuds"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#malformed buds</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberMalformedFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal misvormde bloemen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number malformed flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal misvormde bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberFlowers"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#malformed flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness0"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 0 = steenhard.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 0</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 0</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_0</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness0.5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 0.5 = hard.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 0.5</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 0.5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_0.5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness1"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 1 = zeer stevig.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 1</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 1</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_1</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness1.5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 1.5 = stevig.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 1.5</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 1.5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_1.5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness2"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 2 = halfzacht.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 2</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 2</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_2</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness2.5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 2.5 = eetrijp.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 2.5</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 2.5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_2.5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness3"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 3 = zacht.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 3</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 3</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_3</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness3.5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 3.5 = te zacht.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 3.5</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 3.5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_3.5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness4"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 4 = week.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 4</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 4</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_4</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness4.5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 4.5 = vies.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 4.5</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 4.5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_4.5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Firmness manueel: 5 = zeer vies.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number manual firmness 5</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal manuele stevigheid 5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberManualFirmness"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">firmness_m_5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberNonturgidFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal slappe bloemen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number nonturgid flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal slappe bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberFlowers"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#nonturgid flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberNonturgidLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal slappe bladeren.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number nonturgid leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal slappe bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberLeaves"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#nonturgid leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberPulpBrowning"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number pulp browning</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberPulpBrowning1"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 1 poster pulp browning.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number pulp browning 1</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">pulp_1</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberPulpBrowning2"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 2 poster pulp browning.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number pulp browning 2</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">pulp_2</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberPulpBrowning3"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 3 poster pulp browning.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number pulp browning 3</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">pulp_3</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberPulpBrowning4"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 4 poster pulp browning.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number pulp browning 4</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">pulp_4</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberPulpBrowning5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 5 poster pulp browning.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number pulp browning 5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">pulp_5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberRottenFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal rotte bloemen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number rotten flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal rotte bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberFlowers"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#rotten flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberRottenLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal rotte bladeren.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number rotten leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal rotte bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberLeaves"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#rotten leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberVascularBrowning"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number vascular browning</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Number"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberVascularBrowning1"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 1 poster vascular browning.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number vascular browning 1</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">vascular_1</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberVascularBrowning2"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 2 poster vascular browning.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number vascular browning 2</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">vascular_2</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberVascularBrowning3"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 3 poster vascular browning.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number vascular browning 3</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">vascular_3</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberVascularBrowning4"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 4 poster vascular browning.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number vascular browning 4</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">vascular_4</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberVascularBrowning5"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: code 5 poster vascular browning.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number vascular browning 5</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberColor"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">vascular_5</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberWiltedFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal verwelkte bloemen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number wilted flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal verwelkte bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberFlowers"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#wilted flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberWiltedLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal verwelkte bladeren.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number wilted leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal verwelkte bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberLeaves"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#wilted leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberYellowLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal yellow bladeren.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">number yellow leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">aantal vergeelde bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberLeaves"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#yellow leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NusseltNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Nusselt number is the ratio of convective to conductive heat transfer across (normal to) the boundary.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Nusselt number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Nusselt</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1382"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1384"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Nu</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/NusseltNumberForMassTransfer"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Nusselt number for mass transfer</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1387"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1389"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Nu*</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/OrganDoseEquivalent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">organ dose equivalent</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DoseEquivalent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rem"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasievert"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Overrun"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">overrun</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumeFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetrePerCubicCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerCubicmetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMillimetrePerCubicMillimetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumeFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volume fraction</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">volumefractie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx250"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx379"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetrePerCubicCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerCubicmetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMillimetrePerCubicMillimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">φ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">concentration (v/v)</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PeakWavelength"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Wavelength for which the detectivity is at a maximum.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">peak wavelength</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Wavelength"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">λ_m</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PecletNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Péclet number is a dimensionless number that relates the rate of advection of a flow to its rate of diffusion, often thermal diffusion.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Péclet number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Péclet</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1392"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1394"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pe</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PecletNumberForMassTransfer"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Péclet number for mass transfer</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1397"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1399"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pe*</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Percentage"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">percentage</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx351"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Ratio"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Ratio"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">ratio</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx246"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx347"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Period"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">period</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">periode</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shake"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Tropical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PeriodOfVariability"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The duration of one cycle in a (semi) periodical star.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">period of variability</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shake"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Sidereal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Tropical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">P</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Permeability-EarthScience"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permeability (earth science)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">permeabiliteit (aardwetenschappen)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1809"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1816"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/darcy"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareAttometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareCentimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareDecametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareDecimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareExametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareFemtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareGigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareHectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareKilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMegametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMicrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMillimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareNanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squarePetametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squarePicometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareTerametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">κ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">intrinsic permeability</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">intrinsieke permeabiliteit</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">k</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Permeance-Electromagnetic"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Electromagnetic permeance is a measure of flux for a number of current-turns in magnetic circuit.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permeance (electromagnetic)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1243"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1294"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerAmpere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centihenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decahenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decihenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exahenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigahenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megahenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microhenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millihenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petahenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picohenry"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terahenry"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Λ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">electromagnetic permeance</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Permeance-MaterialsScience"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Permeance is the degree to which a material transmits another substance.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">permeance (materials science)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1822"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1824"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/perm-0C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/perm-23C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerPascalSecond-TimeSquareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Λ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PersonalDoseEquivalent"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">personal dose equivalent</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DoseEquivalent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rem"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosievert"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasievert"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PhotographicAmplitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Amplitude of the light variation in photographic magnitude.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">photographic amplitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Amplitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A_V</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PhotographicMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">photographic magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_photo</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PhotographicMagnitudeAtMaximumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">photographic magnitude at maximum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMaximumBrightness"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PhotographicMagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_p,max</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PhotographicMagnitudeAtMinimumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">photographic magnitude at minimum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMinimumBrightness"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PhotographicMagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_p,min</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PlanetaryAberration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The apparent angular displacement of the observed position of a celestial object produced by the motion of the observer and the actual motion of the observed object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">planetary aberration</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Aberration"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PotassiumSorbateMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of potassium sorbate in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">potassium sorbate mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PotentialDifference"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">potential difference</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">potentiaalverschil</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotential"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerAmpere"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centivolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decivolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petavolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picovolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teravolt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">U</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PotentialEnergy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Potential energy is energy due to position of one body with respect to another or to the relative parts of the same body.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">potential energy</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">potentiële energie</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">势能</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-39F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-59F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-60F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-15C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-20C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-EC"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfTNT"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocalorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaerg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microjoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terajoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E_p</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Φ</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">U</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrandtlNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Prandtl number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Prandtl</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1402"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1404"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMetrePrefixedGram"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed metre prefixed gram</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx825"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed mole per metre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1542"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerPrefixedMetre"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">prefixed mole per prefixed metre</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <equivalentClass xmlns="http://www.w3.org/2002/07/owl#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1560"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ProteinMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of protein in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">protein mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/PulpBrowning"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: poster (code).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pulp browning</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-5"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">pulp</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/QualityMark"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quality mark</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kwaliteitscijfer</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-10"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">Qcijfer</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-10"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1-10</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">1-10</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dimensionOne"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/QualityMarkFlower"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quality mark flower(s)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kwaliteitscijfer bloem(en)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QualityMark"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-10"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">Qcijfer flower</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/QualityMarkLeaf"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quality mark leafs</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kwaliteitscijfer bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QualityMark"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-10"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">Qcijfer leaf</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/QualityMarkTotal"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">quality mark total</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kwaliteitscijfer total</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QualityMark"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-10"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">Qcijfer total</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">R magnitude in the Cousins photometric system.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">R magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CousinsMagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">R</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_R</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Radiance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">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.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radiance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1766"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx774"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreSteradian"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">L</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">L_e</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RadiantEnergy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radiant energy</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-39F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-59F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-60F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-15C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-20C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-EC"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfTNT"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocalorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaerg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microjoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terajoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Q</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Q_e</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RadiantFlux"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Radiant flux is the measure of the total power of electromagnetic radiation.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radiant flux</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Power"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Boiler"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-British"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Electric"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Metric"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/horsepower-Water"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarLuminosity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfRefrigeration"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliwatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petawatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picowatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawatt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Φ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">radiant energy flux</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">radiant power</alternativeLabel> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">P</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Φ_e</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RadiantIntensity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radiant intensity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx770"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSteradian"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I_e</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Radius-Angle"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radius (angle)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">radius (hoek)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineTemperature"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Rankine temperature</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Rankinetemperatuur</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1022"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1023"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Temperature"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeRankine"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RayleighNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Rayleigh number for a fluid is a dimensionless number associated with buoyancy driven flow.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Rayleigh number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Rayleigh</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1407"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1409"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ra</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurTemperature"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Réaumur temperature</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Réaumurtemperatuur</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1028"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1029"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Temperature"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeReaumur"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RedMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A red magnitude not specified for a specific photometric system.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">red magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">r</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_r</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Reddening"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Reddening causes the star to appear redder if more dust or gas is between the star and the observer.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reddening</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">colour excess</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">wavelength-selective extinction</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ReddeningB-V"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Reddening causes the star to appear redder if more dust or gas is between the star and the observer. The standard reddening is measured using the B and V passbands.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reddening (B-V)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Reddening"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E_B-V</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">colour excess (B-V)</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">wavelength-selective extinction (B-V)</alternativeLabel> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E_{\mathit{B-V}}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ReddeningU-B"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Reddening measured with the U and B passbands.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reddening (U-B)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Reddening"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E_U-B</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">colour excess (U-B)</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">wavelength-selective extinction (U-B)</alternativeLabel> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E_{\mathit{U-B}}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RelativeHumidity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">relative humidity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">relatieve luchtvochtigheid</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx248"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx384"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RH</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Reluctance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reluctance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1269"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1298"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalHenry"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">τ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ResonanceEnergy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">resonance energy</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarEnergy"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerMole"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Responsivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Detector output for unit intensity input. Units are usually volts per watt or amps per watt.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">responsivity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1788"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerWatt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerWatt"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">R</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ReynoldsNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Reynolds number 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.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Reynolds number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Reynolds</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1412"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1414"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Re</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/RightAscension"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance on the celestial sphere measured eastward along the celestial equator from the equinox to the great circle passing through the celestial object and the celestial north pole.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">right ascension</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">rechte klimming</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-HourAngle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-HourAngle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-HourAngle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">α</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ra</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SaltMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of salt in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">salt mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SaltStrength"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">salt strength</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zoutsterkte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ScaleFactor"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">scale factor</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">schaalfactor</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ScaleHeight"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The scale height of a feature (such as the thin galactic disk) is the height (or position) at which the number density of the feature (for instance of the number of Population II stars) is equal to 1/e times the number density at the origin (for instance the Galactic Plane).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">scale height</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">h_z</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ScaleLength"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The radial distance from a galaxy's core at which the average intensity has fallen to 1/e of the intensity at the centre of the galaxy.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">scale length</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">r</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">scale radius</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SchmidtNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Schmidt number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Schmidt</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1417"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1419"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sc</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SecularAberration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The component of the stellar abberation resulting from the motion of the solar system in space. This component is usually ignored. The abberation is the apparent angular displacement of the observed position of a celestial object from its geometric position, caused by the finite velocity of light in combination with the motions of the observer and of the observed object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">secular aberration</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularDisplacement"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Anglee"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearLossModulus"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">shear loss modulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StorageModulus"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">G''</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StorageModulus"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">storage modulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicModulus"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E'</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearModulus"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Shear modulus is the ratio of shear stress to shear strain.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">shear modulus</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">schuifmodulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicModulus"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">G</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μ</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearRate"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">shear rate</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx805"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearStorageModulus"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">shear storage modulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StorageModulus"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">G'</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearStrain"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Shear strain is a strain that acts parallel to the surface of a material that it acts on.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">shear strain</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">schuifvervorming</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Strain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearStress"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Shear stress is a stress that is applied parallel or tangential to a face of a material.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">shear stress</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">schuifspanning</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Stress"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">τ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SoyBeanMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of soy bean oil in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">soy bean mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificAmylaseActivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific amylase activity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificCatalyticActivity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificCatalyticActivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific catalytic activity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1606"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1610"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokatalPerMilligram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450PerSecond-TimePerMilligram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificColiformBacterieCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">coliform bacteria count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">viable count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1833"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificCorynebacteriumBovisCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Corynebacterium bovis count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificCorynebacteriumCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Corynebacterium count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">Arcanobacterium count (specific)</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEnergy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Specific energy is energy per unit mass.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific energy</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx719"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx878"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoulePerHectogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEnergyImparted"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific energy imparted</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDose"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKilogram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centigray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decigray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petagray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picogray"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teragray"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">specific energy (imparted)</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEnterobacteriaceaeCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Enterobacteriaceae count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEnterococcusCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Enterococcus count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEntropy"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific entropy</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1037"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx956"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEscherichiaColiCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Escherichia coli count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificKlebsiellaCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Klebsiella count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificListeriaMonocytogenesCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Listeria monocytogenes count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificProteaseActivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">specific protease activity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificCatalyticActivity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificSalmonellaCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Salmonella count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificSerratiaMarcescensCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Serratia marcescens count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificStaphylococcusAureusCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Staphylococcus aureus count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificStreptococcusAgalactiaeCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Streptococcus agalactiae count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificStreptococcusDysgalactiaeCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Streptococcus dysgalactiae count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificStreptococcusUberisCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Streptococcus uberis count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificYeastAndFungiCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yeast and fungi count (specific)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SpectralResponse"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The change in output signal as a function of changes in the wavelength of the input signal.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">spectral response</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter1"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StantonNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Stanton number is a dimensionless number that measures the ratio of heat transferred into a fluid to the thermal capacity of fluid.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Stanton number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Stanton</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1422"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1424"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">St</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StantonNumberForMassTransfer"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Stanton number for mass transfer</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1427"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1429"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">St*</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StarchMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of starch in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">starch mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StarchVA40MassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of starch VA40 in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">starch VA40 mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StarchVA85MassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of starch VA85 in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">starch VA85 mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StellarAberration"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The apparent angular displacement of the observed position of a celestial object resulting from the motion of the observer. Stellar aberration is divided into diurnal, annual, and secular components.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stellar aberration</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Aberration"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StemEndRot"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aanwezigheid stem end rot (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stem end rot</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">stemendrot</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StemEndRotAreaFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Percentage van het oppervlak stem end rot.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stem end rot area fraction</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stem-end-rot-oppervlaktefractie</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">stemendrot%</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StickStone"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Kleefpit of niet (1/0).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stick stone</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-0"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">stickstone</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StrainTensor"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">strain tensor</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Strain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ε_ij</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">rektensor</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">vervormingstensor</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StrawMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">straw mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">straw weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StressTensor"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">stress tensor</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mechanische-spanningstensor</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Stress"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">τ_ij</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Stroemgren1956"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Article"/> - <creator xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Brengt_Stroemgren"/> - <date xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1956</date> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Two-dimensional spectral classification of F stars through photoelectric photometry with interference filters</title> - <uri xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.sciencedirect.com/science/article/pii/0083665656900605</uri> - <pageEnd xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1346</pageEnd> - <pageStart xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1336</pageStart> - <isPartOf xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/VistasAstronomy"/> - <subject xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Astronomy</subject> - <subject xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Distance Measurement</subject> - <authorList xmlns="http://purl.org/ontology/bibo/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Stroemgren1956Authors"/> - <volume xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</volume> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/StrouhalNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The Strouhal number is a dimensionless number that describes oscillating flow mechanisms.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Strouhal number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Strouhal</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1432"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1434"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sr</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SugarMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of sugar in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">sugar mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SupergalacticLatitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance on the celestial sphere north or south of the supergalactic equator. It is measured along the great circle passing through the object and the supergalactic poles and perpendicular to the supergalactic equator.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">supergalactic latitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SGB</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SupergalacticLongitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance on the celestial sphere measured clockwise from the supergalactic centre (as defined by the International Astronomical Union (IAU)) along the supergalactic equator to the intersection with the great circle drawn from the supergalactic north pole through the object.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">supergalactic longitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SGL</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/SymbolRate"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Symbol rate is the number of symbol changes (signalling events) made to the transmission medium per second using a digitally modulated signal or a line code.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">symbol rate</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1890"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/baud"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">baud rate</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">modulation rate</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureRate"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">temperature rate</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">temperatuur-rate</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx980"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusPerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusPerMinute-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusPerSecond-Time"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">heating rate</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalConductivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Termal conductivity indicates the ability of a material to conduct heat.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal conductivity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">thermische geleidbaarheid</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1039"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx962"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerMetreKelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">κ</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">k</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">λ</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalDiffusivity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal diffusivity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx892"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kinematicViscosityOrThermalDiffusivity-Dimension"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalInsulance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal insulance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1040"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx966"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreKelvinPerWatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalResistance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermal resistance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1041"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx970"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvinPerWatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Thickness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thickness</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">dikte</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">d</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">δ</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Thrust"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Thrust is a reaction force that is caused by an accelerated mass expelled by a system in one direction.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thrust</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">stuwkracht</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Force"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dyne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kip"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pound-Force"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Force-Short"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giganewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/meganewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/piconewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teranewton"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ThuanAndGunnMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A magnitude measured in one of Thuan and Gunn's standard passbands (using a standard filter, i.e. g).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Thuan and Gunn magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TimeConstant"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Time required to approach (1-1/e) of the final output value of a detector (about 63%) (Kitchin, Astrophysical Techniques, IoP, Table 1.1.2).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">time constant</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">τ</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TopMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">top mass</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <unofficialLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">top weight</unofficialLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Total3DStartEndDistance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">total 3D start-end distance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Distance"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TotalDensityParameter"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The total density parameter.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">total density parameter</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameter"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ω_T</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TotalDistanceTravelled"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">total distance travelled</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Distance"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TotalNumberBuds"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Totaal aantal knoppen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">total number buds</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">totaal aantal knoppen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberBuds"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#buds</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TotalNumberFlowers"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Totaal aantal bloemen.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">total number flowers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">totaal aantal bloemen</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberFlowers"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#flowers</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TotalNumberLeaves"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Totaal aantal bladeren.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">total number leaves</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">totaal aantal bladeren</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NumberLeaves"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">#leaves</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TrueDistanceModulus"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">true distance modulus</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DistanceModulus"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TweenMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of tween in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">tween mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/TychoBroadbandMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Broadband Tycho magnitude (formed from B and V magintude measurements.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Tycho broadband magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_T</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/UMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Johnson U magnitude. The Johnson U band is a standard passband in the ultraviolet area. The central wavelength is 365nm and the bandwidth is 70nm. The filter to be used is the Corning 9863 filter.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">U magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/JohnsonMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromagnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">U</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_U</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VAmplitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Amplitude of the light variation in Johnson V magnitude. The Johnson V band is a standard passband in the visual area, matching the response curve of the human eye. The central wavelength is 550nm and the bandwidth is 90nm. The filter to be used is the Corning 3384 filter.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">V amplitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Amplitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A_V</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Johnson V magnitude. The Johnson V band is a standard passband in the visual area, matching the response curve of the human eye. The central wavelength is 550nm and the bandwidth is 90nm. The filter to be used is the Corning 3384 filter.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">V magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/JohnsonMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromagnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_V</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VMagnitudeAtMaximumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Johnson V magnitude (apparent) at maximum brightness (i.e. for a variable star). The Johnson V band is a standard filter in the visual area, matching the response curve of the human eye. The central wavelength is 550nm and the bandwidth is 90nm. The filter to be used is the Corning 3384 filter.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">V magnitude at maximum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMaximumBrightness"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V_max</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VMagnitudeAtMinimumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Johnson V magnitude (apparent) at minimum brightness (i.e. for a variable star). The Johnson V band is a standard filter in the visual area, matching the response curve of the human eye. The central wavelength is 550nm and the bandwidth is 90nm. The filter to be used is the Corning 3384 filter.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">V magnitude at minimum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMinimumBrightness"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">V_min</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VascularBrowning"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Voorbeeld avocado Hass: poster (code).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">vascular browning</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1-5"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">vascular</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VaseLife"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Aantal dagen op de vaas tot onvoldoende.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">vase life</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vaasleven</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VasePlusWaterMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Gewicht vaas plus water.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">vase plus water mass</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vaas- plus watermassa</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">vase plus water weight</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">weight vase</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VasePlusWaterPlusFlowerMass"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">Gewicht vaas plus water plus bloem (= steel plus blad plus bloem).</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">vase plus water plus flower mass</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vaas- plus water- plus bloemmassa</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">vase plus water plus flower weight</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">weight flo and vase</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Velocity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Velocity is the rate of change of position.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">velocity</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">snelheid (vector)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Speed"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/knot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerDay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerDay"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-StatutePerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-InternationalPerHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">u</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">w</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">v</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VisualAlbedo"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The albedo only for radiation in the visual part of the spectrum.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">visual albedo</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Albedo"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attoliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">al</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centilitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centiliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decaliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dal</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decilitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">deciliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exaliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">El</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtoliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigaliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectoliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kiloliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megaliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ml</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microlitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microlitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μl</symbol> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ul</unofficialAbbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millilitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milliliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ml</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanoliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petaliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picoliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teralitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teralitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teraliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumeStrain"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volume strain</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Strain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">θ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">bulk strain</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricColiformBacterieCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">coliform bacteria count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">viable count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1829"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricCorynebacteriumBovisCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Corynebacterium bovis count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricCorynebacteriumCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Corynebacterium count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">Arcanobacterium count (volumetric)</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricEnterobacteriaceaeCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Enterobacteriaceae count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricEnterococcusCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Enterococcus count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricEscherichiaColiCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Escherichia coli count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricFlowRate"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volumetric flow rate</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx815"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx888"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerSecond-Time"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litrePerHour"/> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">flow rate</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">volume flow</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">volume flow rate</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricHeatCapacity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">volumetric heat capacity</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1043"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx984"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerCubicMetreKelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricKlebsiellaCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Klebsiella count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricListeriaMonocytogenesCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Listeria monocytogenes count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricSalmonellaCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Salmonella count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricSerratiaMarcescensCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Serratia marcescens count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricStaphylococcusAureusCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Staphylococcus aureus count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricStreptococcusAgalactiaeCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Streptococcus agalactiae count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricStreptococcusDysgalactiaeCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Streptococcus dysgalactiae count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricStreptococcusUberisCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Streptococcus uberis count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricYeastAndFungiCount"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yeast and fungi count (volumetric)</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumetricViableCount"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPerMillilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnitPer25Millilitre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnitPerMillilitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WaterMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of water in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">water mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WeberNumber"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Weber number</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">getal van Weber</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1437"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx1439"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">We</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Weight"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Weight is a force that attracts a body towards another (reference) body.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">weight</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gewicht</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Force"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dyne"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kip"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pound-Force"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Force-Short"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-TimeSquared"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giganewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/meganewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanonewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petanewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/piconewton"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teranewton"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">G</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">P</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WettingAngle"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">wetting angle</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gon"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/revolution"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoradian"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoradian"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WheyProteinAggregateMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of whey protein aggregate in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">whey protein aggregate mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WheyProteinBeadsMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of whey protein beads in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">whey protein beads mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WheyProteinMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of whey protein in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">whey protein mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WhiteLightMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">white light magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WhiteLightMagnitudeAtMaximumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">white light magnitude at maximum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMaximumBrightness"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/WhiteLightMagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_max</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/WhiteLightMagnitudeAtMinimumBrightness"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">white light magnitude at minimum brightness</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMinimumBrightness"/> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/WhiteLightMagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_min</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Width"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">breedte</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">width</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">w</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/Work"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Work is the energy when a force acts against resistance to produce motion in a body.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">arbeid</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">work</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">工作</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micronewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millinewtonMetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-39F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-59F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-60F"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BritishThermalUnit-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-15C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-20C"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-InternationalTable"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/calorie-Thermochemical"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/electronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footPoundal"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quad"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terawattHour"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-EC"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/therm-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonOfTNT"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocalorie-Mean"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaerg"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microjoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millijoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picojoule"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terajoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/XanthanMassFraction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The fraction of the mass of xanthan in a phenomenon</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">xanthan mass fraction</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerGram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/ZenithDistance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The angular distance on the celestial sphere measured along the great circle from the zenith to the celestial object. z = 90° - h.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zenith distance</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zenitafstand</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Glossary_Astronomical_Almanac"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">z</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">zenith angle</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">zenithoek</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasNumericalValue"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has numerical value</label> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx47"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1000ColonyFormingUnit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiple"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1000 colony forming unit</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnit"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1000 CFU</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1000</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/colonyFormingUnit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">colony forming unit</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CFU</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_100Kilometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiple"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">100 kilometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">100 kilometer</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/length-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100 km</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">100</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_1040NanometreLockwoodMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">A magnitude in the 1.04 micrometre band of the photometric system introduced by G.W. Lockwood.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1040 nm Lockwood magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_L1040</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_127316OfTheThermodynamicTemperatureOfTheTriplePointOfWater"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperature"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">1/273.16 of the thermodynamic temperature of the triple point of water</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_25Millilitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiple"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">25 millilitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">25 milliliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilitre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25 ml</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">25</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasQuantity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has quantity</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="genid-9705366b18194de9a2dcb5bbab39c385-node1c3sfjt7fx9"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamicTemperatureOfTheTriplePointOfWater"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperature"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">triple point of water thermodynamic temperature</label> - <hasPhenomenon xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/triplePointOfWater"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/_9192631770PeriodsOfTheRadiationCorrespondingToTheTransitionBetweenTheTwoHyperfineLevelsOfTheGroundStateOfTheCesium133Atom"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">9 192 631 770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/alternativeLaTeXSymbol"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">An alternative OMLaTeX formatted symbol, which may include commands such as \unit and \E as defined in OMLaTeX.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">alternative LaTeX symbol</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">alternative LaTeX formatted symbol</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">has alternative LaTeX symbol</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceOfASystemThatContainsAsManyElementaryEntitiesAsThereAreAtomsIn0.012KilogramOfCarbon12"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstance"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">amount of substance of a system that contains as many elementary entities as there are atoms in 0.012 kilogram of carbon 12</label> - <hasPhenomenon xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/systemThatContainsAsManyElementaryEntitiesAsThereAreAtomsIn0.012KilogramOfCarbon12"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasPhenomenon"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has phenomenon</label> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/systemThatContainsAsManyElementaryEntitiesAsThereAreAtomsIn0.012KilogramOfCarbon12"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">system that contains as many elementary entities as there are atoms in 0.012 kilogram of carbon 122</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/constantCurrentThatProducesAnAttractiveForceOf2e-7NewtonPerMetreOfLengthBetweenTwoStraightParallelConductorsOfInfiniteLengthAndNegligibleCircularCrossSectionPlacedOneMetreApartInAVacuum"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrent"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">constant current that produces an attractive force of 2e–7 newton per metre of length between two straight, parallel conductors of infinite length and negligible circular cross section placed one metre apart in a vacuum</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/IAU_2012_Resolution_B2"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Chapter"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Resolution B2</title> - <reproducedIn xmlns="http://purl.org/ontology/bibo/" rdf:resource="http://www.iau.org/static/resolutions/IAU2012_English.pdf"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomyAndAstrophysics"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">astronomy and astrophysics</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">astronomie en astrofysica</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Aberration"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AberrationInLatitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AberrationInLongitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsoluteBolometricMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BolometricMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsoluteMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Magnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Albedo"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Altitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Amplitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularSize"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AnnualAberration"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApparentDiameter"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApparentDistanceModulus"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DistanceModulus"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApparentMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Azimuth"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/JohnsonMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BMagnitudeAtMaximumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMaximumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BMagnitudeAtMinimumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnitudeAtMinimumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BetaNarrowMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StroemgrenMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BetaWideMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BolometricCorrection"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BondAlbedo"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BrightnessTemperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Co-RotationRadius"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ColdGasMassFraction"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ColourIndex"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ColourTemperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CousinsMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Cut-OffWavelength"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DarkNoise"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Declination"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DetectiveQuantumEfficiency"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/QuantumEfficiency"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Detectivity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Diameter-Angle"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DiurnalAberration"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicRange"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Eccentricity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/EclipticLatitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/EclipticLongitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectronTemperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Ellipticity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Epoch"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/EpochAtMaximumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Extinction"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionAtWaveband"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionAtWavelength"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionInB"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionInU"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExtinctionInV"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GalacticCylindricalPolarAngleCoordinate"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GalacticLatitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GalacticLongitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GeometricalAlbedo"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HourAngle"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/InitialMassFunction"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IntegratedMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IntrinsicColourIndex"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IonizationTemperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/JeansMass"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LightTime"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LimitingMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminosityFunction"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Metallicity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NoiseEquivalentPower"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NormalAlbedo"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NormalisedDetectivity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PeakWavelength"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PhotographicAmplitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PhotographicMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PhotographicMagnitudeAtMaximumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PhotographicMagnitudeAtMinimumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PlanetaryAberration"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Radius-Angle"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RedMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Reddening"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReddeningB-V"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReddeningU-B"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Responsivity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RightAscension"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ScaleHeight"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ScaleLength"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SecularAberration"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpectralResponse"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StellarAberration"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SupergalacticLatitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SupergalacticLongitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThuanAndGunnMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TimeConstant"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TrueDistanceModulus"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TychoBroadbandMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VAmplitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VMagnitudeAtMaximumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VMagnitudeAtMinimumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VisualAlbedo"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/WhiteLightMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/WhiteLightMagnitudeAtMaximumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/WhiteLightMagnitudeAtMinimumBrightness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ZenithDistance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_1040NanometreLockwoodMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/uMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/vMagnitude"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yMagnitude"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicParsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimagnitude"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromagnitude"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerWatt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerWatt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-TimePerMegaparsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-AngleSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMass"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalCubicParsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMassPerCubicParsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarLuminosity"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-AnglePerYear"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogramPerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarRadius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloparsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-HourAngle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-HourAngle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-HourAngle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bitPerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/jansky"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitudePerSecond-AngleSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMassPerGigayearCubicKiloparsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMassPerGigayearCubicParsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerCubicmetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerHertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerNanometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSecond-AngleSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreHertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreNanometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSteradianSquareMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSteradianSquareMetreHertz"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/usesQuantity"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">uses quantity</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/bMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">b Magnitude in the Strömgren photometric system with a peak wavelength at 467 nm and a peak-half-width of 18 nm.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">b magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StroemgrenMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Crawford1958"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Stroemgren1956"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">b</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_b</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">g Magnitude in the Thuan and Gunn photometric system.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">g magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThuanAndGunnMagnitude"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_g</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/uMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">u Magnitude in the Strömgren photometric system with a peak wavelength at 350 nm and a peak-half-width of 30 nm.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">u magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StroemgrenMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Crawford1958"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Stroemgren1956"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">u</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_u</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/vMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">v Magnitude in the Strömgren photometric system with a peak wavelength at 411 nm and a peak-half-width of 19 nm.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">v magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StroemgrenMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Crawford1958"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Stroemgren1956"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">v</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_v</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yMagnitude"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">y Magnitude in the Strömgren photometric system with a peak wavelength at 547 nm and a peak-half-width of 23 nm.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">y magnitude</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StroemgrenMagnitude"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques_chapter3"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Crawford1958"/> - <reference xmlns="http://www.wurvoc.org/bibliography/om-2/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Stroemgren1956"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">y</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m_y</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/usesUnit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">uses unit</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/bitPerSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">bit per second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">bit per seconde</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bit/s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bit s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bit·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/jansky"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">jansky</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">jansky</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Jy</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">flux unit</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitudePerSecond-AngleSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The brightness (in magnitudes) of an area on the celestial sphere of 1 arcsecond by 1 arcsecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">magnitude per second (angle) squared</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/magnitude"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-AngleSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mag/arcsec2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mag arcsec-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mag·arcsec-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMassPerGigayearCubicKiloparsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The amount of stellar mass created per cubic kiloparsec in each billion years.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">solar mass per gigayear cubic kiloparsec</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMass"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayearCubicKiloparsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_☉/(Gyr kpc3)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_☉ Gyr-1 kpc-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_☉·Gyr-1·kpc-3</alternativeSymbol> - <LaTeXSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_{\astrosun}Gyr^{-1}kpc^{-1}</LaTeXSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMassPerGigayearCubicParsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The amount of stellar mass created per cubic parsec in each billion years.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">solar mass per gigayear cubic parsec</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/solarMass"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayearCubicParsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_☉/(Gyr pc3)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_☉ Gyr-1 pc-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M_☉·Gyr-1·pc-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerCubicmetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per kubieke meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·m-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerHertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per hertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per hertz</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/Hz</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W Hz-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·Hz-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerNanometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per nanometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per nanometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/nm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W nm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·nm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSecond-AngleSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The radiative intensity (in watts) of an area on the celestial sphere of 1 arcsecond by 1 arcsecond.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per second (angle) squared</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-AngleSquared"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/arcsec2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W arcsec-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·arcsec-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreHertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per square metre hertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per vierkante meter hertz</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreHertz"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/(m2 Hz)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W m-2 Hz-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·m-2·Hz-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreNanometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per square metre nanometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per vierkante meter nanometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreNanometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/(m2 nm)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W m-2 nm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·m-2·nm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSteradianSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per steradian square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per steradiaal vierkante meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradianSquareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/(sr m2)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W sr-1 m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·sr-1·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSteradianSquareMetreHertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt per steradian square metre hertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt per steradiaal vierkante meter hertz</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradianSquareMetreHertz"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W/(sr m2 Hz)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W sr-1 m-2 Hz-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·sr-1·m-2·Hz-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/atto"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">atto</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">atto</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e-18</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attomolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attomole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attomole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">attosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">attoseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">as2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/average"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">average</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/oneDistinctSymbolChangeOrSignallingEventMadeToTheTransmissionMediumPerSecondInADigitallyModulatedSignalOrALineCode"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SymbolRate"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/informationCapacityOfOneBinaryDigit"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/InformationCapacity"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">information capacity of one binary digit</label> - <hasPhenomenon xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/oneBinaryDigit"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/luminousIntensityInAGivenDirectionOfASourceThatEmitsMonochromaticRadiationOfFrequency540e12HertzAndThatHasARadiantIntensityInThatDirectionOf1683WattPerSteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousIntensity"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">luminous intensity, in a given direction, of a source that emits monochromatic radiation of frequency 540e12 hertz and that has a radiant intensity in that direction of 1/683 watt per steradian</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centi</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centi</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">c</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e-2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre-Gram-Second-BiotSystemOfUnits"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre-gram-second-biot system of units</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter-gram-seconde-biot-systeem</label> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrent"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/biot"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <abbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm-g-s-Bi</abbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre-Gram-Second-FranklinSystemOfUnits"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre-gram-second-franklin system of units</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter-gram-seconde-franklin-systeem</label> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCharge"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/franklin"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <abbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm-g-s-Fr</abbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre-Gram-SecondElectromagneticSystemOfUnits"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre-gram-second electromagnetic system of units</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter-gram-seconde electromagnetische systeem</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">CGS electromagnetic system of units</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">centimetre, gram, second electromagnetic system of units</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">electromagnetic CGS system of units</alternativeLabel> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Capacitance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCharge"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrent"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotential"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Inductance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticField"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFlux"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxDensity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnetomotiveForce"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gilbert"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abcoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abvolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abfarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abmho"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/maxwell"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/oersted"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gauss"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abhenry"/> - <abbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EMU</abbreviation> - <abbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">emu</abbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre-Gram-SecondElectrostaticSystemOfUnits"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre-gram-second electrostatic system of units</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter-gram-seconde electrostatische systeem</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">CGS electrostatic system of units</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">electrostatic CGS system of units</alternativeLabel> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Capacitance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCharge"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrent"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotential"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Inductance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFlux"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxDensity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnetomotiveForce"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statampere"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statcoulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statvolt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statfarad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statmho"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statweber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stattesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stathenry"/> - <abbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ESU</abbreviation> - <abbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">esu</abbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre-Gram-SecondSystemOfUnits"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre-gram-second system of units</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter-gram-seconde-systeem</label> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Acceleration"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Frequency"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicViscosity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Force"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Illuminance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Luminance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Pressure"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KinematicViscosity"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stilb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/phot"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gal"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dyne"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/erg"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poise"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stokes"/> - <abbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CGS</abbreviation> - <abbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cgs</abbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerCubicCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimetre per cubic centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimeter per kubieke centimeter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm/cm3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm cm-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cm·cm-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The centimolair is a unit of amount of substance concentration defined as 1.0e-2 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centi"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centimolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centimole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centimole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">centisecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">centiseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cs2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/chemicalPhysics"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">chemical physics</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">fysische chemie</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceConcentration"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceFlow"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceFraction"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfSubstanceFractionFlow"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarHeatCapacity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarMass"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Molality"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarEnergy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarEntropy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolarVolume"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ResonanceEnergy"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/one"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerCubicmetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerMole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerMole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinMole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerKilogram"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerMole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetrePerMole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litrePerMole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attomole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decamole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/examole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megamole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petamole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picomole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teramole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attomolair"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attomolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decamolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/examolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomolair"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megamolair"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megamolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolair"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimolair"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerAttolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerCentilitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerDecalitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerDecilitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerExalitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerFemtolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerGigalitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerHectolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerKilolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMegalitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMicrolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMillilitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerNanolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerPetalitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerPicolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerTeralitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomolair"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petamolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picomolair"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picomolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teramolePerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attomolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decamolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/examolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvinMole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megamolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerSecond-TimeGram"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/moleMicrometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/moleMicrometreReciprocalSquareCentimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/moleMicrometreReciprocalSquareCentimetreReciprocalSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerAttometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerCentimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerDecametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerDecimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerExametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerFemtometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerGigametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerHectometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerKilometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMicrometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMillimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerNanometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerPetametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerPicometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerTerametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerYoctometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerYottametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerZeptometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerZettametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePermegametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petamolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picomolePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teramolePerMetre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decamolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decamole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decamole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">damol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">damol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">damol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decimolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decimole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decimole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/examolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">examole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">examole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/examole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Emol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Emol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Emol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtomole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtomole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fm·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigamole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigamole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectomole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectomole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvinMole"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kelvin mole</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kelvin mol</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K mol</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K·mol</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilomole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilomole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megamolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megamole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megamole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micromole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micromole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerSecond-TimeGram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micromole per second gram</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerSecond-Time"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol/(s g)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol s-1 g-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μmol·s-1·g-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millimolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millimole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">millimole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/moleMicrometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole micrometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mol micrometer</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol μm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·μm</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/moleMicrometreReciprocalSquareCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole micrometre reciprocal square centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mol micrometer omgekeerde vierkante centimeter</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/moleMicrometre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareCentimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol μm cm-2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·μm·cm-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/moleMicrometreReciprocalSquareCentimetreReciprocalSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole micrometre reciprocal square centimetre reciprocal second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mol micrometer omgekeerde vierkante centimeter omgekeerde seconde</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/moleMicrometreReciprocalSquareCentimetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol μm cm-2 s-1</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·μm·cm-2·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerAttometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per attometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per attometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/am</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol am-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·am-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per centimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per centimeter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/cm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol cm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·cm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerDecametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per decametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per decameter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/dam</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol dam-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·dam-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerDecimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per decimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per decimeter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/dm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol dm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·dm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerExametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per exametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per exameter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Em</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Em-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Em-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerFemtometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per femtometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per femtometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/fm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol fm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·fm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerGigametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per gigametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per gigameter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Gm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Gm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Gm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerHectometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per hectometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per hectometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/hm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol hm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·hm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerKilometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per kilometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per kilometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/km</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol km-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·km-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMicrometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per micrometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per micrometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/μm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol μm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·μm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerMillimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per millimetre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per millimeter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/mm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol mm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·mm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerNanometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per nanometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per nanometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/nm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol nm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·nm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerPetametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per petametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per petameter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Pm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Pm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Pm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerPicometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per picometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per picometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/pm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol pm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·pm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerTerametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per terametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per terameter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Tm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Tm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Tm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerYoctometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per yoctometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per yoctometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/ym</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol ym-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·ym-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerYottametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per yottametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per yottameter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Ym</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Ym-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Ym-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerZeptometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per zeptometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per zeptometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/zm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol zm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·zm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerZettametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per zettametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per zettameter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Zm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Zm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Zm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePermegametre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per megametre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per megameter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Mm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Mm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Mm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanomole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanomole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petamolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petamole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petamole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picomolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picomole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picomole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teramolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teramole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teramole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teramole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/chemistry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">chemistry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">chemie</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Acidity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Amphiphilicity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CatalyticActivity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CatalyticActivityConcentration"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CollisionFrequency"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Hydrophilicity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Hydrophobicity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Lipophilicity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SaltStrength"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificAmylaseActivity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificCatalyticActivity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificProteaseActivity"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micromolePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amylaseUnit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450PerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/katalPerCubicmetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokatalPerMilligram"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450PerSecond-TimePerMilligram"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attokatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centikatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decakatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decikatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exakatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtokatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigakatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectokatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilokatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megakatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microkatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millikatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petakatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picokatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terakatal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/deltaA450"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">delta A450</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/commonApplicationArea"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">common application area</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">algemeen toepassingsgebied</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Area"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Temperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Frequency"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Density"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Speed"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrent"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotential"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Force"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Power"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Volume"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acre-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acre-USSurvey"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/are"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/percent"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gallon-Imperial"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gallon-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/liquidPint-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pint-Imperial"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ounceAvoirdupois"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundAvoirdupois"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerKilogram"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerHour"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-StatutePerHour"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pound-Force"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowattHour"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeFahrenheit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectare"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareCentimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareKilometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerLitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocalorie-Mean"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilonewton"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megahertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilowatt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megawatt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliwatt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/month"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/week"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/month"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The month is a unit of time.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">month</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">maand</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="zh">月</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <LaTeXCommand xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">\monthUnit</LaTeXCommand> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/week"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingularUnit"/> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Unit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The week is a unit of time defined as 6.04800e5 second.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">week</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">week</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/time-Dimension"/> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">6.04800e5</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cosmology"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cosmology</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kosmologie</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CosmologicalConstant"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CriticalDensity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CurvatureConstant"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DecelerationParameter"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameter"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameterForBaryonicMatter"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameterForMatter"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameterForRadiation"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DensityParameterForVacuum"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HubbleConstant"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HubbleConstantAtPresentEpoch"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ScaleFactor"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TotalDensityParameter"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaelectronvolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloelectronvolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaelectronvolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaparsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/count"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">count</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetreKelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">cubic metre kelvin</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3 K</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m3·K</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">deca</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">deca</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">da</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">deka</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decamolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decamolair is a unit of amount of substance concentration defined as 1.0e1 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decamolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decamolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deca"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decaseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">das2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">deci</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">deci</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">d</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e-1</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decimolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The decimolair is a unit of amount of substance concentration defined as 1.0e-1 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decimolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">decimolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deci"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">decisecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">deciseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ds2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">degree Celsius day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">graad Celsius dag</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C d</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C·d</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/durationOf9192631770PeriodsOfTheRadiationCorrespondingToTheTransitionBetweenTheTwoHyperfineLevelsOfTheGroundStateOfTheCesium133Atom"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Duration"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">duration of 9 192 631 770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom</label> - <hasPhenomenon xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_9192631770PeriodsOfTheRadiationCorrespondingToTheTransitionBetweenTheTwoHyperfineLevelsOfTheGroundStateOfTheCesium133Atom"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/economics"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">economie</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">economics</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmountOfMoney"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Cost"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitedStatesDollar"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/euro"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/JapaneseYen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/poundSterling"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AustralianDollar"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SwissFranc"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CanadianDollar"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MexicanPeso"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ChineseYuan"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NewZealandDollar"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SwedishKrona"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RussianRuble"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HongKongDollar"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NorwegianKrone"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SingaporeDollar"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TurkishLira"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SouthKoreanWon"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SouthAfricanRand"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BrazilianReal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/IndianRupee"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuro"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/electromagnetism"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">electromagnetism</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">elektromagnetisme</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Admittance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Capacitance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CurrentDensity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCharge"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricChargeDensity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrent"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricDipoleMoment"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricField"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricFluxDensity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotential"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalConductivity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistivity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectromotiveForce"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Inductance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticField"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFlux"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxDensity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnetomotiveForce"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PermeabilityOfFreeSpace"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Permittivity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Permeance-Electromagnetic"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PotentialDifference"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Reluctance"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/biot"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gilbert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerSquareMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abcoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/faraday"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/franklin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statcoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeAmpere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abvolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statvolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerAmpere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abfarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statfarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerVolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerAmpere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abmho"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mho"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statmho"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerVolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerCoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltPerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerCubicmetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerSquareMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/maxwell"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/statweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/unitPole"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/voltSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/oersted"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amperePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gamma"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gauss"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stattesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerSquareMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligauss"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/abhenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stathenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weberPerAmpere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henryPerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/faradPerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/debye"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalHenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohmMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/siemensPerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attofarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centifarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decafarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decifarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exafarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtofarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigafarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectofarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilofarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megafarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microfarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millifarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanofarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petafarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picofarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terafarad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attocoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centicoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decacoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decicoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exacoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtocoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigacoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectocoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megacoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microcoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millicoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanocoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petacoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picocoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teracoulomb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decaampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exaampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petaampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teraampere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attovolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centivolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decavolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decivolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exavolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtovolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigavolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectovolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilovolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megavolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microvolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanovolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petavolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picovolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teravolt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasiemens"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decaohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exaohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petaohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teraohm"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attohenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centihenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decahenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decihenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exahenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtohenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigahenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectohenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megahenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microhenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millihenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanohenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petahenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picohenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terahenry"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attotesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centitesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decatesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decaweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decitesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exatesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exaweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtotesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigatesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigaweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectotesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectoweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilotesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kiloweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megatesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microtesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millitesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanotesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petatesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petaweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picotesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoweber"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teratesla"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teraweber"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exa</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exa</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e18</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/examolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The examolair is a unit of amount of substance concentration defined as 1.0e18 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">examolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">examolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exa"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exaseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Es2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/exbi"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BinaryPrefix"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">IEC prefix</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">exbi</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">exbi</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ei</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">exabinary</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.152921504606846976e18</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femto"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femto</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femto</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">f</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e-15</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">femtosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">femtoseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fs2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/first"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">first</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidMechanics"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fluid mechanics</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vloeistofmechanica</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BulkModulus"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicModulus"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CompressiveStress"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Stress"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ContactAngle"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElasticityTensor"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SurfaceTension"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LinearStrain"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Strain"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LossModulus"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ModulusOfElasticity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NormalStrain"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NormalStress"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearLossModulus"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StorageModulus"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearModulus"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearRate"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearStorageModulus"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearStrain"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ShearStress"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StrainTensor"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StressTensor"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumeStrain"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/WettingAngle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Technical"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bar"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barye"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metreOfMercury"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/torr"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibar"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbar"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibar"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetreOfMercury"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetreOfMercury"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2ReciprocalMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newtonPerSquareMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attopascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centipascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decapascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decipascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exapascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtopascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigapascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectopascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilopascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megapascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micropascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millipascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanopascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petapascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picopascal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terapascal"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidMechanicsDimensionlessNumbers"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">fluid mechanics dimensionless numbers</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vloeistofmechanica dimensieloze getallen</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AlfvenNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CowlingNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/EulerNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FirstCowlingNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FourierNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FourierNumberForMassTransfer"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FroudeNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GrashofNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GrashofNumberForMassTransfer"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HartmannNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KnudsenNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LewisNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MachNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticReynoldsNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NusseltNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/NusseltNumberForMassTransfer"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PecletNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PecletNumberForMassTransfer"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrandtlNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RayleighNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReynoldsNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SchmidtNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StantonNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StantonNumberForMassTransfer"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/StrouhalNumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/WeberNumber"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/geometry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">geometry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">geometrie</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Angle"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SolidAngle"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Area"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Breadth"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Circumference"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Radius"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Diameter"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Height"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Volume"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Thickness"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Width"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acre-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acre-USSurvey"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/are"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barn"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/circularMil"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/acreFoot"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/barrel-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bushel-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cord"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cup-USCustomary"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dryGallon-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dryPint-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dryQuart-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidOunce-Imperial"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fluidOunce-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gallon-Imperial"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gallon-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gill-Imperial"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gill-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/liquidPint-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/liquidQuart-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peck-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pint-Imperial"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/quart-Imperial"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stere"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tablespoon-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teaspoon-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/dessertspoon"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ton-Register"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicParsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicKiloparsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degree"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gon"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Angle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Angle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/revolution"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Angle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Angle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Angle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attoradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/deciradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtoradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milliradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanoradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picoradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centiare"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectare"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareAttometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareCentimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareDecametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareDecimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareExametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareFemtometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareGigametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareHectometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareKilometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMegametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMicrometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMillimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareNanometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squarePetametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squarePicometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareTerametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosteradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisteradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicAttometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicCentimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicDecametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicDecimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicExametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicFemtometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicGigametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicHectometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicKilometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMegametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMicrometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMillimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicNanometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicPetametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicPicometre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicTerametre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisteradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosteradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsteradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisteradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosteradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosteradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decalitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exalitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megalitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microlitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petalitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picolitre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teralitre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gibi"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BinaryPrefix"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">IEC prefix</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gibi</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gibi</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gi</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">gigabinary</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.073741824e9</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">giga</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">giga</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">G</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e9</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigamolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The gigamolair is a unit of amount of substance concentration defined as 1.0e9 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigamolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigamolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/giga"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigaseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gs2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayearCubicKiloparsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigayear cubic kiloparsec</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigajaar kubieke kiloparsec</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicKiloparsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gyr kpc3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gyr·kpc3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayearCubicParsec"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gigayear cubic parsec</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gigajaar kubieke parsec</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicParsec"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gyr pc3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gyr·pc3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerJoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per joule is a unit of energy consumption.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per joule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per joule</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/J</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g J-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·J-1</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gram per joule is a unit of energy consumption defined as gram divided by joule. Gram per joule is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerMegajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per megajoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per megajoule</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/MJ</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g MJ-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·MJ-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerSquareMetreCentimetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per square metre centimetre</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerSquareMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/(m2 cm)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g m-2 cm-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·m-2·cm-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerSquareMetreDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per square metre day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per vierkante meter dag</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreDay"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/(m2 d)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g m-2 d-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·m-2·d-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter dag</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 d</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·d</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerSquareMetreMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per square metre metre</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerSquareMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/(m2 m)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g m-2 m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·m-2·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerSquareMetreSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per square metre second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per vierkante meter seconde</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/(m2 s)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g m-2 s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·m-2·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter seconde</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 s</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·s</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerYoctolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per yoctolitre is a unit of density defined as gram divided by yoctolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per yoctolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per yoctoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/yl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g yl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·yl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctoliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerYottalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per yottalitre is a unit of density defined as gram divided by yottalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per yottalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per yottaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/Yl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g Yl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·Yl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottaliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerZeptolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per zeptolitre is a unit of density defined as gram divided by zeptolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per zeptolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per zeptoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/zl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g zl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·zl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptoliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/gramPerZettalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/GramPerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Gram per zettalitre is a unit of density defined as gram divided by zettalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">gram per zettalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">gram per zettaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g/Zl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g Zl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g·Zl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettaliter</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volume-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zl</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasAggregateFunction"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has aggregate function</label> - <range xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"/> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hasContext"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">has context</label> - <domain xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Quantity"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hecto</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hecto</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">h</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e2</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectareDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectare day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectare dag</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectare"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ha d</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ha·d</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectomolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The hectomolair is a unit of amount of substance concentration defined as 1.0e2 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectomolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectomolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hecto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">hectosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">hectoseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hs2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/oneBinaryDigit"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">one binary digit</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/informationTechnology"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">informatietechnologie</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">information technology</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/InformationCapacity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SymbolRate"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/byte"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hartley"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shannon"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exabit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exbibit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gibibit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigabit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kibibit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilobit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mebibit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megabit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pebibit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petabit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tebibit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terabit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yobibit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottabit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zebibit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettabit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/bitPerSecond-Time"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/internationalPrototypeOfTheKilogram"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">international prototype of the kilogram</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvinKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kelvin kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kelvin kilogram</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K kg</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K·kg</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per vierkante meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerSquareMetreDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per square metre day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per vierkante meter dag</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreDay"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/(m2 d)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J m-2 d-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·m-2·d-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerSquareMetreSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">joule per square metre second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">joule per vierkante meter seconde</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J/(m2 s)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J m-2 s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">J·m-2·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kibi"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BinaryPrefix"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">IEC prefix</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kibi</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kibi</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ki</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">kilobinary</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.024e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilo</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilo</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">k</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/massOfTheInternationalPrototypeOfTheKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mass of the international prototype of the kilogram</label> - <hasPhenomenon xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/internationalPrototypeOfTheKilogram"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramPerGigajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Kilogram per gigajoule is a unit of energy consumption.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kikogram per gigajoule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram per gigajoule</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigajoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg/GJ</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg GJ-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·GJ-1</alternativeSymbol> - <longcomment xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kilogram per gigajoule is a unit of energy consumption defined as kilogram divided by gigajoule. Kilogram per gigajoule is a derived unit in the International System of Units.</longcomment> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pascalSecond-TimeSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pascal second square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">pascal seconde vierkante meter</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pascalSecond-Time"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pa s m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pa·s·m2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogramSecond-TimeToThePower-2"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilogram second to the power -2</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilogram seconde tot de macht -2</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeToThePower-2"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg s-2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kg·s-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimeToThePower-2"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">second to the power -2</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">seconde tot de macht -2</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s-2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoulePerSquareMetreDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilojoule per square metre day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilojoule per vierkante meter dag</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreDay"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kJ/(m2 d)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kJ m-2 d-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kJ·m-2·d-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilomolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The kilomolair is a unit of amount of substance concentration defined as 1.0e3 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilomolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kilomolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilo"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">kilosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">kiloseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ks2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/last"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">last</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/lengthOfThePathTravelledByLightInVacuumDuringATimeIntervalOf1299792458OfASecond"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">length of the path travelled by light in vacuum during a time interval of 1/299 792 458 of a second</label> - <hasPhenomenon xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pathTravelledByLightInVacuumDuringATimeIntervalOf1299792458OfASecond"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pathTravelledByLightInVacuumDuringATimeIntervalOf1299792458OfASecond"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">path travelled by light in vacuum during a time interval of 1/299 792 458 of a second</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/litrePer100Kilometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">litre per 100 kilometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">liter per 100 kilometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/_100Kilometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">l/100 km</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">litre per 100 kilometre</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">liter per 100 kilometer</alternativeLabel> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/maximum"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">maximum</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mebi"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BinaryPrefix"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">IEC prefix</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mebi</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mebi</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mi</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">megabinary</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.048576e6</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mechanics"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mechanics</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mechanica</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Acceleration"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MassFraction"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Action"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularAcceleration"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularMomentum"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AngularSpeed"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AreaFraction"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Frequency"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Density"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Wavelength"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Speed"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DynamicViscosity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Enthalpy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Force"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Power"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Impulse"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Momentum"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Pressure"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificVolume"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Torque"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Wavenumber"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KinematicViscosity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/KineticEnergy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MomentOfInertia"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/VolumeFraction"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Period"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PotentialEnergy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Velocity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Weight"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Work"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day-Sidereal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hour-Sidereal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/minute-Sidereal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Sidereal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/shake"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Sidereal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year-Tropical"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigayear"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kayser"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gal"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/knot-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerHour"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerHour"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerDay"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDay"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerDay"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-InternationalPerHour"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/radianPerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-TimeSquared"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerAttosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCentisecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerDecisecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerExasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerFemtosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerGigasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerHectosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerKilosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMegasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMicrosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerMillisecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerNanosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPetasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerPicosecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerTerasecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametrePerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attohertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centihertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decahertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decihertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exahertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtohertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigahertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectohertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilohertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megahertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microhertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millihertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanohertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petahertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picohertz"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terahertz"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/mega"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mega</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mega</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e6</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuroPerMegatonne"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megaeuro per megatonne</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuro"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megatonne"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuroPerMegawatt"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megaeuro per megawatt</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuro"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megawatt"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuroPerPetajoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megaeuro per petajoule</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaeuro"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petajoule"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoulePerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megajoule per square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megajoule per vierkante meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MJ/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MJ m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MJ·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoulePerSquareMetreDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megajoule per square metre day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megajoule per vierkante meter dag</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megajoule"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreDay"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MJ/(m2 d)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MJ m-2 d-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MJ·m-2·d-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megametrePerKilojoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megametre per kilojoule</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilojoule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mm/kJ</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">1000 kilometre per kilojoule</alternativeLabel> - <unofficialAbbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1000 km/kJ</unofficialAbbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">megasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">megaseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ms2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metre-Kilogram-Second-AmpereSystemOfUnits"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SystemOfUnits"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre-kilogram-second-ampere system of units</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter-kilogram-seconde-ampère-systeem</label> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">Giorgi system of units</alternativeLabel> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="nl">Giorgi-stelsel</alternativeLabel> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Mass"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Time"/> - <hasBaseQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCurrent"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ampere"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasBaseUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Capacitance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Frequency"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricCharge"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricPotential"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ElectricalResistance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Energy"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Force"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Inductance"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFlux"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagneticFluxDensity"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MagnetomotiveForce"/> - <hasDerivedQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Power"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulomb"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/volt"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/farad"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ohm"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/weber"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tesla"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/henry"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/newton"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <hasDerivedUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <abbreviation xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-kg-s-A</abbreviation> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre kelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter kelvin</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m K</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·K</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metreKilogram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre kilogram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter kilogram</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m kg</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·kg</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/metrePerCubicMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">metre per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">meter per kubieke meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m·m-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microsecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μs2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">millisecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milliseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ms2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nanosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nanoseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ns2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petaseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ps2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">picosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">picoseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ps2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">terasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teraseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ts2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctoseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctosecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ys2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottaseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottasecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ys2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptosecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptoseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptosecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zs2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettasecond-TimeSquared"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedSecond-TimeSquared"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettasecond squared</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettaseconde kwadraat</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettasecond-Time"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zs2</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/micro"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">micro</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">micro</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">μ</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">u</alternativeSymbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e-6</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microgramPerJoule"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microgram per joule</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microgram per joule</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joule"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg/J</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg J-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg·J-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/microgramPerSquareMetreSecond-Time"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">microgram per square metre second</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">microgram per vierkante meter seconde</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreSecond-Time"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg/(m2 s)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg m-2 s-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg·m-2·s-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milli"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milli</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milli</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e-3</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/milligramPerKilometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">milligram per kilometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">milligram per kilometer</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg/km</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg km-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mg·km-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/minimum"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">minimum</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerYoctolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per yoctolitre is a unit of amount of substance concentration defined as mole divided by yoctolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per yoctolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per yoctoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/yl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol yl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·yl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerYottalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per yottalitre is a unit of amount of substance concentration defined as mole divided by yottalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per yottalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per yottaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Yl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Yl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Yl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerZeptolitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per zeptolitre is a unit of amount of substance concentration defined as mole divided by zeptolitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per zeptolitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per zeptoliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptolitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/zl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol zl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·zl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/molePerZettalitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/MolePerPrefixedLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Mole per zettalitre is a unit of amount of substance concentration defined as mole divided by zettalitre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">mole per zettalitre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">mole per zettaliter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettalitre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol/Zl</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol Zl-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mol·Zl-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/nano"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">nano</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">nano</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">n</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e-9</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillionPerYear"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">parts per million per year</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/year"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm/a</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm a-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm y-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm yr-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm/y</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm/yr</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm·a-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm·y-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm·yr-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pebi"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BinaryPrefix"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">IEC prefix</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pebi</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">pebi</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pi</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">petabinary</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.125899906842624e15</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">peta</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">peta</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">P</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e15</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/petamolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The petamolair is a unit of amount of substance concentration defined as 1.0e15 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">petamolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">petamolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/peta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/photometry"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">photometry</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">fotometrie</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Exposure"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Illuminance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousIntensity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Luminance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousEfficacy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousEnergy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/LuminousFlux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footlambert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lambert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/stilb"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaPerSquareCentimetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/candelaSteradian"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/footcandle"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/phot"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenPerSquareMetre"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/luxSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lumenPerWatt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attolux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decalux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exalux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megalux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microlux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petalux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picolux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teralux"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attocandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attolumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centicandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centilumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decacandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decalumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decicandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decilumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exacandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exalumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtocandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtolumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigacandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigalumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectocandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectolumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilocandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilolumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megacandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megalumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microcandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microlumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millicandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millilumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanocandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanolumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petacandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petalumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picocandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picolumen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teracandela"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teralumen"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/pico"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">pico</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">pico</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">p</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e-12</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/product"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">product</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/radiometryAndRadiobiology"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">radiometry and radiobiology</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">radiometrie en radiobiologie</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDose"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AbsorbedDoseRate"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Activity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/AmbientDoseEquivalent"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DoseEquivalent"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/DirectionalDoseEquivalent"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ExposureToXAndGammaRays"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Irradiance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Kerma"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/OrganDoseEquivalent"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PersonalDoseEquivalent"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Radiance"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RadiantEnergy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RadiantFlux"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RadiantIntensity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEnergyImparted"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rad"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rem"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/sievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/becquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/curie"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/röntgen"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/coulombPerKilogram"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/grayPerSecond-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attogray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centigray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decagray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decigray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exagray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtogray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigagray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectogray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilogray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megagray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microgray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/milligray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanogray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petagray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picogray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/teragray"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attobecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centibecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decabecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decibecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exabecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtobecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigabecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectobecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilobecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megabecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microbecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millibecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanobecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petabecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picobecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terabecquerel"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attosievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centisievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decasievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decisievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exasievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtosievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigasievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectosievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilosievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megasievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microsievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millisievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanosievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petasievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picosievert"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terasievert"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalAtmosphere-Standard"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal atmosphere (standard)</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde atmosfeer (standaard)</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/atmosphere-Standard"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">atm-1</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalDegreeCelsius"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal degree Celsius</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde graad Celsius</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">°C-1</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalDegreeCelsiusDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal degree Celsius day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde graad Celsius dag</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusDay"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">(°C d)-1</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalGram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal gram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde gram</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">g-1</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalKelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal kelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde kelvin</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">K-1</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalPartsPerMillionPerYear"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitExponentiation"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal parts per million</label> - <hasBase xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/partsPerMillion"/> - <hasExponent xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">-1</hasExponent> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ppm-1</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareMetreReciprocalGram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal square metre reciprocal gram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde vierkante meter omgekeerde gram</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareMetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalGram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-2 g-1</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-2·g-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareMetreReciprocalMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">reciprocal square metre reciprocal metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">omgekeerde vierkante meter omgekeerde meter</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalSquareMetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/reciprocalMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-2 m-1</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m-2·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimePerDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">second per day</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">seconde per dag</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s/d</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s d-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s·d-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/second-TimePerSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">second per square metre</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s/m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s m-2</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s·m-2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/shipping"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">shipping</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">shipping</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Speed"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/knot-International"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-InternationalPerHour"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreHertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre hertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter hertz</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 Hz</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·Hz</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreKelvin"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre kelvin</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter kelvin</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 K</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·K</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreNanometre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre nanometre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter nanometer</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 nm</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·nm</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerGram"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre per gram</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter per gram</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gram"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2/g</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 g-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·g-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSquareMetreDay"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre per square metre day</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetrePerSquareMetre"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/day"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2/(m2 d)</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 m-2 d-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·m-2·d-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreSteradian"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">square metre steradian</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">vierkante meter steradian</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2 sr</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">m2·sr</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/standardDeviation"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">standard deviation</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/steradianSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">steradian square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">steradiaal vierkante meter</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradian"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sr m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sr·m2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/steradianSquareMetreHertz"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">steradian square metre hertz</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">steradiaal vierkante meter hertz</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/steradianSquareMetre"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hertz"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sr m2 Hz</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sr·m2·Hz</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/sum"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Function"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">sum</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tebi"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BinaryPrefix"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">IEC prefix</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">tebi</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">tebi</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ti</symbol> - <alternativeLabel xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" xml:lang="en">terabinary</alternativeLabel> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.099511627776e12</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">tera</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">tera</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e12</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/teramolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The teramolair is a unit of amount of substance concentration defined as 1.0e12 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">teramolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">teramolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tera"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/triplePointOfWater"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">triple point of water</label> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/thermodynamics"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">thermodynamics</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">thermodynamica</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermodynamicTemperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/CelsiusTemperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Temperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Entropy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FahrenheitTemperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Heat"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatCapacity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatFlowRate"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatFluxDensity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/HeatTransferCoefficient"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/InternalEnergy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificHeatCapacity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/RankineTemperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ReaumurTemperature"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SpecificEntropy"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/TemperatureRate"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalConductivity"/> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ThermalResistance"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeFahrenheit"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeRankine"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeReaumur"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/joulePerKelvinKilogram"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerMetreKelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetreKelvinPerWatt"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/wattPerSquareMetreKelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsiusPerMinute-Time"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attodegreeCelsius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centidegreeCelsius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decidegreeCelsius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtodegreeCelsius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microdegreeCelsius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millidegreeCelsius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanodegreeCelsius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picodegreeCelsius"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attokelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centikelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decakelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decikelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exakelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtokelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigakelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectokelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilokelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megakelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/microkelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millikelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanokelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petakelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picokelvin"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terakelvin"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tonnePerCubicmetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">tonne per cubic metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">ton per kubieke meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cubicMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t/m3</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t m-3</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t·m-3</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/tonnePerHectare"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitDivision"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">tonne per hectare</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/tonne"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectare"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t/ha</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t ha-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">t·ha-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/typography"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/ApplicationArea"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">typography</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">typografie</label> - <usesQuantity xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/FontSize"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <usesUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/wattSquareMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/UnitMultiplication"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">watt square metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">watt vierkante meter</label> - <hasTerm1 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/watt"/> - <hasTerm2 xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/squareMetre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W m2</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">W·m2</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/xRange"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">x range</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/xy2DStartEndDistance"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">xy 2D start-end distance</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Distance"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/xyDistanceTravelled"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">xy distance travelled</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Distance"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yRange"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">y range</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yobi"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BinaryPrefix"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">IEC prefix</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yobi</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yobi</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yi</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.208925819614629174706176e24</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yocto</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yocto</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">y</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e-24</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctogramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Yoctogram per litre is a unit of density defined as yoctogram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctogram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctogram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctomolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yoctomolair is a unit of amount of substance concentration defined as 1.0e-24 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctomolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctomolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yocto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctomolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Yoctomole per litre is a unit of amount of substance concentration defined as yoctomole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctomole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctomole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ymol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ymol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ymol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctomolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yoctomole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yoctomole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yoctomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ymol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ymol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ymol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yotta</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yotta</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Y</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e24</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottagramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Yottagram per litre is a unit of density defined as yottagram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottagram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottagram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottagram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottamolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The yottamolair is a unit of amount of substance concentration defined as 1.0e24 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottamolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottamolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yotta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottamolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Yottamole per litre is a unit of amount of substance concentration defined as yottamole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottamole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottamole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ymol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ymol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ymol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/yottamolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">yottamole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">yottamole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yottamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ymol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ymol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ymol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zRange"> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">z range</label> - <subClassOf xmlns="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/cicero"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/pica-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-ATA"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Didot"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-Postscript"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/point-TeX"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/angstrom"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/astronomicalUnit"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/chain"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fathom-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/fermi"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/foot-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/furlong-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/inch-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/lightYear"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micron"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mil-Length"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-Statute"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/mile-USSurvey"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nauticalMile-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/parsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/rod-US"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/yard-International"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megaparsec"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/attometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/centimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/decimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/exametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/femtometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/gigametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/hectometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/kilometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/megametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/micrometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/nanometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/petametre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/picometre"/> - <commonlyHasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/terametre"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zebi"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/BinaryPrefix"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">IEC prefix</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zebi</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zebi</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zi</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1.180591620717411303424e21</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zepto</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zepto</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">z</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e-21</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptogramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Zeptogram per litre is a unit of density defined as zeptogram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptogram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptogram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptogram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptomolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zeptmolair is a unit of amount of substance concentration defined as 1.0e-21 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptomolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptomolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zepto"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptomolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Zeptomole per litre is a unit of amount of substance concentration defined as zeptomole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptomole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptomole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptomolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zeptomole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zeptomole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zeptomole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">zmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/SIPrefix"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zetta</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zetta</label> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Z</symbol> - <hasFactor xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#float">1e21</hasFactor> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettagramPerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedGramPerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Zettagram per litre is a unit of density defined as zettagram divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettagram per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettagram per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/density-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettagram"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zg/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zg l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zg·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettamolair"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedUnit"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">The zettamolair is a unit of amount of substance concentration defined as 1.0e21 molair.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettamolair</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettamolair</label> - <hasUnit xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/molair"/> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasPrefix xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zetta"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ZM</symbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettamolePerLitre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerLitre"/> - <comment xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">Zettamole per litre is a unit of amount of substance concentration defined as zettamole divided by litre.</comment> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettamole per litre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettamole per liter</label> - <hasDimension xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/amountOfSubstanceConcentration-Dimension"/> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/litre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zmol/l</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zmol l-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zmol·l-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/zettamolePerMetre"> - <rdf:type rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/PrefixedMolePerMetre"/> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="en">zettamole per metre</label> - <label xmlns="http://www.w3.org/2000/01/rdf-schema#" xml:lang="nl">zettamole per meter</label> - <hasNumerator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/zettamole"/> - <hasDenominator xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:resource="http://www.ontology-of-units-of-measure.org/resource/om-2/metre"/> - <symbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zmol/m</symbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zmol m-1</alternativeSymbol> - <alternativeSymbol xmlns="http://www.ontology-of-units-of-measure.org/resource/om-2/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zmol·m-1</alternativeSymbol> -</rdf:Description> - -<rdf:Description rdf:about="http://www.openisbn.com/isbn/1891389459/"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Book"/> - <creator xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Kenneth_Siedelmann"/> - <date xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1992</date> - <publisher xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/University_Science_Books"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Explanatory Supplement to the Astronomical Almanac</title> - <uri xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.openisbn.com/isbn/1891389459/</uri> - <isbn10 xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1891389459</isbn10> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Kenneth_Siedelmann"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kenneth Siedelmann</name> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/University_Science_Books"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Organization"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">University Science Books</name> - <based_near xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sausalito, California</based_near> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Hajo_Rijgersberg"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hajo Rijgersberg</name> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/VU"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Organization"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vrije Universiteit</name> - <based_near xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Amsterdam, The Netherlands</based_near> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/ApJ"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Journal"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Astrophysical Journal</title> - <uri xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://iopscience.iop.org/0004-637X/</uri> - <shortTitle xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ApJ</shortTitle> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Astrophysical_Techniques"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Book"/> - <creator xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/CR_Kitchin"/> - <date xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2003</date> - <publisher xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Institute_of_Physics_Publishing"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Astrophysical Techniques</title> - <uri xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.crcpress.com/product/isbn/9781466511156</uri> - <isbn13 xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9781466511156</isbn13> - <edition xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</edition> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/CR_Kitchin"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C.R. Kitchin</name> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Institute_of_Physics_Publishing"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Organization"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Institute of Physics Publishing</name> - <based_near xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bristol, UK</based_near> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Brengt_Stroemgren"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Brengt Strömgren</name> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Cambridge_University_Press"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Organization"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cambridge University Press</name> - <based_near xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cambridge, UK</based_near> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/DLCrawford"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">David L. Crawford</name> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Crawford1958Authors"> - <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq"/> - <rdf:_1 rdf:resource="http://www.wurvoc.org/bibliography/om-2/DLCrawford"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Edwin_Budding"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Edwin Budding</name> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/IntroAstronomicalPhotometry"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Book"/> - <creator xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Edwin_Budding"/> - <creator xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Osman_Demircan"/> - <date xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2007</date> - <publisher xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Cambridge_University_Press"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Introduction to Astronomical Photometry</title> - <uri xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://ebooks.cambridge.org/ebook.jsf?bid=CBO9780511536175</uri> - <isbn13 xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9780521847117</isbn13> - <edition xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</edition> - <authorList xmlns="http://purl.org/ontology/bibo/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/IntroAstronomicalPhotometryAuthors"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Osman_Demircan"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Osman Demircan</name> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/IntroAstronomicalPhotometryAuthors"> - <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq"/> - <rdf:_1 rdf:resource="http://www.wurvoc.org/bibliography/om-2/Edwin_Budding"/> - <rdf:_2 rdf:resource="http://www.wurvoc.org/bibliography/om-2/Osman_Demircan"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Jean_Meeus"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Jean Meeus</name> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/VistasAstronomy"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Journal"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vistas in Astronomy</title> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Stroemgren1956Authors"> - <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq"/> - <rdf:_1 rdf:resource="http://www.wurvoc.org/bibliography/om-2/Brengt_Stroemgren"/> -</rdf:Description> - -<rdf:Description rdf:about="http://www.wurvoc.org/bibliography/om-2/Willmann_Bell"> - <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Organization"/> - <name xmlns="http://xmlns.com/foaf/0.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Willmann-Bell Inc.</name> -</rdf:Description> - -<rdf:Description rdf:about="urn:isbn:0943396611"> - <rdf:type rdf:resource="http://purl.org/ontology/bibo/Book"/> - <creator xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Jean_Meeus"/> - <date xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1998</date> - <publisher xmlns="http://purl.org/dc/elements/1.1/" rdf:resource="http://www.wurvoc.org/bibliography/om-2/Willmann_Bell"/> - <title xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Astronomical Algorithms</title> - <uri xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.willbell.com/math/mc1.htm</uri> - <isbn10 xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0943396611</isbn10> - <edition xmlns="http://purl.org/ontology/bibo/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</edition> - <subject xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Algorithms</subject> - <subject xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Astronomy - Data processing</subject> - <subject xmlns="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Astronomy - Problems, exercises</subject> -</rdf:Description> - -</rdf:RDF> \ No newline at end of file diff --git a/dbrepo-semantics-service/pom.xml b/dbrepo-semantics-service/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..ee7eb251ee4f9566590c43c00311e3fdb775895b --- /dev/null +++ b/dbrepo-semantics-service/pom.xml @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-parent</artifactId> + <version>3.0.6</version> + </parent> + + <groupId>at.tuwien</groupId> + <artifactId>dbrepo-semantics-service</artifactId> + <version>1.2.0</version> + <name>dbrepo-semantics-service</name> + <description>Service that manages the tables</description> + + <packaging>pom</packaging> + <modules> + <module>rest-service</module> + <module>services</module> + <module>report</module> + </modules> + + <properties> + <java.version>17</java.version> + <spring-cloud.version>4.0.2</spring-cloud.version> + <mapstruct.version>1.5.5.Final</mapstruct.version> + <docker.version>3.3.0</docker.version> + <swagger.version>2.2.9</swagger.version> + <jacoco.version>0.8.10</jacoco.version> + <jwt.version>4.3.0</jwt.version> + <opencsv.version>5.7.1</opencsv.version> + <super-csv.version>2.4.0</super-csv.version> + <jsql.version>4.6</jsql.version> + <c3p0.version>0.9.5.5</c3p0.version> + <c3p0-hibernate.version>6.2.2.Final</c3p0-hibernate.version> + </properties> + + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-validation</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-starter-bootstrap</artifactId> + <version>${spring-cloud.version}</version> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-security</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.security</groupId> + <artifactId>spring-security-test</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-actuator</artifactId> + </dependency> + <!-- Authentication --> + <dependency> + <groupId>com.auth0</groupId> + <artifactId>java-jwt</artifactId> + <version>${jwt.version}</version> + </dependency> + <!-- Entities and API --> + <dependency> + <groupId>at.tuwien</groupId> + <artifactId>dbrepo-metadata-db-entites</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>at.tuwien</groupId> + <artifactId>dbrepo-metadata-db-api</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-jpa</artifactId> + </dependency> + <!-- Data Source --> + <dependency> + <groupId>org.mariadb.jdbc</groupId> + <artifactId>mariadb-java-client</artifactId> + <version>${mariadb.version}</version> + </dependency> + <!-- Testing --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <exclusions> + <exclusion> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-vintage-engine</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>${jacoco.version}</version> + </dependency> + <dependency> + <groupId>at.tuwien</groupId> + <artifactId>dbrepo-metadata-db-test</artifactId> + <version>${project.version}</version> + </dependency> + <!-- IDE --> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + </dependency> + <!-- Mapping --> + <dependency> + <groupId>org.mapstruct</groupId> + <artifactId>mapstruct-processor</artifactId> + <version>${mapstruct.version}</version> + <optional>true</optional><!-- IntelliJ --> + </dependency> + <dependency> + <groupId>org.mapstruct</groupId> + <artifactId>mapstruct</artifactId> + <version>${mapstruct.version}</version> + </dependency> + </dependencies> + + <build> + <resources> + <resource> + <directory>${basedir}/src/main/resources</directory> + <filtering>true</filtering> + <includes> + <include>**/application*.yml</include> + </includes> + </resource> + </resources> + <plugins> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>${jacoco.version}</version> + <configuration> + <excludes> + <exclude>at/tuwien/mapper/**/*</exclude> + <exclude>at/tuwien/exception/**/*</exclude> + <exclude>at/tuwien/config/**/*</exclude> + <exclude>at/tuwien/auth/**/*</exclude> + <exclude>at/tuwien/handlers/**/*</exclude> + <exclude>**/DbrepoSemanticsServiceApplication.class</exclude> + </excludes> + </configuration> + <executions> + <execution> + <id>default-prepare-agent</id> + <goals> + <goal>prepare-agent</goal> + </goals> + </execution> + <execution> + <id>report</id> + <phase>verify</phase> + <goals> + <goal>report</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> diff --git a/dbrepo-semantics-service/pywsgi.py b/dbrepo-semantics-service/pywsgi.py deleted file mode 100644 index ed26090cef50e4c1255af334bd40e0c4fc57f4fa..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/pywsgi.py +++ /dev/null @@ -1,13 +0,0 @@ -import os -from gevent.pywsgi import WSGIServer -from app import app -import logging - -rest_server_port = int(os.getenv('PORT_APP', 5010)) -rest_server_host = os.getenv('FLASK_RUN_HOST', '0.0.0.0') -path = os.getenv('READY_FILE', './ready') - -logging.basicConfig(format='%(asctime)s %(levelname)-6s %(message)s', level=logging.DEBUG) - -http_server = WSGIServer(listener=(rest_server_host, rest_server_port), application=app, log=logging) -http_server.serve_forever() diff --git a/dbrepo-semantics-service/report/pom.xml b/dbrepo-semantics-service/report/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..b55b44b7a2fc3fe0bc11fdcdb531b90c028c0415 --- /dev/null +++ b/dbrepo-semantics-service/report/pom.xml @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>at.tuwien</groupId> + <artifactId>dbrepo-semantics-service</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>report</artifactId> + <version>1.2.0</version> + <name>dbrepo-semantics-service-report</name> + <description> + This module is only intended for the pipeline coverage report. See the detailed report in the + respective modules + </description> + + <properties> + <jacoco.version>0.8.7</jacoco.version> + </properties> + + <dependencies> + <dependency> + <groupId>at.tuwien</groupId> + <artifactId>rest-service</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>at.tuwien</groupId> + <artifactId>services</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>${jacoco.version}</version> + <executions> + <execution> + <id>report-aggregate</id> + <phase>verify</phase> + <goals> + <goal>report-aggregate</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> \ No newline at end of file diff --git a/dbrepo-semantics-service/requirements.txt b/dbrepo-semantics-service/requirements.txt deleted file mode 100644 index b3a686a9cd73b4c53cb266f28844b05572471b7d..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/requirements.txt +++ /dev/null @@ -1,55 +0,0 @@ -attrs==23.1.0 -certifi==2023.5.7 -chardet==5.1.0 -charset-normalizer==2.0.12 -click==8.1.3 -coverage==7.1.0 -docker==5.0.0 -exceptiongroup==1.1.1 -flasgger==0.9.5 -Flask==2.2.2 -Flask-JWT-Extended==4.4.4 -gevent==21.8.0 -greenlet==1.1.3.post0 -html5lib==1.1 -idna==3.4 -importlib-metadata==6.6.0 -iniconfig==2.0.0 -isodate==0.6.1 -itsdangerous==2.1.2 -Jinja2==3.1.2 -json-table-schema==0.2.1 -jsonschema==4.17.3 -lxml==4.9.2 -mariadb==1.0.10 -MarkupSafe==2.1.2 -messytables==0.15.2 -mistune==2.0.5 -numpy==1.24.3 -packaging==23.1 -pandas==1.2.3 -pluggy==1.0.0 -prometheus-client==0.16.0 -prometheus-flask-exporter==0.21.0 -psycopg2-binary==2.8.6 -PyJWT==2.6.0 -pyparsing==3.0.9 -pyrsistent==0.19.3 -pytest==7.2.1 -python-dateutil==2.8.2 -python-magic==0.4.27 -pytz==2023.3 -PyYAML==6.0 -rdflib==6.2.0 -requests==2.26.0 -six==1.16.0 -SQLAlchemy==1.4.15 -tomli==2.0.1 -urllib3==1.26.15 -webencodings==0.5.1 -websocket-client==1.5.1 -Werkzeug==2.3.3 -xlrd==2.0.1 -zipp==3.15.0 -zope.event==4.6 -zope.interface==6.0 diff --git a/dbrepo-semantics-service/rest-service/pom.xml b/dbrepo-semantics-service/rest-service/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..9891e5ae43720227fd1948d299515eed74d4527f --- /dev/null +++ b/dbrepo-semantics-service/rest-service/pom.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>at.tuwien</groupId> + <artifactId>dbrepo-semantics-service</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>rest-service</artifactId> + <version>1.2.0</version> + <name>dbrepo-semantics-service-rest-service</name> + + <properties> + <jacoco.version>0.8.7</jacoco.version> + </properties> + + <dependencies> + <dependency> + <groupId>at.tuwien</groupId> + <artifactId>services</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>repackage</goal><!-- to make it exuteable with $ java -jar ./app.jar --> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> \ No newline at end of file diff --git a/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/DbrepoSemanticsServiceApplication.java b/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/DbrepoSemanticsServiceApplication.java new file mode 100644 index 0000000000000000000000000000000000000000..d7d173f41e3b0b3047d71594ea7c11705d35bfa4 --- /dev/null +++ b/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/DbrepoSemanticsServiceApplication.java @@ -0,0 +1,24 @@ +package at.tuwien; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.autoconfigure.domain.EntityScan; +import org.springframework.data.elasticsearch.repository.config.EnableElasticsearchRepositories; +import org.springframework.data.jpa.repository.config.EnableJpaAuditing; +import org.springframework.data.jpa.repository.config.EnableJpaRepositories; +import org.springframework.transaction.annotation.EnableTransactionManagement; + + +@EnableJpaAuditing +@SpringBootApplication +@EnableTransactionManagement +@EntityScan(basePackages = {"at.tuwien.entities"}) +@EnableElasticsearchRepositories(basePackages = {"at.tuwien.repository.elastic"}) +@EnableJpaRepositories(basePackages = {"at.tuwien.repository.jpa"}) +public class DbrepoSemanticsServiceApplication { + + public static void main(String[] args) { + SpringApplication.run(DbrepoSemanticsServiceApplication.class, args); + } + +} diff --git a/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/config/SwaggerConfig.java b/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/config/SwaggerConfig.java new file mode 100644 index 0000000000000000000000000000000000000000..140a531132f16ed713aa6242966ebefadb55aca2 --- /dev/null +++ b/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/config/SwaggerConfig.java @@ -0,0 +1,54 @@ +package at.tuwien.config; + +import io.swagger.v3.oas.models.ExternalDocumentation; +import io.swagger.v3.oas.models.OpenAPI; +import io.swagger.v3.oas.models.info.Contact; +import io.swagger.v3.oas.models.info.Info; +import io.swagger.v3.oas.models.info.License; +import io.swagger.v3.oas.models.servers.Server; +import org.springdoc.core.GroupedOpenApi; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +import java.util.List; + +@Configuration +public class SwaggerConfig { + + @Value("${app.version:unknown}") + private String version; + + @Bean + public OpenAPI springShopOpenAPI() { + return new OpenAPI() + .info(new Info() + .title("Database Repository Table Service API") + .contact(new Contact() + .name("Prof. Andreas Rauber") + .email("andreas.rauber@tuwien.ac.at")) + .description("Service that manages the tables") + .version(version) + .license(new License() + .name("Apache 2.0") + .url("https://www.apache.org/licenses/LICENSE-2.0"))) + .externalDocs(new ExternalDocumentation() + .description("Sourcecode Documentation") + .url("https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services")) + .servers(List.of(new Server() + .description("Generated server url") + .url("http://localhost:9094"), + new Server() + .description("Sandbox") + .url("https://dbrepo2.tuwien.ac.at"))); + } + + @Bean + public GroupedOpenApi publicApi() { + return GroupedOpenApi.builder() + .group("semantics-service") + .pathsToMatch("/api/**") + .build(); + } + +} diff --git a/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/endpoints/OntologyEndpoint.java b/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/endpoints/OntologyEndpoint.java new file mode 100644 index 0000000000000000000000000000000000000000..7b5a833db5683cb82e29492418f1b6b9cee6615f --- /dev/null +++ b/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/endpoints/OntologyEndpoint.java @@ -0,0 +1,86 @@ +package at.tuwien.endpoints; + +import at.tuwien.api.semantics.OntologyBriefDto; +import at.tuwien.api.semantics.OntologyCreateDto; +import at.tuwien.api.semantics.OntologyDto; +import at.tuwien.mapper.OntologyMapper; +import at.tuwien.service.OntologyService; +import io.micrometer.core.annotation.Timed; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.responses.ApiResponses; +import io.swagger.v3.oas.annotations.security.SecurityRequirement; +import lombok.extern.log4j.Log4j2; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.web.bind.annotation.*; + +import jakarta.validation.Valid; +import jakarta.validation.constraints.NotNull; + +import java.security.Principal; +import java.util.List; + +@Log4j2 +@CrossOrigin(origins = "*") +@RestController +@RequestMapping("/api/semantics/ontology") +public class OntologyEndpoint { + + private final OntologyMapper ontologyMapper; + private final OntologyService ontologyService; + + @Autowired + public OntologyEndpoint(OntologyMapper ontologyMapper, OntologyService ontologyService) { + this.ontologyMapper = ontologyMapper; + this.ontologyService = ontologyService; + } + + @GetMapping + @Transactional + @Timed(value = "semantics.list-ontologies", description = "Time needed to list ontologies") + @Operation(summary = "List all ontologies") + @ApiResponses(value = { + @ApiResponse(responseCode = "200", + description = "List all ontologies", + content = {@Content( + mediaType = "application/json", + schema = @Schema(implementation = OntologyDto[].class))}), + }) + public ResponseEntity<List<OntologyBriefDto>> findAll() { + log.debug("endpoint find all ontologies"); + final List<OntologyBriefDto> dtos = ontologyService.findAll() + .stream() + .map(ontologyMapper::ontologyToOntologyBriefDto) + .toList(); + log.trace("create ontology resulted in dtos {}", dtos); + return ResponseEntity.ok(dtos); + } + + @PostMapping + @Transactional + @PreAuthorize("hasAuthority('create-ontology')") + @Timed(value = "semantics.create-ontology", description = "Time needed to register a new ontology") + @Operation(summary = "Register a new ontology", security = @SecurityRequirement(name = "bearerAuth")) + @ApiResponses(value = { + @ApiResponse(responseCode = "201", + description = "Registered ontology successfully", + content = {@Content( + mediaType = "application/json", + schema = @Schema(implementation = OntologyDto.class))}), + }) + public ResponseEntity<OntologyDto> create(@NotNull @Valid @RequestBody OntologyCreateDto createDto, + @NotNull Principal principal) { + log.debug("endpoint create ontology, createDto={}, principal={}", createDto, principal); + final OntologyDto dto = ontologyMapper.ontologyToOntologyDto(ontologyService.create(createDto)); + log.trace("create ontology resulted in dto {}", dto); + return ResponseEntity.status(HttpStatus.CREATED) + .body(dto); + } + +} diff --git a/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/handlers/ApiExceptionHandler.java b/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/handlers/ApiExceptionHandler.java new file mode 100644 index 0000000000000000000000000000000000000000..21e3330219e76979e944fe0405a05efd09adb38c --- /dev/null +++ b/dbrepo-semantics-service/rest-service/src/main/java/at/tuwien/handlers/ApiExceptionHandler.java @@ -0,0 +1,21 @@ +package at.tuwien.handlers; + +import org.springframework.web.bind.annotation.ControllerAdvice; +import org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler; + +@ControllerAdvice +public class ApiExceptionHandler extends ResponseEntityExceptionHandler { + +// @Hidden +// @ResponseStatus(HttpStatus.GATEWAY_TIMEOUT) +// @ExceptionHandler({AmqpException.class}) +// public ResponseEntity<ApiErrorDto> handle(AmqpException e, WebRequest request) { +// final ApiErrorDto response = ApiErrorDto.builder() +// .status(HttpStatus.GATEWAY_TIMEOUT) +// .message(e.getLocalizedMessage()) +// .code("error.table.amqp") +// .build(); +// return new ResponseEntity<>(response, new HttpHeaders(), response.getStatus()); +// } + +} diff --git a/dbrepo-semantics-service/rest-service/src/main/resources/application-local.yml b/dbrepo-semantics-service/rest-service/src/main/resources/application-local.yml new file mode 100644 index 0000000000000000000000000000000000000000..cea3a41bb4f0e062040fe0eaa35a95246d66a0ae --- /dev/null +++ b/dbrepo-semantics-service/rest-service/src/main/resources/application-local.yml @@ -0,0 +1,50 @@ +app.version: '@project.version@' +spring: + main.banner-mode: off + datasource: + url: jdbc:mariadb://localhost:3306/fda + driver-class-name: org.mariadb.jdbc.Driver + username: root + password: dbrepo + jpa: + show-sql: false + database-platform: org.hibernate.dialect.MariaDBDialect + hibernate: + ddl-auto: validate + use-new-id-generator-mappings: false + open-in-view: false + properties: + hibernate: + default_schema: fda + jdbc: + time_zone: UTC + application: + name: semantics-service + rabbitmq: + host: localhost + virtual-host: dbrepo + username: fda + password: fda + elasticsearch: + password: elastic + username: elastic + uris: http://localhost:9200 + cloud: + loadbalancer.ribbon.enabled: false +management.endpoints.web.exposure.include: health,info,prometheus +server: + port: 9097 +logging: + pattern.console: "%d %highlight(%-5level) %msg%n" + level: + root: warn + at.tuwien.: trace + org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver: debug +fda: + ready.path: ./ready + jwt: + issuer: http://localhost/realms/dbrepo + public_key: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqqnHQ2BWWW9vDNLRCcxD++xZg/16oqMo/c1l+lcFEjjAIJjJp/HqrPYU/U9GvquGE6PbVFtTzW1KcKawOW+FJNOA3CGo8Q1TFEfz43B8rZpKsFbJKvQGVv1Z4HaKPvLUm7iMm8Hv91cLduuoWx6Q3DPe2vg13GKKEZe7UFghF+0T9u8EKzA/XqQ0OiICmsmYPbwvf9N3bCKsB/Y10EYmZRb8IhCoV9mmO5TxgWgiuNeCTtNCv2ePYqL/U0WvyGFW0reasIK8eg3KrAUj8DpyOgPOVBn3lBGf+3KFSYi+0bwZbJZWqbC/Xlk20Go1YfeJPRIt7ImxD27R/lNjgDO/MwIDAQAB + client_secret: client-secret + client_id: dbrepo-client + gateway.endpoint: http://localhost \ No newline at end of file diff --git a/dbrepo-semantics-service/rest-service/src/main/resources/application.yml b/dbrepo-semantics-service/rest-service/src/main/resources/application.yml new file mode 100644 index 0000000000000000000000000000000000000000..a26264fb3d74bfde1b6eb6b62223ff3e805e1cfe --- /dev/null +++ b/dbrepo-semantics-service/rest-service/src/main/resources/application.yml @@ -0,0 +1,50 @@ +app.version: '@project.version@' +spring: + main.banner-mode: off + datasource: + url: "jdbc:mariadb://metadata-db:3306/${METADATA_DB}" + driver-class-name: org.mariadb.jdbc.Driver + username: "${METADATA_USERNAME}" + password: "${METADATA_PASSWORD}" + jpa: + show-sql: false + database-platform: org.hibernate.dialect.MariaDBDialect + hibernate: + ddl-auto: validate + use-new-id-generator-mappings: false + open-in-view: false + properties: + hibernate: + default_schema: "${METADATA_DB}" + jdbc: + time_zone: UTC + application: + name: semantics-service + rabbitmq: + host: broker-service + virtual-host: dbrepo + username: "${BROKER_USERNAME}" + password: "${BROKER_PASSWORD}" + elasticsearch: + password: "${ELASTIC_PASSWORD}" + username: elastic + uris: http://search-service:9200 + cloud: + loadbalancer.ribbon.enabled: false +management.endpoints.web.exposure.include: health,info,prometheus +server: + port: 9097 +logging: + pattern.console: "%d %highlight(%-5level) %msg%n" + level: + root: warn + at.tuwien.: "${LOG_LEVEL}" + org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver: debug +fda: + ready.path: /ready + jwt: + issuer: "${JWT_ISSUER}" + public_key: "${JWT_PUBKEY}" + client_secret: "${DBREPO_CLIENT_SECRET}" + client_id: "${CLIENT_ID}" + gateway.endpoint: http://gateway-service \ No newline at end of file diff --git a/dbrepo-semantics-service/test/__init__.py b/dbrepo-semantics-service/rest-service/src/main/resources/config.properties similarity index 100% rename from dbrepo-semantics-service/test/__init__.py rename to dbrepo-semantics-service/rest-service/src/main/resources/config.properties diff --git a/dbrepo-semantics-service/rest-service/src/main/resources/mariadb_hibernate.cfg.xml b/dbrepo-semantics-service/rest-service/src/main/resources/mariadb_hibernate.cfg.xml new file mode 100644 index 0000000000000000000000000000000000000000..5d1f8bd44e7e2f044e1effb24191f4262d83dd52 --- /dev/null +++ b/dbrepo-semantics-service/rest-service/src/main/resources/mariadb_hibernate.cfg.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE hibernate-configuration PUBLIC + "-//Hibernate/Hibernate Configuration DTD 3.0//EN" + "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> +<hibernate-configuration> + <session-factory> + <property name="current_session_context_class">thread</property> + <property name="transaction.coordinator_class">jdbc</property> + <property name="c3p0.min_size">5</property> + <property name="c3p0.max_size">30</property> + <property name="c3p0.acquire_increment">5</property> + <property name="c3p0.timeout">1800</property> + <property name="show_sql">true</property> + <property name="format_sql">true</property> + <property name="hbm2ddl.auto">update</property> + <mapping class="at.tuwien.querystore.Query" /> + <mapping class="at.tuwien.querystore.Table" /> + <mapping class="at.tuwien.querystore.Column" /> + </session-factory> +</hibernate-configuration> diff --git a/dbrepo-semantics-service/rest-service/src/test/java/at/tuwien/BaseUnitTest.java b/dbrepo-semantics-service/rest-service/src/test/java/at/tuwien/BaseUnitTest.java new file mode 100644 index 0000000000000000000000000000000000000000..01f84e12b909533314c3cc741739e02801e78ee5 --- /dev/null +++ b/dbrepo-semantics-service/rest-service/src/test/java/at/tuwien/BaseUnitTest.java @@ -0,0 +1,9 @@ +package at.tuwien; + +import at.tuwien.test.BaseTest; +import org.springframework.test.context.TestPropertySource; + +@TestPropertySource(locations = "classpath:application.properties") +public abstract class BaseUnitTest extends BaseTest { + +} diff --git a/dbrepo-semantics-service/rest-service/src/test/resources/application.properties b/dbrepo-semantics-service/rest-service/src/test/resources/application.properties new file mode 100644 index 0000000000000000000000000000000000000000..65007f07659129fba0dbf7f2f6dc6f2c29d2ca7d --- /dev/null +++ b/dbrepo-semantics-service/rest-service/src/test/resources/application.properties @@ -0,0 +1,28 @@ +# enable local spring profile +spring.profiles.active=local + +# disable discovery +spring.cloud.discovery.enabled=false + +# disable cloud config and config discovery +spring.cloud.config.discovery.enabled=false +spring.cloud.config.enabled=false + +# internal datasource +# spring 6 fix https://github.com/h2database/h2database/issues/3363 +spring.datasource.url=jdbc:h2:mem:testdb;NON_KEYWORDS=VALUE,KEY;DB_CLOSE_ON_EXIT=FALSE;INIT=CREATE SCHEMA IF NOT EXISTS FDA +spring.datasource.driverClassName=org.h2.Driver +spring.datasource.username=sa +spring.datasource.password=password +spring.jpa.database-platform=org.hibernate.dialect.H2Dialect +spring.jpa.hibernate.ddl-auto=create-drop +spring.jpa.show-sql=false + +# log +logging.level.org.hibernate.SQL=trace + +# rabbitmq +spring.rabbitmq.host=dbrepo-broker-service +spring.rabbitmq.virtual-host=/ +spring.rabbitmq.username=guest +spring.rabbitmq.password=guest \ No newline at end of file diff --git a/dbrepo-semantics-service/rest-service/src/test/resources/species/Species.sql b/dbrepo-semantics-service/rest-service/src/test/resources/species/Species.sql new file mode 100644 index 0000000000000000000000000000000000000000..957368fcc773ecf22f419585b50206ad56359bc9 --- /dev/null +++ b/dbrepo-semantics-service/rest-service/src/test/resources/species/Species.sql @@ -0,0 +1,7 @@ +/* https://sandbox.zenodo.org/api/files/6aca3421-add3-489b-8c4a-35228fe5c683/species_id.csv */ +CREATE TABLE maldi_ms_data +( + qu VARCHAR(255) NOT NULL, + species VARCHAR(255) NOT NULL, + score VARCHAR(255) NOT NULL +) WITH SYSTEM VERSIONING; \ No newline at end of file diff --git a/dbrepo-semantics-service/rest-service/src/test/resources/traffic/TrafficCh.sql b/dbrepo-semantics-service/rest-service/src/test/resources/traffic/TrafficCh.sql new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dbrepo-semantics-service/rest-service/src/test/resources/weather/WeatherAus.sql b/dbrepo-semantics-service/rest-service/src/test/resources/weather/WeatherAus.sql new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dbrepo-semantics-service/save.py b/dbrepo-semantics-service/save.py deleted file mode 100644 index 943bc6e375c47a4f395e1a002685a5a131d9ea81..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/save.py +++ /dev/null @@ -1,45 +0,0 @@ -import logging -import os -import mariadb - - -def insert_mdb_concepts(uri, name) -> int: - try: - # Connecting to metadata database - database = os.getenv("METADATA_DB", "fda") - username = os.getenv("METADATA_USERNAME", "root") - password = os.getenv("METADATA_PASSWORD", "dbrepo") - conn = mariadb.connect(database=database, user=username, host="metadata-db", password=password) - cursor = conn.cursor() - - # Insert tblnames into table mdb_TABLES - cursor.execute( - "INSERT IGNORE INTO mdb_concepts (uri, name, created) VALUES (%s, %s, current_timestamp)", - (uri, name,)) - logging.info("Created concept in metadata database") - conn.commit() - conn.close() - return 1 - except Exception as e: - logging.error("Error while connecting to metadata database", e) - - -def insert_mdb_units(uri, name) -> int: - try: - # Connecting to metadata database - database = os.getenv("METADATA_DB", "fda") - username = os.getenv("METADATA_USERNAME", "root") - password = os.getenv("METADATA_PASSWORD", "dbrepo") - conn = mariadb.connect(database=database, user=username, host="metadata-db", password=password) - cursor = conn.cursor() - - # Insert tblnames into table mdb_TABLES - cursor.execute( - "INSERT IGNORE INTO mdb_units (uri, name, created) VALUES (%s, %s, current_timestamp)", - (uri, name,)) - logging.info("Created unit in metadata database") - conn.commit() - conn.close() - return 1 - except Exception as e: - logging.error("Error while connecting to metadata database", e) diff --git a/dbrepo-semantics-service/service_ready b/dbrepo-semantics-service/service_ready new file mode 100644 index 0000000000000000000000000000000000000000..b2e4f9df6804f249ba8aadd72f742929072badaa --- /dev/null +++ b/dbrepo-semantics-service/service_ready @@ -0,0 +1,6 @@ +#!/bin/bash +if [ -f /ready ]; then + echo "service is ready and accepting connections" + exit 0 +fi +exit 1 \ No newline at end of file diff --git a/dbrepo-semantics-service/services/pom.xml b/dbrepo-semantics-service/services/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..48080b7e8864638e30805ead13f673ef884c44b4 --- /dev/null +++ b/dbrepo-semantics-service/services/pom.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <artifactId>dbrepo-semantics-service</artifactId> + <groupId>at.tuwien</groupId> + <version>1.2.0</version> + </parent> + + <artifactId>services</artifactId> + <version>1.2.0</version> + <name>dbrepo-semantics-service-services</name> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>${java.version}</source> + <target>${java.version}</target> + <annotationProcessorPaths> + <path> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>${lombok.version}</version> + </path> + <!-- keep this order https://stackoverflow.com/questions/47676369/mapstruct-and-lombok-not-working-together#answer-65021876 --> + <path> + <groupId>org.mapstruct</groupId> + <artifactId>mapstruct-processor</artifactId> + <version>${mapstruct.version}</version> + </path> + </annotationProcessorPaths> + </configuration> + </plugin> + </plugins> + </build> + +</project> \ No newline at end of file diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/auth/AuthTokenFilter.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/auth/AuthTokenFilter.java new file mode 100644 index 0000000000000000000000000000000000000000..92b60f4f8a5ed8a566e2504d71b63478b1593f68 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/auth/AuthTokenFilter.java @@ -0,0 +1,100 @@ +package at.tuwien.auth; + +import at.tuwien.api.auth.RealmAccessDto; +import at.tuwien.api.user.UserDetailsDto; +import com.auth0.jwt.JWT; +import com.auth0.jwt.JWTVerifier; +import com.auth0.jwt.algorithms.Algorithm; +import com.auth0.jwt.interfaces.DecodedJWT; +import jakarta.servlet.FilterChain; +import jakarta.servlet.ServletException; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; +import org.springframework.security.core.authority.SimpleGrantedAuthority; +import org.springframework.security.core.context.SecurityContextHolder; +import org.springframework.security.core.userdetails.UserDetails; +import org.springframework.security.web.authentication.WebAuthenticationDetailsSource; +import org.springframework.util.StringUtils; +import org.springframework.web.filter.OncePerRequestFilter; + +import java.io.IOException; +import java.security.KeyFactory; +import java.security.NoSuchAlgorithmException; +import java.security.interfaces.RSAPublicKey; +import java.security.spec.InvalidKeySpecException; +import java.security.spec.X509EncodedKeySpec; +import java.util.Arrays; +import java.util.Base64; +import java.util.stream.Collectors; + +@Slf4j +public class AuthTokenFilter extends OncePerRequestFilter { + + @Value("${fda.jwt.issuer}") + private String issuer; + + @Value("${fda.jwt.public_key}") + private String publicKey; + + @Override + protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) + throws ServletException, IOException { + final String jwt = parseJwt(request); + if (jwt != null) { + final UserDetails userDetails = verifyJwt(jwt); + log.debug("authenticated user {}", userDetails); + final UsernamePasswordAuthenticationToken authentication = new UsernamePasswordAuthenticationToken( + userDetails, null, userDetails.getAuthorities()); + authentication.setDetails(new WebAuthenticationDetailsSource().buildDetails(request)); + + SecurityContextHolder.getContext().setAuthentication(authentication); + } + filterChain.doFilter(request, response); + } + + public UserDetails verifyJwt(String token) throws ServletException { + final KeyFactory kf; + try { + kf = KeyFactory.getInstance("RSA"); + } catch (NoSuchAlgorithmException e) { + log.error("Failed to find RSA algorithm"); + throw new ServletException("Failed to find RSA algorithm", e); + } + final X509EncodedKeySpec keySpecX509 = new X509EncodedKeySpec(Base64.getDecoder().decode(publicKey)); + final RSAPublicKey pubKey; + try { + pubKey = (RSAPublicKey) kf.generatePublic(keySpecX509); + } catch (InvalidKeySpecException e) { + log.error("Provided public key is invalid"); + throw new ServletException("Provided public key is invalid", e); + } + final Algorithm algorithm = Algorithm.RSA256(pubKey, null); + JWTVerifier verifier = JWT.require(algorithm) + .withIssuer(issuer) + .withAudience("spring") + .build(); + final DecodedJWT jwt = verifier.verify(token); + final RealmAccessDto realmAccess = jwt.getClaim("realm_access").as(RealmAccessDto.class); + return UserDetailsDto.builder() + .username(jwt.getClaim("client_id").asString()) + .authorities(Arrays.stream(realmAccess.getRoles()).map(SimpleGrantedAuthority::new).collect(Collectors.toList())) + .build(); + } + + /** + * Parses the token from the HTTP header of the request + * + * @param request The request. + * @return The token. + */ + public String parseJwt(HttpServletRequest request) { + String headerAuth = request.getHeader("Authorization"); + if (StringUtils.hasText(headerAuth) && headerAuth.startsWith("Bearer ")) { + return headerAuth.substring(7, headerAuth.length()); + } + return null; + } +} \ No newline at end of file diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/ElasticsearchConfig.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/ElasticsearchConfig.java new file mode 100644 index 0000000000000000000000000000000000000000..58079c0b9c7c08d8c0ae75ee1ecf0191a7d19f65 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/ElasticsearchConfig.java @@ -0,0 +1,45 @@ +package at.tuwien.config; + +import co.elastic.clients.elasticsearch.ElasticsearchClient; +import co.elastic.clients.json.jackson.JacksonJsonpMapper; +import co.elastic.clients.transport.ElasticsearchTransport; +import co.elastic.clients.transport.rest_client.RestClientTransport; +import lombok.extern.log4j.Log4j2; +import org.apache.http.HttpHost; +import org.apache.http.auth.AuthScope; +import org.apache.http.auth.UsernamePasswordCredentials; +import org.apache.http.client.CredentialsProvider; +import org.apache.http.impl.client.BasicCredentialsProvider; +import org.elasticsearch.client.RestClient; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +@Log4j2 +@Configuration +public class ElasticsearchConfig { + + @Value("${spring.elasticsearch.uris}") + private String elasticEndpoint; + + @Value("${spring.elasticsearch.username}") + private String elasticUsername; + + @Value("${spring.elasticsearch.password}") + private String elasticPassword; + + @Bean + public ElasticsearchClient elasticsearchClient() { + log.debug("elastic endpoint={}", elasticEndpoint); + final CredentialsProvider credentialsProvider = new BasicCredentialsProvider(); + credentialsProvider.setCredentials(AuthScope.ANY, new UsernamePasswordCredentials(elasticUsername, elasticPassword)); + final RestClient restClient = RestClient.builder(HttpHost.create(elasticEndpoint)) + .setHttpClientConfigCallback(httpClientBuilder -> httpClientBuilder + .setDefaultCredentialsProvider(credentialsProvider)) + .build(); + ElasticsearchTransport transport = new RestClientTransport( + restClient, new JacksonJsonpMapper()); + return new ElasticsearchClient(transport); + } + +} \ No newline at end of file diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/GatewayConfig.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/GatewayConfig.java new file mode 100644 index 0000000000000000000000000000000000000000..d89fef950ad78e4eb1a82fa2385b8f9d6a0cf2a8 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/GatewayConfig.java @@ -0,0 +1,40 @@ +package at.tuwien.config; + +import lombok.Getter; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.http.client.support.BasicAuthenticationInterceptor; +import org.springframework.web.client.RestTemplate; +import org.springframework.web.util.DefaultUriBuilderFactory; + +@Getter +@Configuration +public class GatewayConfig { + + @Value("${fda.gateway.endpoint}") + private String gatewayEndpoint; + + @Value("${spring.rabbitmq.username}") + private String brokerUsername; + + @Value("${spring.rabbitmq.password}") + private String brokerPassword; + + @Bean + public RestTemplate restTemplate() { + final RestTemplate restTemplate = new RestTemplate(); + restTemplate.setUriTemplateHandler(new DefaultUriBuilderFactory(gatewayEndpoint)); + return restTemplate; + } + + @Bean("brokerRestTemplate") + public RestTemplate brokerRestTemplate() { + final RestTemplate restTemplate = new RestTemplate(); + restTemplate.setUriTemplateHandler(new DefaultUriBuilderFactory(gatewayEndpoint)); + restTemplate.getInterceptors() + .add(new BasicAuthenticationInterceptor(brokerUsername, brokerPassword)); + return restTemplate; + } + +} diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/JacksonConfig.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/JacksonConfig.java new file mode 100644 index 0000000000000000000000000000000000000000..c4944a469174ad1962d5c54cc483400dbee12f1d --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/JacksonConfig.java @@ -0,0 +1,30 @@ +package at.tuwien.config; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializationFeature; +import com.fasterxml.jackson.datatype.jdk8.Jdk8Module; +import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; +import lombok.extern.slf4j.Slf4j; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +import java.util.Date; +import java.util.TimeZone; + +@Slf4j +@Configuration +public class JacksonConfig { + + @Bean + public ObjectMapper objectMapper() throws JsonProcessingException { + final ObjectMapper objectMapper = new ObjectMapper(); + objectMapper.registerModule(new Jdk8Module()); + objectMapper.registerModule(new JavaTimeModule()); + objectMapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false); + objectMapper.setTimeZone(TimeZone.getTimeZone("UTC")); + log.debug("current time is {}", objectMapper.writeValueAsString(new Date())); + return objectMapper; + } + +} diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/ReadyConfig.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/ReadyConfig.java new file mode 100644 index 0000000000000000000000000000000000000000..0bee3b961edd4ca456f0243c8eede630a4a54716 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/ReadyConfig.java @@ -0,0 +1,23 @@ +package at.tuwien.config; + +import com.google.common.io.Files; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.boot.context.event.ApplicationReadyEvent; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.event.EventListener; + +import java.io.File; +import java.io.IOException; + +@Configuration +public class ReadyConfig { + + @Value("${fda.ready.path}") + private String readyPath; + + @EventListener(ApplicationReadyEvent.class) + public void init() throws IOException { + Files.touch(new File(readyPath)); + } + +} diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/WebSecurityConfig.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/WebSecurityConfig.java new file mode 100644 index 0000000000000000000000000000000000000000..9801ce0a77755773a366bf8f8abeff990d184bf7 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/config/WebSecurityConfig.java @@ -0,0 +1,94 @@ +package at.tuwien.config; + +import at.tuwien.auth.AuthTokenFilter; +import io.swagger.v3.oas.annotations.enums.SecuritySchemeType; +import io.swagger.v3.oas.annotations.security.SecurityScheme; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity; +import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; +import org.springframework.security.config.http.SessionCreationPolicy; +import org.springframework.security.web.SecurityFilterChain; +import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter; +import org.springframework.security.web.util.matcher.AntPathRequestMatcher; +import org.springframework.security.web.util.matcher.OrRequestMatcher; +import org.springframework.web.cors.CorsConfiguration; +import org.springframework.web.cors.UrlBasedCorsConfigurationSource; +import org.springframework.web.filter.CorsFilter; + +import jakarta.servlet.http.HttpServletResponse; + +@Configuration +@EnableWebSecurity +@EnableGlobalMethodSecurity(prePostEnabled = true) +@SecurityScheme( + name = "bearerAuth", + type = SecuritySchemeType.HTTP, + bearerFormat = "JWT", + scheme = "bearer" +) +public class WebSecurityConfig { + + @Bean + public AuthTokenFilter authTokenFilter() { + return new AuthTokenFilter(); + } + + @Bean + public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { + final OrRequestMatcher internalEndpoints = new OrRequestMatcher( + new AntPathRequestMatcher("/actuator/**", "GET") + ); + final OrRequestMatcher publicEndpoints = new OrRequestMatcher( + new AntPathRequestMatcher("/api/semantics/ontology/**", "GET"), + new AntPathRequestMatcher("/v3/api-docs.yaml"), + new AntPathRequestMatcher("/v3/api-docs/**"), + new AntPathRequestMatcher("/swagger-ui/**"), + new AntPathRequestMatcher("/swagger-ui.html") + ); + /* enable CORS and disable CSRF */ + http = http.cors().and().csrf().disable(); + /* set session management to stateless */ + http = http + .sessionManagement() + .sessionCreationPolicy(SessionCreationPolicy.STATELESS) + .and(); + /* set unauthorized requests exception handler */ + http = http + .exceptionHandling() + .authenticationEntryPoint( + (request, response, ex) -> { + response.sendError(HttpServletResponse.SC_UNAUTHORIZED, + ex.getMessage() + ); + } + ).and(); + /* set permissions on endpoints */ + http.authorizeHttpRequests() + /* our internal endpoints */ + .requestMatchers(internalEndpoints).permitAll() + /* our public endpoints */ + .requestMatchers(publicEndpoints).permitAll() + /* our private endpoints */ + .anyRequest().authenticated(); + /* add JWT token filter */ + http.addFilterBefore(authTokenFilter(), + UsernamePasswordAuthenticationFilter.class + ); + return http.build(); + } + + @Bean + public CorsFilter corsFilter() { + final UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); + final CorsConfiguration config = new CorsConfiguration(); + config.setAllowCredentials(true); + config.addAllowedOriginPattern("*"); + config.addAllowedHeader("*"); + config.addAllowedMethod("*"); + source.registerCorsConfiguration("/**", config); + return new CorsFilter(source); + } + +} diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/mapper/OntologyMapper.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/mapper/OntologyMapper.java new file mode 100644 index 0000000000000000000000000000000000000000..d987251002dd68aab6e6833af77b499b70834eca --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/mapper/OntologyMapper.java @@ -0,0 +1,21 @@ +package at.tuwien.mapper; + +import at.tuwien.api.semantics.OntologyBriefDto; +import at.tuwien.api.semantics.OntologyCreateDto; +import at.tuwien.api.semantics.OntologyDto; +import at.tuwien.entities.semantics.Ontology; +import org.mapstruct.Mapper; + + +@Mapper(componentModel = "spring") +public interface OntologyMapper { + + org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(OntologyMapper.class); + + OntologyDto ontologyToOntologyDto(Ontology data); + + OntologyBriefDto ontologyToOntologyBriefDto(Ontology data); + + Ontology ontologyCreateDtoToOntology(OntologyCreateDto data); + +} diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/elastic/TableColumnIdxRepository.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/elastic/TableColumnIdxRepository.java new file mode 100644 index 0000000000000000000000000000000000000000..7df09d4e44e484f1e1a79beb9cd81c294b34d103 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/elastic/TableColumnIdxRepository.java @@ -0,0 +1,9 @@ +package at.tuwien.repository.elastic; + +import at.tuwien.api.database.table.columns.ColumnDto; +import org.springframework.data.elasticsearch.repository.ElasticsearchRepository; +import org.springframework.stereotype.Repository; + +@Repository +public interface TableColumnIdxRepository extends ElasticsearchRepository<ColumnDto, Long> { +} \ No newline at end of file diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/elastic/TableIdxRepository.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/elastic/TableIdxRepository.java new file mode 100644 index 0000000000000000000000000000000000000000..ce6e8a0975a29bdcddaa03d316d0b158c1fd8139 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/elastic/TableIdxRepository.java @@ -0,0 +1,9 @@ +package at.tuwien.repository.elastic; + +import at.tuwien.api.database.table.TableDto; +import org.springframework.data.elasticsearch.repository.ElasticsearchRepository; +import org.springframework.stereotype.Repository; + +@Repository +public interface TableIdxRepository extends ElasticsearchRepository<TableDto, Long> { +} \ No newline at end of file diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/jpa/OntologyRepository.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/jpa/OntologyRepository.java new file mode 100644 index 0000000000000000000000000000000000000000..75c296f527e5a1b04d8a326673ca35f88519e842 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/jpa/OntologyRepository.java @@ -0,0 +1,10 @@ +package at.tuwien.repository.jpa; + +import at.tuwien.entities.semantics.Ontology; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +@Repository +public interface OntologyRepository extends JpaRepository<Ontology, Long> { + +} diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/jpa/UserRepository.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/jpa/UserRepository.java new file mode 100644 index 0000000000000000000000000000000000000000..9eb0b5190252b7e1890deb7717fe9b2afc133d41 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/repository/jpa/UserRepository.java @@ -0,0 +1,15 @@ +package at.tuwien.repository.jpa; + +import at.tuwien.entities.user.User; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +import java.util.Optional; +import java.util.UUID; + +@Repository +public interface UserRepository extends JpaRepository<User, UUID> { + + Optional<User> findByUsername(String username); + +} diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/service/OntologyService.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/service/OntologyService.java new file mode 100644 index 0000000000000000000000000000000000000000..dd8df8058f01481ad941b6f412e66bb614ece8a5 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/service/OntologyService.java @@ -0,0 +1,12 @@ +package at.tuwien.service; + +import at.tuwien.api.semantics.OntologyCreateDto; +import at.tuwien.entities.semantics.Ontology; + +import java.util.List; + +public interface OntologyService { + List<Ontology> findAll(); + + Ontology create(OntologyCreateDto data); +} diff --git a/dbrepo-semantics-service/services/src/main/java/at/tuwien/service/impl/OntologyServiceImpl.java b/dbrepo-semantics-service/services/src/main/java/at/tuwien/service/impl/OntologyServiceImpl.java new file mode 100644 index 0000000000000000000000000000000000000000..c678ab2b8ef6b6d877062b32c686ca9c436f6104 --- /dev/null +++ b/dbrepo-semantics-service/services/src/main/java/at/tuwien/service/impl/OntologyServiceImpl.java @@ -0,0 +1,38 @@ +package at.tuwien.service.impl; + +import at.tuwien.api.semantics.OntologyCreateDto; +import at.tuwien.entities.semantics.Ontology; +import at.tuwien.mapper.OntologyMapper; +import at.tuwien.repository.jpa.OntologyRepository; +import at.tuwien.service.OntologyService; +import lombok.extern.log4j.Log4j2; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Log4j2 +@Service +public class OntologyServiceImpl implements OntologyService { + + private final OntologyMapper ontologyMapper; + private final OntologyRepository ontologyRepository; + + @Autowired + public OntologyServiceImpl(OntologyMapper ontologyMapper, OntologyRepository ontologyRepository) { + this.ontologyMapper = ontologyMapper; + this.ontologyRepository = ontologyRepository; + } + + @Override + public List<Ontology> findAll() { + return ontologyRepository.findAll(); + } + + @Override + public Ontology create(OntologyCreateDto data) { + final Ontology ontology = ontologyRepository.save(ontologyMapper.ontologyCreateDtoToOntology(data)); + log.info("Created ontology with id {}", ontology.getId()); + return ontology; + } +} diff --git a/dbrepo-semantics-service/test.sh b/dbrepo-semantics-service/test.sh deleted file mode 100755 index ece11dc3c1799be6e4da437d1142d119a8727773..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/test.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -source ./dbrepo-semantics-service/venv/bin/activate -#cd ./dbrepo-semantics-service/ && coverage run -m pytest test/test_validate.py test/test_list.py test/test_app.py --junitxml=report.xml && coverage html && coverage report > ./coverage.txt -cd ./dbrepo-semantics-service/ && coverage run -m pytest test/test_validate.py --junitxml=report.xml && coverage html && coverage report > ./coverage.txt \ No newline at end of file diff --git a/dbrepo-semantics-service/test/test_app.py b/dbrepo-semantics-service/test/test_app.py deleted file mode 100644 index 34512f984825b690a3a1514a68b53a6b606e0727..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/test/test_app.py +++ /dev/null @@ -1,67 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -""" -Created on Sun Dec 5 19:41:04 2021 - -@author: Martin Weise -""" -import unittest -import sys -from app import app - -sys.path.append("..") - - -class AppUnitTest(unittest.TestCase): - - def test_save_concept_uri_and_name_null_fails(self): - with app.test_client() as client: - payload = {'uri': None, 'name': None} - - # test - response = client.post('/api/semantics/concept', json=payload, content_type='application/json') - self.assertEqual(400, response.status_code) - - def test_save_concept_uri_null_fails(self): - with app.test_client() as client: - payload = {'uri': None, 'name': 'second'} - - # test - response = client.post('/api/semantics/concept', json=payload, content_type='application/json') - self.assertEqual(400, response.status_code) - - def test_save_concept_name_null_fails(self): - with app.test_client() as client: - payload = {'uri': 'http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time', 'name': None} - - # test - response = client.post('/api/semantics/concept', json=payload, content_type='application/json') - self.assertEqual(400, response.status_code) - - def test_save_unit_uri_and_name_null_fails(self): - with app.test_client() as client: - payload = {'uri': None, 'name': None} - - # test - response = client.post('/api/semantics/concept', json=payload, content_type='application/json') - self.assertEqual(400, response.status_code) - - def test_save_unit_uri_null_fails(self): - with app.test_client() as client: - payload = {'uri': None, 'name': 'bell tree'} - - # test - response = client.post('/api/semantics/concept', json=payload, content_type='application/json') - self.assertEqual(400, response.status_code) - - def test_save_unit_name_null_fails(self): - with app.test_client() as client: - payload = {'uri': 'http://www.wikidata.org/entity/Q12273079', 'name': None} - - # test - response = client.post('/api/semantics/concept', json=payload, content_type='application/json') - self.assertEqual(400, response.status_code) - - -if __name__ == '__main__': - unittest.main() diff --git a/dbrepo-semantics-service/test/test_list.py b/dbrepo-semantics-service/test/test_list.py deleted file mode 100644 index 70a39dc6cbf37df9f1bddb68256832ee902d7cb8..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/test/test_list.py +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -""" -Created on Sun Dec 5 19:41:04 2021 - -@author: Martin Weise -""" -import unittest -import sys -from list import List - -sys.path.append("..") - -list = List(offline=True) - - -class ListUnitTest(unittest.TestCase): - - def test_list_units_succeeds(self): - exp = ['metre', 'metre of mercury'].sort() - - # test - response = list.list_units('metre') - body = [unit["name"] for unit in response].sort() - self.assertEqual(exp, body) - - def test_list_concepts_succeeds(self): - exp = ['volumetric flask', 'vacuum flask cooker'].sort() - - # test - response = list.list_concepts('flask') - body = [unit["name"] for unit in response].sort() - self.assertEqual(exp, body) - - def test_list_units_fails(self): - exp = [] - - # test - response = list.list_units('time') - body = [unit["name"] for unit in response] - self.assertEqual(exp, body) - - def test_get_unit_uri_succeeds(self): - exp = {"uri": "http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time"} - - # test - response = list.get_unit_uri("second") - self.assertEqual(exp, response) - - def test_get_unit_uri_hasBraces_succeeds(self): - exp = {"uri": "http://www.ontology-of-units-of-measure.org/resource/om-2/minute-HourAngle"} - - # test - response = list.get_unit_uri("minute (hour angle)") - self.assertEqual(exp, response) - - def test_get_concept_label_succeeds(self): - exp = {"label": "entity"} - - # test - response = list.get_concept_label("Q35120") - self.assertEqual(exp, response) - - def test_get_unit_label_succeeds(self): - exp = {"label": "minute (hour angle)"} - - # test - response = list.get_unit_label("http://www.ontology-of-units-of-measure.org/resource/om-2/minute-HourAngle") - self.assertEqual(exp, response) - - def test_get_unit_label_not_found_fails(self): - # test - response = list.get_unit_label("http://www.ontology-of-units-of-measure.org/resource/om-2/minute-HourAngles") - self.assertEqual(None, response) - - -if __name__ == '__main__': - unittest.main() diff --git a/dbrepo-semantics-service/test/test_validate.py b/dbrepo-semantics-service/test/test_validate.py deleted file mode 100644 index 588c25634bf0d4b38b02579b829627f9a4897283..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/test/test_validate.py +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -""" -Created on Sun Dec 5 19:41:04 2021 - -@author: Cornelia Michlits -@author: Martin Weise -""" -import unittest -import sys -from validate import validator, stringmapper - -sys.path.append("..") - - -class ValidatorUnitTest(unittest.TestCase): - - # metre is SI Unit - def test_validator_true(self): - self.assertEqual(True, validator('metre')) - - # diameter is measure, but no SI Unit - def test_validator_no_SI_Unit(self): - self.assertEqual(False, validator('diameter')) - - # misspelling - def test_validator_misspelling(self): - self.assertEqual(False, validator('metreee')) - - # Divided unit - def test_validator_dividedunit(self): - self.assertEqual(True, validator(stringmapper('mole per metre'))) - - # Prefixed unit - def test_validator_prefixedunit(self): - self.assertEqual(True, validator(stringmapper('zettamole'))) - - -if __name__ == '__main__': - unittest.main() diff --git a/dbrepo-semantics-service/us-yml/get_concept_uri.yml b/dbrepo-semantics-service/us-yml/get_concept_uri.yml deleted file mode 100644 index 19b09e2b51d80a216776467a4ddf5285f16dad5b..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/get_concept_uri.yml +++ /dev/null @@ -1,20 +0,0 @@ -summary: Get URI of concepts -description: This is a simple API for getting the URI of a certain unit in OM. -consumes: - - application/json -produces: - - application/json -parameters: - - in: path - name: name - description: Enter a unit name. - required: true - schema: - type: string -responses: - 200: - description: OK - 405: - description: Invalid input -tags: - - concepts-endpoint \ No newline at end of file diff --git a/dbrepo-semantics-service/us-yml/get_concept_validate.yml b/dbrepo-semantics-service/us-yml/get_concept_validate.yml deleted file mode 100644 index 04223cf7eb88cd7ac52b9a20751733395b1c5dae..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/get_concept_validate.yml +++ /dev/null @@ -1,21 +0,0 @@ -summary: Validate concepts -description: This is a simple API for validating concepts. -consumes: - - application/json -produces: - - application/json -parameters: - - in: path - name: unit - description: Validates concepts against om-2. - required: true - schema: - type: string - example: distance -responses: - 200: - description: OK - 405: - description: Invalid input -tags: - - concepts-endpoint \ No newline at end of file diff --git a/dbrepo-semantics-service/us-yml/get_concepts.yml b/dbrepo-semantics-service/us-yml/get_concepts.yml deleted file mode 100644 index bd1301a4f054d546c6fddc683205bbc83d6b3769..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/get_concepts.yml +++ /dev/null @@ -1,19 +0,0 @@ -summary: Suggest a concept -description: This is a simple API which returns a list of suggested concepts. -consumes: - - application/json -produces: - - application/json -parameters: - - in: query - name: q - schema: - type: string - description: The query to retrieve a fitting concept -responses: - 200: - description: OK - 405: - description: Invalid input -tags: - - concepts-endpoint \ No newline at end of file diff --git a/dbrepo-semantics-service/us-yml/get_ontologies.yml b/dbrepo-semantics-service/us-yml/get_ontologies.yml deleted file mode 100644 index 7b455053703640dbf975829928071db3ab5b836c..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/get_ontologies.yml +++ /dev/null @@ -1,13 +0,0 @@ -summary: List ontologies -description: This is a simple API for listing all ontologies (.nt, .ttl files) used in DB-Repo. -consumes: - - application/json -produces: - - application/json -responses: - 200: - description: OK - 405: - description: Invalid input -tags: - - ontologies-endpoint \ No newline at end of file diff --git a/dbrepo-semantics-service/us-yml/get_ontology.yml b/dbrepo-semantics-service/us-yml/get_ontology.yml deleted file mode 100644 index fb215a23148b32b0138d6a8437aaa6f094629526..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/get_ontology.yml +++ /dev/null @@ -1,22 +0,0 @@ -summary: Get ontology -description: This is a simple API for getting a certain ontologies (.nt, .ttl files) stored in DB-Repo. -consumes: - - application/json -produces: - - application/json -parameters: - - in: path - name: o_name - required: true - schema: - type: string - example: VOCAB_QUDT-UNITS-ALL-v2.1 -responses: - 200: - description: OK - 404: - description: Not found - 405: - description: Invalid input -tags: - - ontologies-endpoint \ No newline at end of file diff --git a/dbrepo-semantics-service/us-yml/get_unit_uri.yml b/dbrepo-semantics-service/us-yml/get_unit_uri.yml deleted file mode 100644 index eddc944133f4172c5b5f33aa497a80aaeb1d869d..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/get_unit_uri.yml +++ /dev/null @@ -1,20 +0,0 @@ -summary: Get URI of units -description: This is a simple API for getting the URI of a certain unit in OM. -consumes: - - application/json -produces: - - application/json -parameters: - - in: path - name: name - description: Enter a concept name. - required: true - schema: - type: string -responses: - 200: - description: OK - 405: - description: Invalid input -tags: - - units-endpoint \ No newline at end of file diff --git a/dbrepo-semantics-service/us-yml/get_unit_validate.yml b/dbrepo-semantics-service/us-yml/get_unit_validate.yml deleted file mode 100644 index 2b0b1bc9030abd518209516a2b38753fa485c819..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/get_unit_validate.yml +++ /dev/null @@ -1,21 +0,0 @@ -summary: Validate units -description: This is a simple API for validating units. -consumes: - - application/json -produces: - - application/json -parameters: - - in: path - name: unit - description: Validates unit against om-2. - required: true - schema: - type: string - example: metre -responses: - 200: - description: OK - 405: - description: Invalid input -tags: - - units-endpoint \ No newline at end of file diff --git a/dbrepo-semantics-service/us-yml/get_units.yml b/dbrepo-semantics-service/us-yml/get_units.yml deleted file mode 100644 index 2bc9827ba71a9face0505b31f356a8009a3d6418..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/get_units.yml +++ /dev/null @@ -1,19 +0,0 @@ -summary: Suggest a unit -description: This is a simple API which returns a list of suggested units. -consumes: - - application/json -produces: - - application/json -parameters: - - in: query - name: q - schema: - type: string - description: The query to retrieve a fitting unit -responses: - 200: - description: OK - 405: - description: Invalid input -tags: - - units-endpoint \ No newline at end of file diff --git a/dbrepo-semantics-service/us-yml/post_concept.yml b/dbrepo-semantics-service/us-yml/post_concept.yml deleted file mode 100644 index cfbac1108db598305d9388eac810aa03a74083f0..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/post_concept.yml +++ /dev/null @@ -1,32 +0,0 @@ -summary: Save concept to MDB -description: This is a simple API for saving concept -consumes: - - application/json -produces: - - application/json -requestBody: - content: - application/json: - schema: - required: - - uri - - name - type: object - properties: - uri: - type: string - example: http://www.ontology-of-units-of-measure.org/resource/om-2/metre - name: - type: string - example: metre -responses: - 200: - description: OK - 201: - description: Created - 405: - description: Invalid input - 409: - description: Concept already present -tags: - - concepts-endpoint diff --git a/dbrepo-semantics-service/us-yml/post_unit.yml b/dbrepo-semantics-service/us-yml/post_unit.yml deleted file mode 100644 index df910e256cee6f45d40b3ea517df2632421c474f..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/post_unit.yml +++ /dev/null @@ -1,32 +0,0 @@ -summary: Save unit to MDB -description: This is a simple API for saving units -consumes: - - application/json -produces: - - application/json -requestBody: - content: - application/json: - schema: - required: - - uri - - name - type: object - properties: - uri: - type: string - example: http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time - name: - type: string - example: second -responses: - 200: - description: OK - 201: - description: Created - 405: - description: Invalid input - 409: - description: Concept already present -tags: - - units-endpoint diff --git a/dbrepo-semantics-service/us-yml/put_concept.yml b/dbrepo-semantics-service/us-yml/put_concept.yml deleted file mode 100644 index cb7bfdb6cf6d3545099d2ac64b8b9e169c672775..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/put_concept.yml +++ /dev/null @@ -1,27 +0,0 @@ -summary: Retrieve label from URI -description: This is a simple API for retrieving label from concepts -consumes: - - application/json -produces: - - application/json -requestBody: - content: - application/json: - schema: - required: - - uri - - name - type: object - properties: - uri: - type: string - example: http://www.wikidata.org/entity/Q35120 -responses: - 200: - description: OK - 400: - description: Invalid URI - 500: - description: Server error -tags: - - concepts-endpoint diff --git a/dbrepo-semantics-service/us-yml/put_units.yml b/dbrepo-semantics-service/us-yml/put_units.yml deleted file mode 100644 index 0b68dbb2bafc6844392294680f998a0d68549b26..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/us-yml/put_units.yml +++ /dev/null @@ -1,29 +0,0 @@ -summary: Retrieve label from URI -description: This is a simple API for retrieving label from units -consumes: - - application/json -produces: - - application/json -requestBody: - content: - application/json: - schema: - required: - - uri - - name - type: object - properties: - uri: - type: string - example: http://www.ontology-of-units-of-measure.org/resource/om-2/second-Time -responses: - 200: - description: OK - 400: - description: Invalid URI - 404: - description: Unit not found - 500: - description: Server error -tags: - - units-endpoint diff --git a/dbrepo-semantics-service/validate.py b/dbrepo-semantics-service/validate.py deleted file mode 100644 index 50bba920abfa130f79b95778ec1f1b75127fe32e..0000000000000000000000000000000000000000 --- a/dbrepo-semantics-service/validate.py +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -""" -Created on Thu Dec 2 23:31:39 2021 - -@author: Cornelia Michlits -""" -import rdflib -import requests as rq - -# ontology of measure -u = rdflib.Graph() -u.namespace_manager.bind('om', 'http://www.ontology-of-units-of-measure.org/resource/om-2/') -u.namespace_manager.bind('schema', 'http://schema.org/') -u.parse('ontologies/om-2.rdf', format='xml') - -om = rdflib.Namespace('http://www.ontology-of-units-of-measure.org/resource/om-2/') - - -# rdf = rq.get('http://qudt.org/2.1/vocab/unit', headers={'Accept': 'text/turtle'}) -# rdf.raise_for_status() -# -# f = rdflib.Graph() -# f.namespace_manager.bind('qudt', 'http://qudt.org/2.1/vocab/unit') -# f.parse(data=rdf.text, format='turtle') - -_exhausted = object() - - -def validator(value): - # input str - tmp = str(om) + value - t_uri = rdflib.term.URIRef(tmp) - if next(u.triples((t_uri, None, om.Unit)), _exhausted) is _exhausted and next( - u.triples((t_uri, None, om.PrefixedUnit)), _exhausted) is _exhausted and next( - u.triples((t_uri, None, None)), _exhausted) is _exhausted: - return False - else: - return True - - -def stringmapper(thisstring): - if ' ' in thisstring: - return thisstring.split(" ", 1)[0].lower() + thisstring.split(" ", 1)[1].title().replace(" ", "") - else: - return thisstring