diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 897a860..78473b4 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -132,19 +132,18 @@ jobs:
# expanding $(ONTBASE) and $(VERSION) — make expands them itself using
# values already defined in the ODK-generated Makefile.
#
- # IMP=false / PAT=false skips import refresh for speed — imports were
- # already refreshed by the last regular build. Remove IMP=false to
- # force a full import refresh as part of the release.
+ # refresh-imports is run before all_assets (same as qc.yml ontology-build)
+ # to ensure SLME modules are extracted from current mirrors.
# ──────────────────────────────────────────────────────────────────────
- name: Build release artifacts
env:
ROBOT_ENV: ROBOT_JAVA_ARGS=-Xmx6G
run: |
cd src/ontology
- make IMP=false PAT=false \
+ make PAT=false \
VERSION=${{ steps.version.outputs.version }} \
'ANNOTATE_ONTOLOGY_VERSION=annotate -V $(ONTBASE)/$(VERSION) --annotation owl:versionInfo $(VERSION)' \
- all_assets
+ refresh-imports all_assets
# ── Commit release artifacts to main ─────────────────────────────────
# Versioned artifacts must be in main so that docs.yml can find them
diff --git a/.github/workflows/seed.yml b/.github/workflows/seed.yml
new file mode 100644
index 0000000..c90988a
--- /dev/null
+++ b/.github/workflows/seed.yml
@@ -0,0 +1,144 @@
+# SEEDING ODK workflow
+
+name: seed odk
+
+# Controls when the action will run.
+on:
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
+ inputs:
+ ontology_id:
+ description: 'Ontology ID (replaces id in seed.yaml)'
+ required: true
+ uribase_suffix:
+ description: 'URI base suffix (replaces uribase_suffix in seed.yaml)'
+ required: true
+ odk_tag:
+ description: 'ODK Docker tag to use'
+ required: false
+ default: 'latest'
+ config_file:
+ description: 'Configuration file name'
+ required: false
+ default: 'seed-template.yaml'
+
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
+jobs:
+ # This workflow contains a single job called "seed_ontology"
+ seed_ontology:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+ container: obolibrary/odkfull:${{ github.event.inputs.odk_tag || 'latest' }}
+
+ # Steps represent a sequence of tasks that will be executed as part of the job
+ steps:
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
+ - uses: actions/checkout@v4
+
+ - name: Set up Git config
+ run: |
+ git config --global user.name "${{ github.actor }}"
+ git config --global user.email "${{ github.actor }}@users.noreply.github.com"
+
+ - name: Generate unique branch name
+ run: |
+ BRANCH_NAME="fresh-seed-$(date +%Y%m%d-%H%M%S)"
+ echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV
+
+ - name: Extract GitHub org and repo
+ run: |
+ GITHUB_ORG=$(echo "${{ github.repository }}" | cut -d'/' -f1)
+ GITHUB_REPO=$(echo "${{ github.repository }}" | cut -d'/' -f2)
+ echo "GITHUB_ORG=$GITHUB_ORG" >> $GITHUB_ENV
+ echo "GITHUB_REPO=$GITHUB_REPO" >> $GITHUB_ENV
+ echo "GitHub Organization: $GITHUB_ORG"
+ echo "GitHub Repository: $GITHUB_REPO"
+
+ - name: Verify seed config file exists
+ run: |
+ if [ ! -f "${{ github.event.inputs.config_file || 'seed-template.yaml' }}" ]; then
+ echo "Error: Configuration file ${{ github.event.inputs.config_file || 'seed-template.yaml' }} not found!"
+ exit 1
+ fi
+ echo "Using configuration file: ${{ github.event.inputs.config_file || 'seed-template.yaml' }}"
+
+ - name: Update seed-template.yaml with input values
+ run: |
+ CONFIG_FILE="${{ github.event.inputs.config_file || 'seed-template.yaml' }}"
+
+ echo "Original seed-template.yaml content:"
+ cat "$CONFIG_FILE"
+
+ # Replace id value
+ sed -i "s/^id:.*/id: ${{ github.event.inputs.ontology_id }}/" "$CONFIG_FILE"
+
+ # Replace uribase_suffix value
+ sed -i "s/^uribase_suffix:.*/uribase_suffix: ${{ github.event.inputs.uribase_suffix }}/" "$CONFIG_FILE"
+
+ # Replace uribase value
+ sed -i "s/^uribase_suffix:.*/uribase_suffix: https://w3id.org/pmd/${{ github.event.inputs.uribase_suffix }}/" "$CONFIG_FILE"
+
+ # Replace github_org value
+ sed -i "s/^github_org:.*/github_org: $GITHUB_ORG/" "$CONFIG_FILE"
+
+ # Replace repo value
+ sed -i "s/^repo:.*/repo: $GITHUB_REPO/" "$CONFIG_FILE"
+
+ echo "Updated seed-template.yaml content:"
+ cat "$CONFIG_FILE"
+
+ - name: Run ODK seed
+ env:
+ ODK_IMAGE: odkfull
+ ODK_TAG: ${{ github.event.inputs.odk_tag || 'latest' }}
+ ODK_GITNAME: ${{ github.actor }}
+ ODK_GITEMAIL: ${{ github.actor }}@users.noreply.github.com
+ run: |
+ echo "This script only works with ODK 1.3.2 and later. For ODK 1.3.1 or earlier, use https://raw.githubusercontent.com/INCATools/ontology-development-kit/v1.3.1/seed-via-docker.sh"
+ /tools/odk.py seed \
+ --gitname "$ODK_GITNAME" \
+ --gitemail "$ODK_GITEMAIL" \
+ -c \
+ -C ${{ github.event.inputs.config_file || 'seed-template.yaml' }}
+
+ - name: Copy generated files to root
+ run: |
+ TARGET_DIR="target/${{ github.event.inputs.ontology_id }}"
+ if [ ! -d "$TARGET_DIR" ]; then
+ echo "Error: Target directory $TARGET_DIR not found!"
+ exit 1
+ fi
+
+ echo "Copying files from $TARGET_DIR to root, excluding .git and .github directories..."
+
+ # Copy all files and directories except .git and .github
+ find "$TARGET_DIR" -mindepth 1 -maxdepth 1 ! -name '.git' ! -name '.github' -exec cp -r {} . \;
+
+ # List what was copied
+ echo "Files copied to root:"
+ ls -la
+
+ - name: Clean up target directory
+ run: |
+ echo "Removing target directory to avoid git conflicts..."
+ rm -rf target/
+ git status
+
+ - name: Create Pull Request
+ uses: peter-evans/create-pull-request@v5
+ with:
+ branch: ${{ env.BRANCH_NAME }}
+ base: main
+ title: "ODK Seed: ${{ github.event.inputs.ontology_id }}"
+ commit-message: "ODK seed generated files for ${{ github.event.inputs.ontology_id }} using ${{ github.event.inputs.config_file || 'seed.yaml' }}"
+ body: |
+ ## ODK Seed Generated Files
+
+ - **Ontology ID**: `${{ github.event.inputs.ontology_id }}`
+ - **URI Base Suffix**: `${{ github.event.inputs.uribase_suffix }}`
+ - **GitHub Organization**: `${{ env.GITHUB_ORG }}`
+ - **Repository**: `${{ env.GITHUB_REPO }}`
+ - **Config File**: `${{ github.event.inputs.config_file || 'seed-template.yaml' }}`
+ - **ODK Tag**: `${{ github.event.inputs.odk_tag || 'latest' }}`
+
+ This PR contains the generated ontology files from ODK seed.
diff --git a/.github/workflows/update_repo.yml b/.github/workflows/update_repo.yml
new file mode 100644
index 0000000..e9f21fe
--- /dev/null
+++ b/.github/workflows/update_repo.yml
@@ -0,0 +1,34 @@
+# Basic ODK workflow
+
+name: update_repo
+
+# Controls when the action will run.
+on:
+ # Triggers the workflow on push or pull request events but only for the main branch
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
+
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
+jobs:
+ # This workflow contains a single job called "ontology_qc"
+ odk_update_repo:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+ container: obolibrary/odkfull:v1.6
+
+ # Steps represent a sequence of tasks that will be executed as part of the job
+ steps:
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
+ - uses: actions/checkout@v4
+
+ - name: Build ontology
+ env:
+ DEFAULT_BRANCH: main
+ run: cd src/ontology && make update_repo ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx6G'
+ - name: Commit files # commit the src folder
+ uses: EndBug/add-and-commit@v9
+ with:
+ message: "updated ontology"
+ add: "*.* --force"
+ cwd: "./src/"
+ default_author: github_actions
diff --git a/.gitignore b/.gitignore
index 83a641f..10e5221 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,7 +4,7 @@
.DS_Store
semantic.cache
bin/
-.trunk/
+
*.tmp
*.tmp.obo
*.tmp.owl
@@ -12,4 +12,63 @@ bin/
*-relation-graph.tsv.gz
.template.db
-.github/token.txt
\ No newline at end of file
+.github/token.txt
+
+/log.owl
+/log.obo
+/log.json
+/log.db
+/log-base.*
+/log-basic.*
+/log-full.*
+/log-simple.*
+/log-simple-non-classified.*
+/mappings/
+/patterns/
+/reports/
+/subsets/
+
+src/ontology/mirror
+src/ontology/mirror/*
+src/ontology/reports/*
+!src/ontology/reports/release-diff.md
+src/ontology/log.owl
+src/ontology/log.obo
+src/ontology/log.json
+src/ontology/log.db
+src/ontology/log-base.*
+src/ontology/log-basic.*
+src/ontology/log-full.*
+src/ontology/log-simple.*
+src/ontology/log-simple-non-classified.*
+
+src/ontology/seed.txt
+src/ontology/dosdp-tools.log
+src/ontology/ed_definitions_merged.owl
+src/ontology/ontologyterms.txt
+src/ontology/simple_seed.txt
+src/ontology/patterns
+src/ontology/merged-log-edit.owl
+src/ontology/log-edit.properties
+
+src/ontology/target/
+src/ontology/tmp/*
+!src/ontology/tmp/.gitkeep
+!src/ontology/tmp/README.md
+
+src/ontology/run.sh.conf
+src/ontology/run.sh.env
+
+src/ontology/imports/*_terms_combined.txt
+
+src/patterns/data/**/*.ofn
+src/patterns/data/**/*.txt
+src/patterns/pattern_owl_seed.txt
+src/patterns/all_pattern_terms.txt
+
+
+# patterns: track hand-written files, ignore generated autoshapes
+!/patterns/
+/patterns/autoshape/auto-shapes-*.ttl
+
+# End of ODK-managed rules
diff --git a/ACKNOWLEDGEMENTS.md b/ACKNOWLEDGEMENTS.md
new file mode 100644
index 0000000..5cfb735
--- /dev/null
+++ b/ACKNOWLEDGEMENTS.md
@@ -0,0 +1,43 @@
+# Acknowledgements
+
+## IOF Supply Chain Module
+
+The majority of classes and properties in LOG are adopted from the
+[IOF Supply Chain Module](https://spec.industrialontologies.org/ontology/supplychain/Metadatasupplychain/supplychainModule),
+developed by the [Industrial Ontologies Foundry (IOF)](https://www.industrialontologies.org/).
+Term provenance is recorded per-entity via `IAO:0000412` ("imported from") annotations.
+The IOF Supply Chain Module is licensed under the MIT License.
+
+## PMD Core Ontology (PMDCo)
+
+LOG extends the [PMD Core Ontology (PMDCo) 3.0.0](https://w3id.org/pmd/co),
+developed by the [Platform MaterialDigital (PMD)](https://www.materialdigital.de/).
+PMDCo is licensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
+
+## W3C Organization Ontology
+
+Organization, membership, post, and site modeling uses the
+[W3C Organization Ontology](https://www.w3.org/TR/vocab-org/) (W3C, CC BY 4.0).
+
+## FOAF Vocabulary
+
+Person modeling uses the [FOAF Vocabulary](http://xmlns.com/foaf/0.1/).
+
+## Basic Formal Ontology (BFO)
+
+All classes are aligned to [BFO 2020](https://basic-formal-ontology.org/),
+the top-level ontology underpinning both IOF and PMDCo.
+
+## Funding
+
+This work was carried out at the [Fraunhofer Institute for Mechanics of Materials IWM](https://www.iwm.fraunhofer.de/)
+and is funded by the [German Federal Ministry for Research, Technology and Space (BMFTR)](https://www.bmftr.bund.de)
+under the [Plattform MaterialDigital (PMD)](https://www.materialdigital.de/) framework.
+
+Development was supported by the PMD-X project
+[EDCar](https://www.iwm.fraunhofer.de/de/forschungsprojekte-des-fraunhofer-iwm/EDCar.html)
+(Förderkennzeichen: 13XPM504B) —
+*Automotive End-of-Life Datenaustausch für Circular Economy*
+(07/2025–06/2026), coordinated by Fraunhofer IWM in collaboration with
+Fraunhofer IPK, BASF SE, BMW Group, Robert Bosch GmbH, Schaeffler Technologies,
+LRP-Autorecycling Leipzig GmbH, tec4U Solutions GmbH, and light ds GmbH.
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..8173685
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,59 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
+
+## [1.0.0] - 2026-04-17
+
+### First release
+
+The PMD Logistics Application Ontology (LOG) is a BFO- and IOF-conformant ontology
+for logistics and supply chain management in the materials science and engineering domain.
+
+#### Origin
+
+LOG originates from a need to model logistics and supply chain processes within the
+[Platform MaterialDigital (PMD)](https://www.materialdigital.de/) ecosystem in a way
+that is interoperable with existing PMD ontologies and compatible with industrial standards.
+The ontology was developed at Fraunhofer IWM and adopts the
+[IOF Supply Chain Module](https://spec.industrialontologies.org/ontology/supplychain/Metadatasupplychain/supplychainModule)
+as its primary source, extending and aligning it to the
+[PMD Core Ontology (PMDCo)](https://w3id.org/pmd/co) 3.0.0.
+Development was supported by the PMD-X project EDCar (Förderkennzeichen: 13XPM504B).
+
+#### What it covers
+
+- **Organizations and roles** — business organizations, suppliers, manufacturers, carriers,
+ freight forwarders and their BFO-aligned roles; integrated with W3C ORG vocabulary
+- **Persons** — modeled via FOAF, linked to organizations through `org:Membership` and `org:Post`
+- **Locations and premises** — physical premises, geospatial sites with WGS84 coordinates,
+ ship-from/ship-to locations, supply chain nodes
+- **Shipments and cargo** — shipment, load, cargo, lot, traceable resource unit,
+ bill of lading, purchase order
+- **Transport** — transport process, seaway, airway, shipping route, multimodal chains
+- **Facilities** — facility, storage facility, distribution center, warehouse
+- **Agreements** — commercial service agreement, bill of lading, framework contracts
+- **Processes** — transport, receiving, warehousing, packaging, procurement, selling,
+ manufacturing, supply chain processes
+- **Plan specifications** — shipment plan, warehousing plan, supply chain plan
+
+#### Usage patterns (SHACL-validated)
+
+Four real-world usage patterns with annotated example data are included,
+each validated with [pyshacl](https://github.com/RDFLib/pySHACL):
+
+| Pattern | Scenario |
+|---------|----------|
+| [Shipment by Sea](patterns/shipment-by-sea/) | Steel coil shipment Baosteel → Volkswagen via COSCO |
+| [Contract Negotiation](patterns/contract-negotiation/) | Annual steel supply framework agreement |
+| [Warehouse Receiving](patterns/warehouse-receiving/) | Steel coils received at DB Schenker Hamburg |
+| [Multimodal Transport](patterns/multimodal-transport/) | Multi-leg transport chain |
+
+#### Ontology artifacts
+
+| File | Description |
+|------|-------------|
+| `log.owl` / `log.ttl` | Full ontology with all imports merged |
+| `log-base.owl` / `log-base.ttl` | Base ontology without imports |
+| `log-simple.owl` / `log-simple.ttl` | Simplified profile |
+| `log-full.owl` / `log-full.ttl` | Full reasoned version |
diff --git a/CITATION.cff b/CITATION.cff
new file mode 100644
index 0000000..0d6a903
--- /dev/null
+++ b/CITATION.cff
@@ -0,0 +1,62 @@
+cff-version: 1.2.0
+message: "If you use this ontology, please cite it as below."
+title: "Platform Material Digital Application Ontology for Logistics and Supply Chain (LOG)"
+version: 1.0.0
+date-released: 2026-04-17
+license: CC-BY-4.0
+repository-code: https://github.com/materialdigital/logistics-application-ontology
+url: https://w3id.org/pmd/log/
+abstract: >
+ The PMD Logistics Application Ontology (LOG) is a BFO- and IOF-conformant ontology
+ for logistics and supply chain management. It extends the PMD Core Ontology (PMDCo)
+ and is adopted from the IOF Supply Chain Module. LOG covers organizations and roles,
+ shipments, transport processes, facilities, agreements, and supply chain planning.
+
+authors:
+ - family-names: Hanke
+ given-names: Thomas
+ orcid: https://orcid.org/0000-0003-1649-6832
+ affiliation: Fraunhofer Institute for Mechanics of Materials IWM
+ - family-names: Waitelonis
+ given-names: Jörg
+ orcid: https://orcid.org/0000-0001-7192-7143
+ - family-names: Zaripova
+ given-names: Kamilla
+ orcid: https://orcid.org/0009-0003-1503-4422
+ - family-names: Potu
+ given-names: Sai Teja
+ orcid: https://orcid.org/0009-0007-7468-3544
+ affiliation: Fraunhofer Institute for Mechanics of Materials IWM
+
+funding:
+ - name: "Plattform MaterialDigital (PMD)"
+ url: https://www.materialdigital.de/
+ funder:
+ name: "German Federal Ministry for Research, Technology and Space (BMFTR)"
+ url: https://www.bmftr.bund.de
+ - name: "EDCar — Automotive End-of-Life Datenaustausch für Circular Economy"
+ grant: "13XPM504B"
+ url: https://www.iwm.fraunhofer.de/de/forschungsprojekte-des-fraunhofer-iwm/EDCar.html
+ funder:
+ name: "German Federal Ministry for Research, Technology and Space (BMFTR)"
+ url: https://www.bmftr.bund.de
+
+references:
+ - type: software
+ title: "PMD Core Ontology (PMDCo)"
+ url: https://w3id.org/pmd/co
+ license: CC-BY-4.0
+ notes: "Imported as foundation ontology. Terms reused under CC BY 4.0."
+ - type: software
+ title: "IOF Supply Chain Module"
+ url: https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/
+ license: MIT
+ notes: "Terms adopted via IAO:0000412 annotations. Developed by the Industrial Ontologies Foundry."
+ - type: software
+ title: "W3C Organization Ontology"
+ url: https://www.w3.org/TR/vocab-org/
+ notes: "Imported for organization, membership, post, and site modeling."
+ - type: software
+ title: "FOAF Vocabulary"
+ url: http://xmlns.com/foaf/0.1/
+ notes: "Imported for person modeling."
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..fb17804
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,86 @@
+# Contributing to My Application Ontology
+
+:+1: First of all: Thank you for taking the time to contribute!
+
+The following is a set of guidelines for contributing to LOG.
+These guidelines are not strict rules. Use your best judgment, and feel free to propose
+changes to this document in a pull request.
+
+## Table Of Contents
+
+- [Guidelines for Contributions and Requests](#contributions)
+ * [Reporting problems with the ontology](#reporting-bugs)
+ * [Requesting new terms](#requesting-terms)
+ * [Adding new terms by yourself](#adding-terms)
+- [Best practices](#best-practices)
+ * [How to write a great issue?](#great-issues)
+ * [How to create a great pull/merge request?](#great-pulls)
+
+
+
+## Guidelines for Contributions and Requests
+
+
+
+### Reporting problems with the ontology
+
+Please use our [Issue Tracker](https://github.com/materialdigital/logistics-application-ontology/issues/) for reporting problems with the ontology.
+To learn how to write a good issue [see here](#great-issues).
+
+
+
+### Requesting new terms
+
+Before you write a new request, please consider the following:
+
+- **Does the term already exist?** Before submitting suggestions for new ontology terms, check whether the term exist,
+either as a primary term or a synonym term. You can search for your term using [OLS](http://www.ebi.ac.uk/ols/ontologies/log).
+- **Can you provide a definition for the term?** It should be very clear what the term means, and you should be
+able to provide a concise definition, ideally with a scientific reference.
+- **Is the ontology in scope for the term?** Sometimes, it is hard to tell whether a term "belongs" in
+and ontology. A rule of thumb is "if a similar term already exists, the new term is probably in scope."
+It can be very helpful to mention a very similar concept as part of the term request!
+
+#### Who can request a term?
+
+Anyone can request new terms. However, there is not guarantee that your term will be added automatically. Since this is a
+community resource, it is often necessary to do at least some of the work of adding the term yourself, see below.
+
+#### How to write a new term request
+
+Request a new term _via_ the GitHub [Issue Tracker](https://github.com/materialdigital/logistics-application-ontology/issues/).
+
+It is important to remember that it takes a lot of time for curators to process issues submitted to the tracker.
+To make this work easier, please always use issue templates if they are available (https://github.com/materialdigital/logistics-application-ontology/issues/new/choose).
+
+For how to write a good term request, please read the [best practices carefully](#great-issues).
+
+
+
+### How to add a new term
+
+If you have never editted this ontology before, first follow a [general tutorial](https://oboacademy.github.io/obook/lesson/contributing-to-obo-ontologies)
+
+**Process**:
+
+1. Clone the repository (In case you are not an offical team member, create a fork first)
+1. Create new branch in git, for example `git checkout -b issue123`
+1. Open src/ontology/log-edit.owl in your favourite editor, i.e. [Protege](https://protege.stanford.edu/). **Careful:** double check you are editing the correct file. There are many ontology files in this repository, but only one _editors file_!
+1. Perform your edit and save your changes
+1. Commit changes to branch
+1. Push changes upstream
+1. Create pull request
+
+## Best Practices
+
+
+
+### How to write great issues?
+
+Please refer to the [OBO Academy term request guide](https://oboacademy.github.io/obook/howto/term-request/).
+
+
+
+### How to create a great pull/merge request?
+
+Please refer to the [OBO Academy best practices](https://oboacademy.github.io/obook/howto/github-create-pull-request/)
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
index f49a4e1..da6ab6c 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,201 +1,396 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- 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
-
- http://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.
\ No newline at end of file
+Attribution 4.0 International
+
+=======================================================================
+
+Creative Commons Corporation ("Creative Commons") is not a law firm and
+does not provide legal services or legal advice. Distribution of
+Creative Commons public licenses does not create a lawyer-client or
+other relationship. Creative Commons makes its licenses and related
+information available on an "as-is" basis. Creative Commons gives no
+warranties regarding its licenses, any material licensed under their
+terms and conditions, or any related information. Creative Commons
+disclaims all liability for damages resulting from their use to the
+fullest extent possible.
+
+Using Creative Commons Public Licenses
+
+Creative Commons public licenses provide a standard set of terms and
+conditions that creators and other rights holders may use to share
+original works of authorship and other material subject to copyright
+and certain other rights specified in the public license below. The
+following considerations are for informational purposes only, are not
+exhaustive, and do not form part of our licenses.
+
+ Considerations for licensors: Our public licenses are
+ intended for use by those authorized to give the public
+ permission to use material in ways otherwise restricted by
+ copyright and certain other rights. Our licenses are
+ irrevocable. Licensors should read and understand the terms
+ and conditions of the license they choose before applying it.
+ Licensors should also secure all rights necessary before
+ applying our licenses so that the public can reuse the
+ material as expected. Licensors should clearly mark any
+ material not subject to the license. This includes other CC-
+ licensed material, or material used under an exception or
+ limitation to copyright. More considerations for licensors:
+ wiki.creativecommons.org/Considerations_for_licensors
+
+ Considerations for the public: By using one of our public
+ licenses, a licensor grants the public permission to use the
+ licensed material under specified terms and conditions. If
+ the licensor's permission is not necessary for any reason--for
+ example, because of any applicable exception or limitation to
+ copyright--then that use is not regulated by the license. Our
+ licenses grant only permissions under copyright and certain
+ other rights that a licensor has authority to grant. Use of
+ the licensed material may still be restricted for other
+ reasons, including because others have copyright or other
+ rights in the material. A licensor may make special requests,
+ such as asking that all changes be marked or described.
+ Although not required by our licenses, you are encouraged to
+ respect those requests where reasonable. More considerations
+ for the public:
+ wiki.creativecommons.org/Considerations_for_licensees
+
+=======================================================================
+
+Creative Commons Attribution 4.0 International Public License
+
+By exercising the Licensed Rights (defined below), You accept and agree
+to be bound by the terms and conditions of this Creative Commons
+Attribution 4.0 International Public License ("Public License"). To the
+extent this Public License may be interpreted as a contract, You are
+granted the Licensed Rights in consideration of Your acceptance of
+these terms and conditions, and the Licensor grants You such rights in
+consideration of benefits the Licensor receives from making the
+Licensed Material available under these terms and conditions.
+
+
+Section 1 -- Definitions.
+
+ a. Adapted Material means material subject to Copyright and Similar
+ Rights that is derived from or based upon the Licensed Material
+ and in which the Licensed Material is translated, altered,
+ arranged, transformed, or otherwise modified in a manner requiring
+ permission under the Copyright and Similar Rights held by the
+ Licensor. For purposes of this Public License, where the Licensed
+ Material is a musical work, performance, or sound recording,
+ Adapted Material is always produced where the Licensed Material is
+ synched in timed relation with a moving image.
+
+ b. Adapter's License means the license You apply to Your Copyright
+ and Similar Rights in Your contributions to Adapted Material in
+ accordance with the terms and conditions of this Public License.
+
+ c. Copyright and Similar Rights means copyright and/or similar rights
+ closely related to copyright including, without limitation,
+ performance, broadcast, sound recording, and Sui Generis Database
+ Rights, without regard to how the rights are labeled or
+ categorized. For purposes of this Public License, the rights
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
+ Rights.
+
+ d. Effective Technological Measures means those measures that, in the
+ absence of proper authority, may not be circumvented under laws
+ fulfilling obligations under Article 11 of the WIPO Copyright
+ Treaty adopted on December 20, 1996, and/or similar international
+ agreements.
+
+ e. Exceptions and Limitations means fair use, fair dealing, and/or
+ any other exception or limitation to Copyright and Similar Rights
+ that applies to Your use of the Licensed Material.
+
+ f. Licensed Material means the artistic or literary work, database,
+ or other material to which the Licensor applied this Public
+ License.
+
+ g. Licensed Rights means the rights granted to You subject to the
+ terms and conditions of this Public License, which are limited to
+ all Copyright and Similar Rights that apply to Your use of the
+ Licensed Material and that the Licensor has authority to license.
+
+ h. Licensor means the individual(s) or entity(ies) granting rights
+ under this Public License.
+
+ i. Share means to provide material to the public by any means or
+ process that requires permission under the Licensed Rights, such
+ as reproduction, public display, public performance, distribution,
+ dissemination, communication, or importation, and to make material
+ available to the public including in ways that members of the
+ public may access the material from a place and at a time
+ individually chosen by them.
+
+ j. Sui Generis Database Rights means rights other than copyright
+ resulting from Directive 96/9/EC of the European Parliament and of
+ the Council of 11 March 1996 on the legal protection of databases,
+ as amended and/or succeeded, as well as other essentially
+ equivalent rights anywhere in the world.
+
+ k. You means the individual or entity exercising the Licensed Rights
+ under this Public License. Your has a corresponding meaning.
+
+
+Section 2 -- Scope.
+
+ a. License grant.
+
+ 1. Subject to the terms and conditions of this Public License,
+ the Licensor hereby grants You a worldwide, royalty-free,
+ non-sublicensable, non-exclusive, irrevocable license to
+ exercise the Licensed Rights in the Licensed Material to:
+
+ a. reproduce and Share the Licensed Material, in whole or
+ in part; and
+
+ b. produce, reproduce, and Share Adapted Material.
+
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
+ Exceptions and Limitations apply to Your use, this Public
+ License does not apply, and You do not need to comply with
+ its terms and conditions.
+
+ 3. Term. The term of this Public License is specified in Section
+ 6(a).
+
+ 4. Media and formats; technical modifications allowed. The
+ Licensor authorizes You to exercise the Licensed Rights in
+ all media and formats whether now known or hereafter created,
+ and to make technical modifications necessary to do so. The
+ Licensor waives and/or agrees not to assert any right or
+ authority to forbid You from making technical modifications
+ necessary to exercise the Licensed Rights, including
+ technical modifications necessary to circumvent Effective
+ Technological Measures. For purposes of this Public License,
+ simply making modifications authorized by this Section 2(a)
+ (4) never produces Adapted Material.
+
+ 5. Downstream recipients.
+
+ a. Offer from the Licensor -- Licensed Material. Every
+ recipient of the Licensed Material automatically
+ receives an offer from the Licensor to exercise the
+ Licensed Rights under the terms and conditions of this
+ Public License.
+
+ b. No downstream restrictions. You may not offer or impose
+ any additional or different terms or conditions on, or
+ apply any Effective Technological Measures to, the
+ Licensed Material if doing so restricts exercise of the
+ Licensed Rights by any recipient of the Licensed
+ Material.
+
+ 6. No endorsement. Nothing in this Public License constitutes or
+ may be construed as permission to assert or imply that You
+ are, or that Your use of the Licensed Material is, connected
+ with, or sponsored, endorsed, or granted official status by,
+ the Licensor or others designated to receive attribution as
+ provided in Section 3(a)(1)(A)(i).
+
+ b. Other rights.
+
+ 1. Moral rights, such as the right of integrity, are not
+ licensed under this Public License, nor are publicity,
+ privacy, and/or other similar personality rights; however, to
+ the extent possible, the Licensor waives and/or agrees not to
+ assert any such rights held by the Licensor to the limited
+ extent necessary to allow You to exercise the Licensed
+ Rights, but not otherwise.
+
+ 2. Patent and trademark rights are not licensed under this
+ Public License.
+
+ 3. To the extent possible, the Licensor waives any right to
+ collect royalties from You for the exercise of the Licensed
+ Rights, whether directly or through a collecting society
+ under any voluntary or waivable statutory or compulsory
+ licensing scheme. In all other cases the Licensor expressly
+ reserves any right to collect such royalties.
+
+
+Section 3 -- License Conditions.
+
+Your exercise of the Licensed Rights is expressly made subject to the
+following conditions.
+
+ a. Attribution.
+
+ 1. If You Share the Licensed Material (including in modified
+ form), You must:
+
+ a. retain the following if it is supplied by the Licensor
+ with the Licensed Material:
+
+ i. identification of the creator(s) of the Licensed
+ Material and any others designated to receive
+ attribution, in any reasonable manner requested by
+ the Licensor (including by pseudonym if
+ designated);
+
+ ii. a copyright notice;
+
+ iii. a notice that refers to this Public License;
+
+ iv. a notice that refers to the disclaimer of
+ warranties;
+
+ v. a URI or hyperlink to the Licensed Material to the
+ extent reasonably practicable;
+
+ b. indicate if You modified the Licensed Material and
+ retain an indication of any previous modifications; and
+
+ c. indicate the Licensed Material is licensed under this
+ Public License, and include the text of, or the URI or
+ hyperlink to, this Public License.
+
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
+ reasonable manner based on the medium, means, and context in
+ which You Share the Licensed Material. For example, it may be
+ reasonable to satisfy the conditions by providing a URI or
+ hyperlink to a resource that includes the required
+ information.
+
+ 3. If requested by the Licensor, You must remove any of the
+ information required by Section 3(a)(1)(A) to the extent
+ reasonably practicable.
+
+ 4. If You Share Adapted Material You produce, the Adapter's
+ License You apply must not prevent recipients of the Adapted
+ Material from complying with this Public License.
+
+
+Section 4 -- Sui Generis Database Rights.
+
+Where the Licensed Rights include Sui Generis Database Rights that
+apply to Your use of the Licensed Material:
+
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
+ to extract, reuse, reproduce, and Share all or a substantial
+ portion of the contents of the database;
+
+ b. if You include all or a substantial portion of the database
+ contents in a database in which You have Sui Generis Database
+ Rights, then the database in which You have Sui Generis Database
+ Rights (but not its individual contents) is Adapted Material; and
+
+ c. You must comply with the conditions in Section 3(a) if You Share
+ all or a substantial portion of the contents of the database.
+
+For the avoidance of doubt, this Section 4 supplements and does not
+replace Your obligations under this Public License where the Licensed
+Rights include other Copyright and Similar Rights.
+
+
+Section 5 -- Disclaimer of Warranties and Limitation of Liability.
+
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
+
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
+
+ c. The disclaimer of warranties and limitation of liability provided
+ above shall be interpreted in a manner that, to the extent
+ possible, most closely approximates an absolute disclaimer and
+ waiver of all liability.
+
+
+Section 6 -- Term and Termination.
+
+ a. This Public License applies for the term of the Copyright and
+ Similar Rights licensed here. However, if You fail to comply with
+ this Public License, then Your rights under this Public License
+ terminate automatically.
+
+ b. Where Your right to use the Licensed Material has terminated under
+ Section 6(a), it reinstates:
+
+ 1. automatically as of the date the violation is cured, provided
+ it is cured within 30 days of Your discovery of the
+ violation; or
+
+ 2. upon express reinstatement by the Licensor.
+
+ For the avoidance of doubt, this Section 6(b) does not affect any
+ right the Licensor may have to seek remedies for Your violations
+ of this Public License.
+
+ c. For the avoidance of doubt, the Licensor may also offer the
+ Licensed Material under separate terms or conditions or stop
+ distributing the Licensed Material at any time; however, doing so
+ will not terminate this Public License.
+
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
+ License.
+
+
+Section 7 -- Other Terms and Conditions.
+
+ a. The Licensor shall not be bound by any additional or different
+ terms or conditions communicated by You unless expressly agreed.
+
+ b. Any arrangements, understandings, or agreements regarding the
+ Licensed Material not stated herein are separate from and
+ independent of the terms and conditions of this Public License.
+
+
+Section 8 -- Interpretation.
+
+ a. For the avoidance of doubt, this Public License does not, and
+ shall not be interpreted to, reduce, limit, restrict, or impose
+ conditions on any use of the Licensed Material that could lawfully
+ be made without permission under this Public License.
+
+ b. To the extent possible, if any provision of this Public License is
+ deemed unenforceable, it shall be automatically reformed to the
+ minimum extent necessary to make it enforceable. If the provision
+ cannot be reformed, it shall be severed from this Public License
+ without affecting the enforceability of the remaining terms and
+ conditions.
+
+ c. No term or condition of this Public License will be waived and no
+ failure to comply consented to unless expressly agreed to by the
+ Licensor.
+
+ d. Nothing in this Public License constitutes or may be interpreted
+ as a limitation upon, or waiver of, any privileges and immunities
+ that apply to the Licensor or You, including from the legal
+ processes of any jurisdiction or authority.
+
+
+=======================================================================
+
+Creative Commons is not a party to its public
+licenses. Notwithstanding, Creative Commons may elect to apply one of
+its public licenses to material it publishes and in those instances
+will be considered the “Licensor.” The text of the Creative Commons
+public licenses is dedicated to the public domain under the CC0 Public
+Domain Dedication. Except for the limited purpose of indicating that
+material is shared under a Creative Commons public license or as
+otherwise permitted by the Creative Commons policies published at
+creativecommons.org/policies, Creative Commons does not authorize the
+use of the trademark "Creative Commons" or any other trademark or logo
+of Creative Commons without its prior written consent including,
+without limitation, in connection with any unauthorized modifications
+to any of its public licenses or any other arrangements,
+understandings, or agreements concerning use of licensed material. For
+the avoidance of doubt, this paragraph does not form part of the
+public licenses.
+
+Creative Commons may be contacted at creativecommons.org.
+
diff --git a/README.md b/README.md
index 89ed97c..ff99ac7 100644
--- a/README.md
+++ b/README.md
@@ -1,536 +1,192 @@
-
-# PMD Application Ontology Template
+
+[](https://doi.org/10.5281/zenodo.19629237)
-**Template for building modular [PMD Core](https://github.com/materialdigital/core-ontology) application ontologies**
+# Platform Material Digital — Logistics Application Ontology (LOG)
-[](https://github.com/INCATools/ontology-development-kit)
-[](LICENSE)
-[](.github/workflows/)
+The PMD Logistics Application Ontology (LOG) is a BFO- and IOF-conformant ontology for logistics and supply chain management. It extends the [PMD Core Ontology (PMDCo)](https://w3id.org/pmd/co) and is adopted from the [IOF Supply Chain Module](https://spec.industrialontologies.org/ontology/supplychain/Metadatasupplychain/supplychainModule).
-*Automated scaffolding, modular import architecture, SLME extraction, ROBOT templates, and Widoco documentation — all wired together with GitHub Actions.*
-
-
-
----
-
-## Table of Contents
-
-- [Overview](#overview)
-- [Architecture](#architecture)
-- [Repository Structure](#repository-structure)
-- [Prerequisites](#prerequisites)
-- [Quick Start](#quick-start)
-- [Configuration Files](#configuration-files)
-- [CI/CD Workflows](#cicd-workflows)
-- [Release Process](#release-process)
-- [Development Guide](#development-guide)
-- [Import Architecture](#import-architecture)
-- [ID Range Allocation](#id-range-allocation)
-- [Troubleshooting](#troubleshooting)
-- [Contributing](#contributing)
-- [License](#license)
+More information: **https://w3id.org/pmd/log/**
---
-## Overview
+## Contents
-This is a **template repository** for creating new [Platform MaterialDigital (PMD)](https://www.2025.2030.2050.2070.2090.materialdigital.de/) application ontologies. It provides:
-
-- **One-click setup** — A single GitHub Actions workflow generates the entire ontology scaffold from configuration files
-- **Modular component system** — Ontology content is organized into independent OWL modules (e.g., `material_data`, `process_data`) that share a common import backbone
-- **Automated imports** — External ontologies (PMD Core, LogO, TTO, HTO, etc.) are imported via [SLME extraction](https://robot.obolibrary.org/extract) so only referenced terms are included
-- **ROBOT template support** — Define classes in simple TSV spreadsheets; they compile to OWL automatically
-- **Full CI/CD pipeline** — Quality control, builds, import refresh, and documentation generation run on every push
-- **Auto-generated documentation** — [Widoco](https://github.com/dgarijo/Widoco) produces HTML docs deployed to GitHub Pages
-
-Built on the [Ontology Development Kit (ODK)](https://github.com/INCATools/ontology-development-kit) v1.6 and runs entirely inside the `obolibrary/odkfull` Docker container — no local tooling required.
+- [Scope](#scope)
+- [Imports](#imports)
+- [Key Classes](#key-classes)
+- [Usage Patterns](#usage-patterns)
+- [Versions](#versions)
+- [Development](#development)
+- [Contact](#contact)
---
-## Architecture
+## Scope
-```
- ┌─────────────────────────┐
- │ External Ontologies │
- │ (pmdco, logo, tto, hto) │
- └────────────┬────────────┘
- SLME extraction
- │
- ┌────────────▼────────────┐
- │ *_import.owl modules │
- │ (pmdco_import.owl, ...) │
- └────────────┬────────────┘
- │
- ┌────────────▼────────────┐
- │ imports-edit.owl │
- │ (aggregates all imports)│
- └────────────┬────────────┘
- │
- ┌────────────▼────────────┐
- │ {id}-shared.owl │
- │ (shared import base) │
- └────────────┬────────────┘
- ┌───────────┼───────────┐
- │ │ │
- ┌──────▼──┐ ┌─────▼───┐ ┌─────▼───┐
- │{id}- │ │{id}- │ │{id}- │
- │material_ │ │process_ │ │sustain- │
- │data.owl │ │data.owl │ │ability │ ... more components
- └──────┬───┘ └────┬────┘ └────┬────┘
- │ │ │
- ┌▼──────────▼────────────▼┐
- │ {id}-axioms-shared.owl │
- │ (top-level aggregation) │
- └──────────────────────────┘
-```
+LOG covers the following domains:
-Each component module **imports `{id}-shared.owl`**, which transitively provides access to all external terms. The `{id}-axioms-shared.owl` file aggregates every component for the final build.
+- **Organizations and roles** — business organizations, suppliers, manufacturers, carriers, freight forwarders and their BFO-aligned roles; integrated with [W3C ORG vocabulary](https://www.w3.org/TR/vocab-org/) for membership, posts, and sites
+- **Persons** — modeled via [FOAF](http://xmlns.com/foaf/0.1/) (`foaf:Person`), linked to organizations through `org:Membership` and `org:Post`
+- **Physical premises and locations** — `LOG:LOG_1000146` (physical premises, BFO object aggregate) aligned to `org:Site`; geospatial sites (`PMD:PMD_0040029`, BFO:0000029) for spatial modeling; ship-from/ship-to locations with WGS84 coordinates
+- **Shipments and cargo** — shipment, load, cargo, lot, traceable resource unit, bill of lading, purchase order
+- **Transport** — transport process, seaway, airway, shipping route, multimodal chains via supply chain nodes
+- **Facilities** — facility, storage facility, distribution center, warehouse; subclassing `LOG:LOG_1000146 → org:Site`
+- **Agreements and contracts** — commercial service agreement, bill of lading, purchase order, framework contracts
+- **Processes** — transport, receiving, warehousing, packaging, procurement, selling, manufacturing, supply chain processes
+- **Business functions** — freight forwarding, transportation, logistics service, manufacturing service
+- **Plan specifications** — shipment plan, warehousing plan, supply chain plan, packaging plan
---
-## Repository Structure
-
-```
-application-ontology-template/
-│
-├── .github/workflows/ # CI/CD pipeline (5 workflows)
-│ ├── setup-repo.yml # Initial ontology scaffolding (22 steps)
-│ ├── qc.yml # PR quality checks + full build
-│ ├── release.yml # Versioned release + GitHub release creation
-│ ├── enforce-tags.yml # Reject non-semver tags
-│ ├── refresh-imports.yml # Re-extract external imports via SLME
-│ ├── update-repo.yml # Sync repo structure from ODK config
-│ └── docs.yml # Generate Widoco HTML documentation
-│
-├── component_seeds.txt # Component seed data (name|id|label|parent)
-├── components.txt # Component module names (one per line)
-├── creators.txt # Contributor names for ID range allocation
-├── imports.txt # External ontology imports (id|url)
-├── pmdco_terms.txt # PMD Core terms to import via SLME
-│
-├── project-odk.yaml # Main ODK configuration (auto-updated by setup)
-├── seed-template.yaml # Minimal seed config template
-│
-├── LICENSE # Apache 2.0
-└── README.md # You are here
-```
+## Imports
-**After running the setup workflow**, the following directories are generated:
-
-```
-├── src/
-│ ├── ontology/
-│ │ ├── {id}-edit.owl # Main ontology source (edit here)
-│ │ ├── {id}-idranges.owl # ID allocation per contributor
-│ │ ├── {id}-odk.yaml # Internal ODK config copy
-│ │ ├── Makefile # ODK build system
-│ │ ├── catalog-v001.xml # ROBOT import catalog
-│ │ ├── imports/ # SLME-extracted import modules
-│ │ │ ├── pmdco_import.owl
-│ │ │ ├── logo_import.owl
-│ │ │ └── ...
-│ │ └── components/ # Modular OWL component files
-│ │ ├── imports-edit.owl # Aggregates all *_import.owl
-│ │ ├── {id}-shared.owl # Shared base (imports imports-edit)
-│ │ ├── {id}-material_data.owl # Component module
-│ │ ├── {id}-process_data.owl # Component module
-│ │ └── {id}-axioms-shared.owl # Top-level aggregation
-│ └── templates/ # ROBOT template TSV files
-│ ├── {id}-material_data.tsv
-│ └── {id}-process_data.tsv
-└── src/ontology/config/
- └── context.json # JSON-LD prefix context for ROBOT
-```
+| Import | Type | Source |
+|--------|------|--------|
+| `pmdco` | mirror | [PMD Core Ontology 3.0.0](https://w3id.org/pmd/co/3.0.0) |
+| `org` | SLME | [W3C Organization Ontology](https://www.w3.org/ns/org) |
+| `foaf` | custom | [FOAF Vocabulary](http://xmlns.com/foaf/0.1/) — with OWL DL violation fix removing `schema:Person`/`contact:Person` equivalencies |
---
-## Prerequisites
-
-| Requirement | Details |
-|:---|:---|
-| **GitHub Account** | With write access to this repository |
-| **GitHub Pages** | Enabled in repo settings → Pages → Source: **GitHub Actions** |
-| **Actions Permissions** | Settings → Actions → General → **Read and write permissions** + **Allow GitHub Actions to create pull requests** |
-| **No local tools needed** | Everything runs in the `obolibrary/odkfull:v1.6` Docker container via GitHub Actions |
-
-> **For local development** (optional): Install [Protégé](https://protege.stanford.edu/) to edit OWL files, and Docker to run ODK locally via `make`.
+## Key Classes
+
+| IRI | Label | BFO alignment |
+|-----|-------|---------------|
+| `LOG:LOG_1000047` | business organization | `BFO:0000027`, `org:FormalOrganization` |
+| `LOG:LOG_1000050` | organization | `BFO:0000027`, `org:FormalOrganization` |
+| `LOG:LOG_1000146` | physical premises | `BFO:0000027 ∩ ∃BFO:0000082.PMD_0040029`, `org:Site` |
+| `LOG:LOG_1000032` | facility | `LOG_1000146` |
+| `LOG:LOG_1000034` | storage facility | `LOG_1000032` |
+| `LOG:LOG_1000051` | shipment | `BFO:0000027` |
+| `LOG:LOG_1000029` | material product | `BFO:0000040` |
+| `LOG:LOG_1000143` | transport process | `BFO:0000015` |
+| `LOG:LOG_1000129` | warehousing process | `LOG_1000146` context |
+| `LOG:LOG_1000001` | commercial service agreement | `IAO:0000030` (information content entity) |
+| `LOG:LOG_1000002` | bill of lading | `IAO:0000030` |
+| `LOG:LOG_1000088` | ship from location | `PMD:PMD_0040029` |
+| `LOG:LOG_1000089` | ship to location | `PMD:PMD_0040029` |
+| `LOG:LOG_1000090` | supply chain node | `PMD:PMD_0040029` |
---
-## Quick Start
+## Usage Patterns
-### 1. Create Your Repository
+Patterns demonstrate how to model real-world logistics scenarios using this ontology. Each pattern provides:
-Click **[Use this template](https://github.com/materialdigital/application-ontology-template/generate)** to create a new repository from this template.
+- **`pattern.md`** — description, entities, and key properties
+- **`shape.ttl`** — hand-written SHACL shapes for validation
+- **`shape-data.ttl`** — real-world annotated example data (with coordinates, addresses, named organizations)
-### 2. Configure Your Input Files
+Patterns are validated with [pyshacl](https://github.com/RDFLib/pySHACL). SHACL shapes can also be auto-generated from the ontology axioms using the [autoshape pipeline](#autoshape-pipeline).
-Edit the following files in your new repo **before running the setup workflow**:
+### Shipment by Sea
-
-components.txt — Define your ontology modules
-
-```
-# One component name per line (no .owl extension)
-material_data
-process_data
-sustainability_info
-dismantling_data
-```
-
+Models a steel coil shipment from Baosteel (Shanghai) to Volkswagen (Hamburg) via COSCO sea freight.
-
-component_seeds.txt — Pre-populate components with seed classes
+**Entities:** shipment, material product, ship-from/ship-to locations (with WGS84 coordinates), bill of lading, consignor/consignee organizations, transport process.
-```
-# Format: ComponentName | ClassIRI | rdfs:label | ParentClassIRI
-material_data | https://w3id.org/pmd/co/PMD_0000892 | portion of matter | http://purl.obolibrary.org/obo/BFO_0000040
-process_data | https://w3id.org/pmd/co/PMD_0000907 | primary shaping | https://w3id.org/pmd/co/PMD_0000899
-```
-
+[View pattern](patterns/shipment-by-sea/pattern.md) · [Visualize data](https://thhanke.github.io/visgraph/?rdfUrl=https://raw.githubusercontent.com/materialdigital/logistics-application-ontology/refs/heads/main/patterns/shipment-by-sea/shape-data.ttl)
-
-creators.txt — Register contributors for ID range allocation
+### Contract Negotiation
-```
-Alice
-Bob
-Charlie
-```
+Models an annual steel supply framework agreement negotiated between Baosteel and Volkswagen AG, signed by named representatives holding formal organizational posts.
-Each creator gets a block of 10,000 entity IDs (0–9999, 10000–19999, ...).
-
+**Entities:** commercial service agreement, selling process, persons with titles, `org:Post`, buyer/supplier roles, HQ sites with coordinates.
-
-imports.txt — Add external ontology imports
+[View pattern](patterns/contract-negotiation/pattern.md) · [Visualize data](https://thhanke.github.io/visgraph/?rdfUrl=https://raw.githubusercontent.com/materialdigital/logistics-application-ontology/refs/heads/main/patterns/contract-negotiation/shape-data.ttl)
-```
-# Format: import_id|direct_url_to_owl_file
-# PMD Core (pmdco) is always imported automatically — don't add it here
-logo|https://raw.githubusercontent.com/.../log-full.owl
-tto|https://raw.githubusercontent.com/.../tto-full.owl
-```
-
-
-
-pmdco_terms.txt — Specify which PMD Core terms to import
-
-```
-# One IRI per line (comments with # are ignored)
-https://w3id.org/pmd/co/PMD_0000833 # manufacturing process
-https://w3id.org/pmd/co/PMD_0000892 # portion of matter
-https://w3id.org/pmd/co/PMD_0000602 # Device
-```
-
-
-### 3. Enable GitHub Pages
-
-Go to **Settings → Pages → Build and deployment → Source** and select **GitHub Actions**.
-
-### 4. Set Actions Permissions
-
-Go to **Settings → Actions → General → Workflow permissions**:
-- Select **Read and write permissions**
-- Check **Allow GitHub Actions to create and approve pull requests**
-
-### 5. Run the Setup Workflow
-
-1. Navigate to **Actions** → **Setup New Ontology**
-2. Click **Run workflow**
-3. Fill in the parameters:
-
-| Parameter | Example | Description |
-|:---|:---|:---|
-| `ontology_id` | `autoce` | Lowercase acronym for your ontology |
-| `ontology_title` | `Automotive Components Ontology` | Human-readable title |
-| `id_digits` | `7` | Number of digits in entity IDs (default: 7) |
-
-4. Click **Run workflow** and wait for completion (~5–10 minutes)
-
-### 6. Start Editing
-
-Open `src/ontology/{id}-edit.owl` in [Protégé](https://protege.stanford.edu/) or your preferred OWL editor.
-Create new entities under the namespace `https://w3id.org/pmd/{id}/` (e.g., `AUTOCE_0000001`).
-
----
-
-## Configuration Files
-
-### `project-odk.yaml`
-
-The main ODK configuration file. **Auto-generated by the setup workflow** — manual edits will be overwritten during setup. Key sections:
-
-| Section | Purpose |
-|:---|:---|
-| `id`, `title` | Ontology identifier and display name |
-| `uribase`, `uribase_suffix` | IRI structure (`https://w3id.org/pmd/{id}/`) |
-| `import_group.products` | External ontologies to import (SLME) |
-| `components.products` | Modular OWL files registered for build |
-| `idranges` | Entity ID blocks allocated per contributor |
-| `ci: []` | Disables ODK's default workflows (we use custom ones) |
-
-### `seed-template.yaml`
-
-Minimal bootstrap config used only if `project-odk.yaml` is missing. Defines the bare minimum for ODK seed to run.
-
----
+### Warehouse Receiving
-## CI/CD Workflows
+Models steel coils arriving at DB Schenker's Hamburg logistics centre, covering the receiving process and subsequent warehousing under a quarterly buffer stock plan.
-Five GitHub Actions workflows automate the entire ontology lifecycle:
+**Entities:** storage facility (with address and coordinates), receiving process, warehousing process, warehousing plan specification, material product.
-### `setup-repo.yml` — Setup New Ontology
-| | |
-|:---|:---|
-| **Trigger** | Manual dispatch (`workflow_dispatch`) |
-| **Steps** | 22 steps end-to-end |
-| **What it does** | Reads config files → configures ODK → seeds repo scaffold → creates import stubs → patches catalog → generates shared OWL backbone → extracts imports via SLME → creates ROBOT templates → injects annotations → validates → commits → triggers QC build |
-| **Container** | `obolibrary/odkfull:v1.6` |
+[View pattern](patterns/warehouse-receiving/pattern.md) · [Visualize data](https://thhanke.github.io/visgraph/?rdfUrl=https://raw.githubusercontent.com/materialdigital/logistics-application-ontology/refs/heads/main/patterns/warehouse-receiving/shape-data.ttl)
-### `qc.yml` — Build Ontology + PR Quality Checks
+### Multimodal Transport
-`qc.yml` runs two different jobs depending on the event type:
+Models automotive parts shipped from Busan to Düsseldorf via Maersk sea freight (Busan → Rotterdam) followed by DB Schenker road freight (Rotterdam → Düsseldorf), with Rotterdam as the intermodal supply chain node.
-#### Job 1: `pr-checks` — Fast quality gates on every pull request
+**Entities:** two transport process legs, supply chain node, three geospatial sites (with coordinates), two carriers, shipment continuity across legs, temporal ordering.
-| | |
-|:---|:---|
-| **Trigger** | Every pull request targeting `main` (no path filter) |
-| **Container** | `obolibrary/odkfull:v1.6` |
-| **What it does** | Runs fast ODK quality checks → validates OWL DL profile → posts report as PR comment |
+[View pattern](patterns/multimodal-transport/pattern.md) · [Visualize data](https://thhanke.github.io/visgraph/?rdfUrl=https://raw.githubusercontent.com/materialdigital/logistics-application-ontology/refs/heads/main/patterns/multimodal-transport/shape-data.ttl)
-Checks performed (in order):
+### Autoshape Pipeline
-| Check | ODK target / tool | What it catches |
-|:---|:---|:---|
-| ID range validation | `make validate_idranges` | IRI conflicts outside allocated ranges |
-| Consistency (ELK) | `make reason_test` | Unsatisfiable classes, logical contradictions |
-| SPARQL unit tests | `make sparql_test` | Custom SPARQL checks in `src/ontology/sparql/` |
-| ROBOT report | `make robot_reports` | Missing labels, definitions, synonyms |
-| OWL DL profile | `robot validate-profile` | OWL DL violations (undeclared entities, etc.) |
+SHACL shapes are auto-generated from the ontology axioms in three strictness profiles using [owl2shacl](https://github.com/sparna-git/owl2shacl):
-Results are posted as a **comment on the PR** and also appear in the GitHub Actions Step Summary. If a previous run already posted a comment, it is updated in place rather than creating a new one.
+| Profile | File | Description |
+|---------|------|-------------|
+| Open | `patterns/autoshape/auto-shapes-open.ttl` | Properties from other ontologies allowed |
+| Semi-closed | `patterns/autoshape/auto-shapes-semi-closed.ttl` | Domain constraints validated |
+| Closed | `patterns/autoshape/auto-shapes-closed.ttl` | Only declared properties allowed |
-#### Job 2: `ontology-build` — Full build on push to main
-
-| | |
-|:---|:---|
-| **Trigger** | Push to `main` (ontology source files only) / `repository_dispatch: trigger-qc` / `workflow_dispatch` |
-| **Container** | `obolibrary/odkfull:v1.6` |
-| **What it does** | `make refresh-imports` → `make all_assets` → commits release artifacts → triggers `docs.yml` |
-
-#### Customising PR Quality Checks
-
-**Add custom SPARQL checks**
-
-Place any `.sparql` `ASK` or `SELECT` query in `src/ontology/sparql/`. ODK's `sparql_test` target picks them up automatically:
-
-```
-src/ontology/sparql/
-├── my-check-no-orphans.sparql
-└── my-check-required-annotations.sparql
-```
-
-**Disable a specific ODK check**
-
-Pass the corresponding flag as `false` in the `make` call inside `qc.yml`:
-
-```yaml
-# Example: skip pattern expansion and mirror downloads
-make IMP=false PAT=false COMP=false MIR=false validate_idranges reason_test sparql_test robot_reports
-```
-
-| Flag | Default | Effect when `false` |
-|:---|:---|:---|
-| `IMP` | true | Skip import refresh |
-| `PAT` | true | Skip pattern expansion |
-| `COMP` | true | Skip component rebuild |
-| `MIR` | true | Skip upstream mirror downloads |
-
-**Change the OWL profile checked**
-
-In `qc.yml`, find the `robot validate-profile` step and change `--profile DL` to `--profile EL` or `--profile RL` as needed.
-
-**Disable the PR comment** (keep only GitHub Step Summary)
-
-In `qc.yml`, remove or comment out the `gh pr comment` / `gh api` call at the end of the `Post QC report as PR comment` step's Python block.
-
-**Increase ROBOT memory** (for large upstream ontologies)
-
-In the `ontology-build` job, change `ROBOT_JAVA_ARGS=-Xmx6G` to a larger value:
-
-```yaml
-env:
- ROBOT_ENV: 'ROBOT_JAVA_ARGS=-Xmx12G'
+**Generate shapes:**
+```bash
+cd src/ontology
+sh utils/generate-auto-shapes.sh
```
-### `refresh-imports.yml` — Refresh Ontology Imports
-| | |
-|:---|:---|
-| **Trigger** | Manual dispatch / `repository_dispatch: trigger-refresh-imports` |
-| **What it does** | Re-downloads upstream ontologies and re-extracts SLME modules into `imports/*_import.owl` |
-
-### `update-repo.yml` — Update Repo Config
-| | |
-|:---|:---|
-| **Trigger** | Manual dispatch / `repository_dispatch: trigger-update-repo` |
-| **What it does** | Regenerates `Makefile` and config files from `{id}-odk.yaml` after manual config changes |
-
-### `docs.yml` — Create Widoco Documentation
-| | |
-|:---|:---|
-| **Trigger** | Manual dispatch / `repository_dispatch: trigger-docs` |
-| **What it does** | Generates HTML documentation using [Widoco](https://github.com/dgarijo/Widoco) and deploys to GitHub Pages |
-
-### `release.yml` — Release Ontology
-| | |
-|:---|:---|
-| **Trigger** | Manual dispatch (enter version in UI) / push `v*.*.*` git tag |
-| **Container** | `obolibrary/odkfull:v1.6` |
-| **What it does** | Builds release artifacts → sets PMDco-convention `owl:versionIRI` → commits to `main` → creates GitHub release with OWL/TTL/JSON attached → triggers versioned docs |
-
-### Workflow Chain
-
-<<<<<<< HEAD
-```
-setup-repo ──► qc (build) ──► docs (Widoco)
- ▲
- push to main ───┘
+**Validate a pattern:**
+```bash
+cd patterns
+sh test.sh shipment-by-sea
```
----
-
-## Development Guide
-
-### Editing Your Ontology
-
-1. **Open** `src/ontology/{id}-edit.owl` in Protégé
-2. **Create** new classes under namespace `https://w3id.org/pmd/{id}/`
-3. **Push** to `main` — the QC workflow builds and validates automatically
-
-### Makefile Commands (Local Development)
-
-Run these from `src/ontology/`:
-
+**Validate all patterns (make target):**
```bash
-make test # Run reasoner + validation checks
-make refresh-imports # Re-extract external imports via SLME
-make release # Build all release artifacts (OWL, TTL, JSON)
-make update_repo # Regenerate Makefile from ODK config
+cd src/ontology
+make validate-patterns
```
-### Adding a New Component
-
-1. Add the name to `components.txt`
-2. Re-run the **Setup New Ontology** workflow, or manually:
- - Register in `project-odk.yaml` under `components.products`
- - Create the OWL file in `src/ontology/components/`
- - Add an `Import()` for it in `{id}-axioms-shared.owl`
- - Run `make update_repo`
-
-### Adding a New External Import
-
-1. Add a line to `imports.txt`:
- ```
- myonto|https://example.org/ontologies/myonto.owl
- ```
-2. Optionally create `myonto_terms.txt` with specific IRIs to extract
-3. Run the **Refresh Ontology Imports** workflow
-
---
-## Import Architecture
+## Versions
-The setup workflow generates a **layered OWL import graph** that keeps modules decoupled while sharing external terms:
+### Stable release
-| File | Role |
-|:---|:---|
-| `imports/*_import.owl` | SLME-extracted modules from upstream ontologies |
-| `imports-edit.owl` | Aggregates all `*_import.owl` into a single import point |
-| `{id}-shared.owl` | Imports `imports-edit.owl` — shared base for all components |
-| `{id}-{component}.owl` | Individual component modules — each imports `{id}-shared.owl` |
-| `{id}-axioms-shared.owl` | Top-level aggregation importing ALL component files |
-
-**Why this structure?**
-- Each component gets all external terms through `{id}-shared.owl` without redundant imports
-- Components are independently editable and testable
-- Adding/removing a component only requires updating `{id}-axioms-shared.owl`
-- The SLME extraction keeps import files minimal (only referenced terms)
-
----
+Latest release always at: **https://w3id.org/pmd/log.owl**
-## ID Range Allocation
+### Release artefacts
-Each contributor listed in `creators.txt` is allocated a **10,000 ID block**:
+| Artefact | Description |
+|----------|-------------|
+| `log.owl` / `log.ttl` | Full ontology with all imports merged |
+| `log-full.owl` / `log-full.ttl` | Full with inferred axioms (primary release) |
+| `log-base.owl` / `log-base.ttl` | Base — no imports merged |
+| `log-simple.owl` / `log-simple.ttl` | Simplified, classified, imports filtered |
-| Creator | Range | Example ID |
-|:---|:---|:---|
-| First | `0` – `9,999` | `AUTOCE_0000001` |
-| Second | `10,000` – `19,999` | `AUTOCE_0010000` |
-| Third | `20,000` – `29,999` | `AUTOCE_0020000` |
+### Editors' version
-The ranges are encoded in `{id}-idranges.owl` (Manchester Syntax) and enforced by tools like dicer-cli.
+[src/ontology/log-edit.owl](src/ontology/log-edit.owl)
---
-## Troubleshooting
+## Development
-
-Setup workflow fails at "Run ODK seed"
+This repository uses the [Ontology Development Kit (ODK)](https://github.com/INCATools/ontology-development-kit).
-- Ensure `project-odk.yaml` exists in the repo root
-- Check that `ontology_id` contains only alphanumeric characters
-- Review the stub import files — they must exist before ODK seed runs
-
-
-
-ROBOT out-of-memory errors during SLME extraction
-
-The workflows default to `-Xmx8G`. For very large upstream ontologies, increase the heap:
-```yaml
-ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx12G'
-```
-
-
-
-Double slashes in IRIs (e.g., /pmd//autoce/)
-
-Step 12 of the setup workflow automatically normalizes these. If they persist:
+**Run quality checks:**
```bash
-find src/ontology -name "*.owl" -exec sed -i 's|/pmd//|/pmd/|g' {} +
+cd src/ontology
+docker run --rm -v $(pwd)/../../:/work -w /work/src/ontology obolibrary/odkfull:latest make IMP=false MIR=false
```
-
-
-
-Catalog resolution errors (HTTP fetch during CI)
-Ensure `catalog-v001.xml` has `rewriteURI` entries for both `imports/` and `components/` directories. Step 10 of setup does this automatically.
-
-
-
-"Protected branch" error when pushing
-
-The `main` branch requires pull requests. Push to a feature branch and open a PR:
+**Refresh imports:**
```bash
-git checkout -b feature/my-changes
-git push origin feature/my-changes
+cd src/ontology
+docker run --rm -v $(pwd)/../../:/work -w /work/src/ontology obolibrary/odkfull:latest make all_imports
```
-
-
----
-## Contributing
+Customizations to the build pipeline belong in [src/ontology/log.Makefile](src/ontology/log.Makefile) — this file is never overwritten by ODK updates.
-We welcome contributions to the PMD Application Ontology Template!
+---
-- **Issues**: [Report bugs or request features](https://github.com/materialdigital/application-ontology-template/issues)
-- **Discussions**: [Join community conversations](https://github.com/materialdigital/application-ontology-template/discussions)
-- **PMD Playground Meetings**: Every second Friday, 1–2 PM CET — [Register via mailing list](https://www.lists.kit.edu/sympa/subscribe/ontology-playground?previous_action=info)
-- **Contact**: [info@material-digital.de](mailto:info@material-digital.de)
+## Contact
----
+Please use the [Issue tracker](https://github.com/materialdigital/logistics-application-ontology/issues) to request new terms or report errors.
-## License
+## Acknowledgements
-This project is licensed under the [Apache License 2.0](LICENSE).
+This ontology repository was created using the [Ontology Development Kit (ODK)](https://github.com/INCATools/ontology-development-kit). The autoshape pipeline uses [owl2shacl rulesets](https://github.com/sparna-git/owl2shacl) derived from work by TopQuadrant, adapted from [PMD Core Ontology](https://github.com/materialdigital/core-ontology).
diff --git a/creators.txt b/creators.txt
index c4b15cb..948673c 100644
--- a/creators.txt
+++ b/creators.txt
@@ -1,4 +1,4 @@
-first
-Second
-Third
-others
\ No newline at end of file
+Thomas Hanke
+Jörg Waitelonis
+Kamilla Zaripova
+POTU SAI TEJA
diff --git a/issue_template.md b/issue_template.md
new file mode 100644
index 0000000..6700c04
--- /dev/null
+++ b/issue_template.md
@@ -0,0 +1,21 @@
+For new term requests, please provide the following information:
+
+## Preferred term label
+
+(e.g., Asplenia)
+
+## Synonyms
+
+(e.g., Absent spleen)
+
+## Textual definition
+
+the definition should be understandable even for non-specialists. Include a PubMed ID to refer to any relevant article that provides additional information about the suggested term.
+
+## Suggested parent term
+
+Please look in the hierarchy in a browser such as [OLS](http://www.ebi.ac.uk/ols/ontologies/log)
+
+## Attribution
+
+If you would like a nanoattribution, please indicate your ORCID id
\ No newline at end of file
diff --git a/log-base.owl b/log-base.owl
new file mode 100644
index 0000000..a93ab4b
--- /dev/null
+++ b/log-base.owl
@@ -0,0 +1,5077 @@
+
+
+
+
+
+ Platform Material Digital Application Ontology for Logistics and Supplychain (log) 1.0.0, https://w3id.org/pmd/log/
+ 2025-11-20
+
+ This is an alignment of the IOF Supply Chain Ontologies Library to the Platform Material Digital Core Ontology. It contains ontologies to be used in the domain of supply chain and logistics.
+ http://opensource.org/licenses/MIT
+ Platform Material Digital Application Ontology for Logistics and supplychain (log)
+ The logistics application ontology for use with PMD Core Ontology (PMDco). The scope of this module is the description of material science and engineering related logistics and general organization. Its is adopted from the IOF SupplyChain Module https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/
+ 1.0.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ActsOnBehalfOfAtSomeTime
+ acts on behalf of
+ relation from a material entity to a person or a group of agents or engineered system that holds when the material entity participates in some planned process in order to fulfill an objective for the person or group of agents or engineered system
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/OwnedBy
+ owned by
+ relationship from a material entity to a person or business organization when the material entity is held by the person or business organization as legal property
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/owns
+ owns
+ relationship from a person or business organization to an independent continuant when the agent holds the independent continuant as legal property
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IndustrialInventory
+ industrial inventory
+ material product, material component, raw material, or material artifact that is ready to be sold or used and is stored in a storage facility or on factory floor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IndustrialInventoryRole
+ industrial inventory role
+ role held by some material entity when it is stored by a bussiness organization and it is intended to be supplied to a customer or to be used or consumed in some product production process
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ConsigningProcess
+ consigning process
+ business process that results in placing a material entity in the possession of some agent without changing the ownership until the material entity is sold
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwardingProcess
+ freight forwarding process
+ business process of planning and coordinating the transportation of material products on behalf of a shipper
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturer identifier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ product identifier
+
+
+
+
+
+
+
+
+ batch identifier
+ denotes all material artifact generated by one distinguishable manufacturing process run
+
+
+
+
+
+
+
+
+
+ agreement
+ understanding between two or more parties that contains a set of commitments on the part of the parties
+
+
+
+
+
+
+
+
+
+ commercial service agreement
+ agreement between a customer and service provider that is about some commercial service to be provided by the service provider in exchange for compensation from the customer
+
+
+
+
+
+
+
+
+
+ bill of lading
+ agreement between a shipper and a carrier that prescribes some consigning process
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/core/Core/EquipmentRole
+ transport equipment role
+ role held by a material artifact when it is planned to be involved in or is involved in carrying out some part of a planned transportation process and that is not consumed in that planned process
+
+
+
+
+
+
+
+
+
+ purchase order
+ agreement between a buyer and a vendor (supplier) that that contains a set of commitments on the buyer and the vendeor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ lot number
+ identifier that uniquely denotes a particular quantity of material entities that have shared production or transformation history
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ organization identifier
+ identifier that identifies an organization
+
+
+
+
+
+
+
+
+
+ part number
+ identifier that uniquely identifies an artifact (material artifact) and that is created according to some part numbering system
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ physical location identifier
+ identifier that identifies a physical location (site)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ global location number
+ identifer that uniquely identifies a business organization or a geospatial location and complies with GS1 GLN coding scheme
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LocationIdentificationScheme
+ location identification scheme
+ identification scheme that prescribes how unique identifiers of physical locations are formulated
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ customer
+ person or organization which has a customer role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/iof/ontology/core/Core/Agent
+ agent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ buyer
+ person or organization which has a buyer role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ consignee
+ person or business organization that receives some shipment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ consignor
+ shipper
+ person or business organization that prepares and sends shipments for transport
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ distributor
+ person or business organization when it purchases products from manufacturers and resells them to wholesalers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ freight forwarder
+ person or business organization when it arranges the transportation of shipments on behalf of the shipper (consignor) or consignee
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturer
+ organization which has a manufacturer role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ retailer
+ person or business organization who buys products from wholesalers and manufacturers and resells them to end users
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Shipper
+ shipper
+ person or business organization that prepares and sends shipments for transport
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supplier
+ person or organization which has a supplier role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ carrier
+ person or business organization who provides transportation services
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ service provider
+ person or organization which has a service provider role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supply chain agent
+ person or business organization who supplies material products or commercial services to other agents in a supply chain
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ wholesaler
+ person or business organization that buys products from distributors and resells them to retailers or other business organizations
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ cargo
+ material entity that is transported using a transport equipment by a carrier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Load
+ load
+ collection of material entities which share the same transportation and transfer history
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ maintainable material item
+ material artifact or engineered system which has the maintainable material item role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material component
+ material entity which has the material component role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material product
+ material entity which has the material product role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material resource
+ material entity which has the material resource role
+
+
+
+
+
+
+
+
+ department
+ object aggregate that is part of an organisation and consists of persons that are members of the same organisation
+ true
+
+
+
+
+
+
+
+
+
+ facility
+ engineered system that consists of buildings, structures, roads, machines, and equipment desgined to provide certain capabilities
+
+
+
+
+
+
+
+
+ “Laboratory.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/laboratory. Accessed 24 Nov. 2022.
+ laboratory
+ A place equipped for experimental study in a science or for testing and analysis.
+ true
+
+
+
+
+
+
+
+
+
+ storage facility
+ facility that is designed to store materials or goods
+
+
+
+
+
+
+
+
+
+ distribution center
+ storage facility designed to store manufactured products that are to be distributed to resellers and wholesalers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LogisticUnit
+ logistic unit
+ material entities packaged together for transport or storage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Lot
+ lot
+ quantity of material entities produced together and sharing the same production history and specifications
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supply chain system
+ engineered system composed of agents, facilties, machines, and information systems that is designed to deliver products and services to end customers through an engineered flow of information, material, and cash
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturing supply chain system
+ supply chain system that is formed to manufacture one or more products
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ service supply chain system
+ supply chain system that is formed to deliver some commercial services
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ piece of transport equipment
+ piece of equipment that has the function of holding, protecting, and securing a number of material entites for transportation purposes
+
+
+
+
+
+
+
+
+
+ container
+ piece of transport equipment that is designed to contain some material entities
+
+
+
+
+
+
+
+
+
+ trailer
+ piece of transport equipment that is unpowered and is pulled by a powered vehicle
+
+
+
+
+
+
+
+
+
+ wagon
+ piece of transport equipment in a rail transport system used for carrying cargo or passengers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IntegratedCarrierBusinessOrganization
+ integrated carrier business organization
+ business organization that is created for the purpose of providing different types of transportation and freight forwarding services
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/core/Core/BusinessOrganization
+ business organization
+ organization engaging in or planning to engage in any activity of buying and selling goods or services for a profit
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ organization
+ An organization is an immaterial entity that has the organisation role and there exists some sort of legal framework that recognises the entity and its continued existence.
+ true
+ issue: https://github.com/materialdigital/core-ontology/issues/101
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Shipment
+ shipment
+ collection of material entities delivered to a receiver's location that have undergone the same dispatch and receipt processes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ freight forwarding business function
+ business function that is realized in a freight forwarding service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/TransportationBusinessFunction
+ transportation business function
+ business function that is realized in a transportation service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ agent role
+ role that someone or something has when they act on behalf of a person, engineered system or a group of agents
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ buyer role
+ agent role held by a person or organization when it buys a product or a service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ consignee role
+ role held by a person or business organization when it receives a shipment from a carrier and owns the shipment after the receipt
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ consignor role
+ role held by a business organization or person when it prepares, initiates, and consigns a shipment it owns
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ customer role
+ agent role held by a person or organization when it utilizes the product or receives the service or subscribes to the commercial service agreement
+
+
+
+
+
+
+
+
+
+ service consumer role
+ customer role held by a person or business organization when it receives and consumes a service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ distributor role
+ role held by a person or business organization when it buys some material products from a manufacturer and resells them to a wholesaler
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturer role
+ agent role held by an organization when it produces material products
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ retailer role
+ role held by a person or business organization when it buys products (material product) from manufacturers or wholesalers and offers them for sale to customers who are the end users of the product
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supplier role
+ agent role held by a person or organization when it offers to sell or provide products or services
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ service provider role
+ supplier role held by a person or organization when it offers to sell or provide a commercial service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ logistics service provider role
+ service provider role that is held by a business organization or person when it provides a logistics service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturing service provider role
+ service provider role that is held by a person or business organization when it provides a manufacturing service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwarderRole
+ freight forwarder role
+ A freight forwarder, or forwarding agent, is a person or company that organizes shipments for individuals or corporations to get goods from the manufacturer or producer to a market, customer or final point of distribution.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PackagingServiceProviderRole
+ packaging service provider role
+ logisitics service provider role held by a business organization or person when it provides a packaging service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/StorageServiceProviderRole
+ storage service provider role
+ logisitics service provider role that is held by a person or business organization when it provides a storage service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ transportation service provider role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainAgentRole
+ supply chain agent role
+ role held by an agent that is a part of a supply chain system when it supplies material products or commercial services to other agents in the supply chain system
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ wholesaler role
+ role held by a person or business organization when it buys some product from a distributor and resells them to retailers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ cargo role
+ role held by a material entity when it is being transported or is planned to be transported by a carrier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ship from location role
+ location role held by a geospatial site when it is the location at which some dispatch process occures
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ship to location role
+ location role held by a geospatial site when it is the location at which some receiving process occures
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainNodeRole
+ supply chain node role
+ location role held by a geospatial site when it is the site some supply chain process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material product role
+ role held by a material entity that is intended to be sold, or has been bought, or has been supplied
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ raw material role
+ role held by a material entity when it is acquired by an organizational entity with some plan to transform or modify it into intermediate-level components or substances or into a product
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ lot role
+ traceable resource unit role held by material entities that have a shared production or transformation history
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ shipment role
+ traceable resource unit role held by material entities when they undergo the same dispatch and receipt processes as prescribed by a bill of lading
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ load role
+ traceable resource unit role held by a number of material entities that have been transferred or transported together
+
+
+
+
+
+
+
+
+
+ logistic unit role
+ traceable resource unit role held by a number of material entities that are packaged together for transport or storage
+
+
+
+
+
+
+
+
+
+ traceable resource unit role
+ role held by a number of uniquely identified material entities when they participate in some supply chain processes or production processes while some agent observes them and collects information about them for future retrieval
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ location role
+ role held by a geospatial site when it is the location of some material entity at some time or the site of some process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ShipFromLocation
+ ship from location
+ geospatial location at which some dispatch process occurs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ShipToLocation
+ ship to location
+ geospatial location in which some receiving process occurs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainNode
+ supply chain node
+ geospatial location that is the site of some supply chain process
+
+
+
+
+
+
+
+
+
+ business function
+ function of an organization to partake in for profit activities as prescribed by the objectives specified by that organization
+
+
+
+
+
+
+
+
+
+ commercial service specification
+ plan specification that prescribes a commercial service
+
+
+
+
+
+
+
+
+
+ packaging plan specification
+ plan specification that prescribes a packaging process
+
+
+
+
+
+
+
+
+
+ shipment plan specification
+ plan specification that prescribes a shipment preparation process and a transportation process
+
+
+
+
+
+
+
+
+
+ supply chain plan specification
+ plan specification that has one or more supply chain objective specifications as parts and that prescribes a supply chain process
+
+
+
+
+
+
+
+
+
+ warehousing plan specification
+ plan specification that prescribes a warehousing process
+
+
+
+
+
+
+
+
+
+ airway
+ three-dimensional spatial region that connects one specified location (navigation point) to another at a specified altitude, along which an aircraft may be flown
+
+
+
+
+
+
+
+
+
+ seaway
+ three-dimensional spatial region that connects one specified location to another on a body of water along which a watercraft may travel
+
+
+
+
+
+
+
+
+
+ shipping route
+ way (three-dimensional spatial region) that connects two or more supply chain nodes along which some shipment travels during a transport process
+
+
+
+
+
+
+
+
+
+ raw material
+ material entity which has the raw material role
+
+
+
+
+
+
+
+
+
+ traceable resource unit
+ material entity that is uniquely identified and there may be a need to retrieve information about its history, application, or location as it moves through a supply chain
+
+
+
+
+
+
+
+
+
+ maintainable material item role
+ role played by an asset (engineered system or material artifact) when there is a maintenance strategy prescribing its maintenance process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material component role
+ role held by a material entity when it is a proper part of another material entity or is planned to be a proper part of another material entity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material resource role
+ role played by a material entity that consists in it being available to a person or group of agents or engineered system
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ buying business process
+ business process wherein a financial instrument is used by an agent (buyer) to acquire ownership of a product or commercial service from another agent (seller) for the buyer itself or for another agent (customer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ commercial service
+ business process that consists of a service provisioning process and a consumption process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ logistics service
+ commercial service that consists of at least one transport process, packaging process, freight forwarding, or storage process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwardingService
+ freight forwarding service
+ logistics service that consists of at least one freight forwarding process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PackagingService
+ packaging service
+ logistics service that consists of at lest one packaging process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/StorageService
+ storage service
+ logistics service that consists of at least one storage process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/TransportationService
+ transportation service
+ business process that results in placing a material entity in the possession of some agent without changing the ownership until the material entity is sold
+ logistics service that consists of at least one transport process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ManufacturingService
+ manufacturing service
+ commercial service that consists of at least one manufacturing process
+
+
+
+
+
+
+
+
+
+ inventory management process
+ business process that consists of the activities required for controlling, tracking, recording, and planning inventories
+
+
+
+
+
+
+
+
+
+ logistics process
+ business process that consists of a combination of one or more transport, shipment preparation, storage or receiving processes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PackagingProcess
+ packaging process
+ business process of putting some products or some portion of material into a package according to a packaging plan specification
+
+
+
+
+
+
+
+
+
+ procuring business process
+ business process that consists of buying and ensuring the supply of products or services
+
+
+
+
+
+
+
+
+
+ product production process
+ business process that consists of at least one manufacturing process through which raw materials and components are transformed or modified to create a material product
+
+
+
+
+
+
+
+
+
+ receiving process
+ planned process in which an agent receives some material entity from another agent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supply chain process
+ planned process in which a supply chain plan specification is realized by a number of supply chain agents
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/core/Core/SellingBusinessProcess
+ selling business process
+ business process wherein a product or commercial service is offered by an agent (seller) for another agent (buyer) to acquire ownership via a financial instrument
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ShipmentPreparationProcess
+ shipment preparation process
+ business process in which some material entities are prepared to be transported together to a receiver’s location
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supplying business process
+ business process wherein a product or service is supplied
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/WarehousingProcess
+ warehousing process
+ business process of storing products (material products) in a storage facility for future use
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ business process
+ planned process which is prescribed by a plan specification with one or more objectives specified by a business organization
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturing process
+ planned process that consists of a structured set of operations through which input material is transformed or modified
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ assembly process
+ manufacturing process in which a number of material components are physically connected to each other to form an assembly
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ measurement process
+ planned process to determine the value of an attribute (specifically dependent continuant or temporal region or process characteristic) of an entity of interest
+
+
+
+
+
+
+
+
+
+ appraisal process
+ measurement process that involves evaluating, assessing, estimating, or judging the nature, value, importance, condition, or quality of some entity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material location change process
+ planned process that results in a material entity moving from one physical location to another
+
+
+
+
+
+
+
+
+
+ arrival process
+ material location change process that consists of the participating entity reaching its destination such that the travel or transport process which it is a part of is completed
+
+
+
+
+
+
+
+
+
+ departure process
+ material location change process that consists of the participating entity leaving its starting location such that the travel or transport process it is a part of is initiated
+
+
+
+
+
+
+
+
+
+ transport process
+ material location change process involving the movement of material entities by some piece of transport equipment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ storage process
+ planned process of putting and keeping material entities in a specified location for future use
+
+
+
+
+
+
+
+
+
+ travel process
+ material location change process wherein one or more persons move between geographical locations
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/log-base.ttl b/log-base.ttl
new file mode 100644
index 0000000..89cf749
--- /dev/null
+++ b/log-base.ttl
@@ -0,0 +1,3657 @@
+@prefix : .
+@prefix dce: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix rdfs: .
+@prefix skos: .
+@prefix dcterms: .
+@prefix logistics: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:versionIRI ;
+ dce:type obo:IAO_8000001 ;
+ dcterms:bibliographicCitation "Platform Material Digital Application Ontology for Logistics and Supplychain (log) 1.0.0, https://w3id.org/pmd/log/" ;
+ dcterms:created "2025-11-20" ;
+ dcterms:creator ;
+ dcterms:description "This is an alignment of the IOF Supply Chain Ontologies Library to the Platform Material Digital Core Ontology. It contains ontologies to be used in the domain of supply chain and logistics." ;
+ dcterms:license "http://opensource.org/licenses/MIT" ;
+ dcterms:title "Platform Material Digital Application Ontology for Logistics and supplychain (log)"@en ;
+ rdfs:comment "The logistics application ontology for use with PMD Core Ontology (PMDco). The scope of this module is the description of material science and engineering related logistics and general organization. Its is adopted from the IOF SupplyChain Module https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/"@en ;
+ owl:versionInfo "1.0.0" .
+
+#################################################################
+# Annotation properties
+#################################################################
+
+### http://purl.obolibrary.org/obo/IAO_0000119
+obo:IAO_0000119 rdf:type owl:AnnotationProperty .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000412
+obo:IAO_0000412 rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/elements/1.1/type
+dce:type rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/bibliographicCitation
+dcterms:bibliographicCitation rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/created
+dcterms:created rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/creator
+dcterms:creator rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/description
+dcterms:description rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/license
+dcterms:license rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/title
+dcterms:title rdf:type owl:AnnotationProperty .
+
+
+### http://www.w3.org/2004/02/skos/core#altLabel
+skos:altLabel rdf:type owl:AnnotationProperty .
+
+
+### http://www.w3.org/2004/02/skos/core#definition
+skos:definition rdf:type owl:AnnotationProperty .
+
+
+### https://w3id.org/pmd/co/logistics/PMD_0000060
+logistics:PMD_0000060 rdf:type owl:AnnotationProperty .
+
+
+### https://w3id.org/pmd/co/logistics/PMD_0001032
+logistics:PMD_0001032 rdf:type owl:AnnotationProperty .
+
+
+#################################################################
+# Object Properties
+#################################################################
+
+### http://purl.obolibrary.org/obo/BFO_0000050
+obo:BFO_0000050 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000054
+obo:BFO_0000054 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000055
+obo:BFO_0000055 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000066
+obo:BFO_0000066 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000108
+obo:BFO_0000108 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000117
+obo:BFO_0000117 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000132
+obo:BFO_0000132 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000183
+obo:BFO_0000183 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000196
+obo:BFO_0000196 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000197
+obo:BFO_0000197 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000199
+obo:BFO_0000199 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000221
+obo:BFO_0000221 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000223
+obo:BFO_0000223 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000136
+obo:IAO_0000136 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000219
+obo:IAO_0000219 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000235
+obo:IAO_0000235 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0000056
+obo:RO_0000056 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0000057
+obo:RO_0000057 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0000059
+obo:RO_0000059 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0001015
+obo:RO_0001015 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0001025
+obo:RO_0001025 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0002233
+obo:RO_0002233 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0002234
+obo:RO_0002234 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0002351
+obo:RO_0002351 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0002352
+obo:RO_0002352 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0002353
+obo:RO_0002353 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0002502
+obo:RO_0002502 rdf:type owl:ObjectProperty .
+
+
+### https://w3id.org/pmd/co/PMD_0000004
+ rdf:type owl:ObjectProperty .
+
+
+### https://w3id.org/pmd/co/PMD_0040121
+ rdf:type owl:ObjectProperty .
+
+
+### https://w3id.org/pmd/log/LOG_1900001
+:LOG_1900001 rdf:type owl:ObjectProperty ;
+ rdfs:domain [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Class ;
+ owl:complementOf obo:BFO_0000024
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ [ owl:intersectionOf ( obo:BFO_0000027
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002351 ;
+ owl:someValuesFrom
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ )
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ActsOnBehalfOfAtSomeTime" ;
+ rdfs:label "acts on behalf of"@en ;
+ skos:definition "relation from a material entity to a person or a group of agents or engineered system that holds when the material entity participates in some planned process in order to fulfill an objective for the person or group of agents or engineered system" .
+
+
+### https://w3id.org/pmd/log/LOG_1900002
+:LOG_1900002 rdf:type owl:ObjectProperty ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/OwnedBy" ;
+ rdfs:label "owned by"@en ;
+ skos:definition "relationship from a material entity to a person or business organization when the material entity is held by the person or business organization as legal property" .
+
+
+### https://w3id.org/pmd/log/LOG_1900003
+:LOG_1900003 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf owl:topObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ] ;
+ rdfs:range obo:BFO_0000004 ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/owns" ;
+ rdfs:label "owns"@en ;
+ skos:definition "relationship from a person or business organization to an independent continuant when the agent holds the independent continuant as legal property" .
+
+
+#################################################################
+# Classes
+#################################################################
+
+### http://purl.obolibrary.org/obo/BFO_0000002
+obo:BFO_0000002 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000004
+obo:BFO_0000004 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000008
+obo:BFO_0000008 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000015
+obo:BFO_0000015 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000017
+obo:BFO_0000017 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000023
+obo:BFO_0000023 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000024
+obo:BFO_0000024 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000027
+obo:BFO_0000027 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000028
+obo:BFO_0000028 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000029
+obo:BFO_0000029 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000030
+obo:BFO_0000030 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000034
+obo:BFO_0000034 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000040
+obo:BFO_0000040 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000203
+obo:BFO_0000203 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000005
+obo:IAO_0000005 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000030
+obo:IAO_0000030 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000104
+obo:IAO_0000104 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/IAO_0020000
+obo:IAO_0020000 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000011
+obo:OBI_0000011 rdf:type owl:Class .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000571
+obo:OBI_0000571 rdf:type owl:Class ;
+ owl:equivalentClass :LOG_1000061 .
+
+
+### https://w3id.org/pmd/co/PMD_0000008
+ rdf:type owl:Class .
+
+
+### https://w3id.org/pmd/co/PMD_0000014
+ rdf:type owl:Class .
+
+
+### https://w3id.org/pmd/co/PMD_0000524
+ rdf:type owl:Class ;
+ owl:equivalentClass :LOG_1000132 .
+
+
+### https://w3id.org/pmd/co/PMD_0000833
+ rdf:type owl:Class .
+
+
+### https://w3id.org/pmd/co/PMD_0000881
+ rdf:type owl:Class .
+
+
+### https://w3id.org/pmd/co/PMD_0020138
+ rdf:type owl:Class ;
+ owl:equivalentClass :LOG_1000037 .
+
+
+### https://w3id.org/pmd/co/PMD_0040029
+ rdf:type owl:Class .
+
+
+### https://w3id.org/pmd/co/PMD_0040030
+ rdf:type owl:Class .
+
+
+### https://w3id.org/pmd/co/PMD_0040129
+ rdf:type owl:Class .
+
+
+### https://w3id.org/pmd/log/LOG_0000000
+:LOG_0000000 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000028
+ :LOG_1000029
+ :LOG_1000102
+ [ owl:intersectionOf ( obo:BFO_0000030
+ [ rdf:type owl:Class ;
+ owl:complementOf
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_0000001
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000030 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_0000001
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IndustrialInventory" ;
+ rdfs:label "industrial inventory"@en ;
+ skos:definition "material product, material component, raw material, or material artifact that is ready to be sold or used and is stored in a storage facility or on factory floor"@en .
+
+
+### https://w3id.org/pmd/log/LOG_0000001
+:LOG_0000001 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000106 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000123
+ :LOG_1000128
+ )
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IndustrialInventoryRole" ;
+ rdfs:label "industrial inventory role"@en ;
+ skos:definition "role held by some material entity when it is stored by a bussiness organization and it is intended to be supplied to a customer or to be used or consumed in some product production process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_0000002
+:LOG_0000002 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ConsigningProcess" ;
+ rdfs:label "consigning process"@en ;
+ skos:definition "business process that results in placing a material entity in the possession of some agent without changing the ownership until the material entity is sold" .
+
+
+### https://w3id.org/pmd/log/LOG_0000003
+:LOG_0000003 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( :LOG_1000130
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000016
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwardingProcess" ;
+ rdfs:label "freight forwarding process"@en ;
+ skos:definition "business process of planning and coordinating the transportation of material products on behalf of a shipper" .
+
+
+### https://w3id.org/pmd/log/LOG_0080000
+:LOG_0080000 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:IAO_0020000
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000050
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom obo:OBI_0000571
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000006 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000050
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom obo:OBI_0000571
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ rdfs:label "manufacturer identifier"@en .
+
+
+### https://w3id.org/pmd/log/LOG_0080001
+:LOG_0080001 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000029
+ ] ;
+ rdfs:subClassOf obo:IAO_0020000 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000029
+ ] ;
+ rdfs:label "product identifier"@en .
+
+
+### https://w3id.org/pmd/log/LOG_0080002
+:LOG_0080002 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0020000 ;
+ rdfs:label "batch identifier"@en ;
+ skos:definition "denotes all material artifact generated by one distinguishable manufacturing process run"@en .
+
+
+### https://w3id.org/pmd/log/LOG_1000000
+:LOG_1000000 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ obo:IAO_0000412 ;
+ rdfs:label "agreement"@en ;
+ skos:definition "understanding between two or more parties that contains a set of commitments on the part of the parties"@en .
+
+
+### https://w3id.org/pmd/log/LOG_1000001
+:LOG_1000001 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000000 ;
+ obo:IAO_0000412 ;
+ rdfs:label "commercial service agreement"@en ;
+ skos:definition "agreement between a customer and service provider that is about some commercial service to be provided by the service provider in exchange for compensation from the customer"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000002
+:LOG_1000002 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000001 ;
+ obo:IAO_0000412 ;
+ rdfs:label "bill of lading"@en ;
+ skos:definition "agreement between a shipper and a carrier that prescribes some consigning process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000003
+:LOG_1000003 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/core/Core/EquipmentRole" ;
+ rdfs:label "transport equipment role"@en ;
+ skos:definition "role held by a material artifact when it is planned to be involved in or is involved in carrying out some part of a planned transportation process and that is not consumed in that planned process" .
+
+
+### https://w3id.org/pmd/log/LOG_1000004
+:LOG_1000004 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000000 ;
+ obo:IAO_0000412 ;
+ rdfs:label "purchase order"@en ;
+ skos:definition "agreement between a buyer and a vendor (supplier) that that contains a set of commitments on the buyer and the vendeor"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000005
+:LOG_1000005 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:IAO_0020000
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000037
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:IAO_0020000 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000037
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "lot number"@en ;
+ skos:definition "identifier that uniquely denotes a particular quantity of material entities that have shared production or transformation history"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000006
+:LOG_1000006 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:IAO_0020000
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000050
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:IAO_0020000 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000050
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "organization identifier"@en ;
+ skos:definition "identifier that identifies an organization"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000007
+:LOG_1000007 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0020000 ;
+ obo:IAO_0000412 ;
+ rdfs:label "part number"@en ;
+ skos:definition "identifier that uniquely identifies an artifact (material artifact) and that is created according to some part numbering system"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000008
+:LOG_1000008 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:IAO_0020000
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom obo:BFO_0000029
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:IAO_0020000 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom obo:BFO_0000029
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "physical location identifier"@en ;
+ skos:definition "identifier that identifies a physical location (site)"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000009
+:LOG_1000009 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000008
+ [ rdf:type owl:Class ;
+ owl:unionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000050
+ ]
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:hasValue
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000008 ;
+ obo:IAO_0000412 ;
+ rdfs:label "global location number"@en ;
+ skos:definition "identifer that uniquely identifies a business organization or a geospatial location and complies with GS1 GLN coding scheme"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000010
+:LOG_1000010 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LocationIdentificationScheme" ;
+ rdfs:label "location identification scheme"@en ;
+ skos:definition "identification scheme that prescribes how unique identifiers of physical locations are formulated" .
+
+
+### https://w3id.org/pmd/log/LOG_10000105
+:LOG_10000105 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000058
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000058
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "customer"@en ;
+ skos:definition "person or organization which has a customer role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000011
+:LOG_1000011 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000054
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000054
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/iof/ontology/core/Core/Agent" ;
+ rdfs:label "agent"@en .
+
+
+### https://w3id.org/pmd/log/LOG_1000012
+:LOG_1000012 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000055
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000055
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "buyer"@en ;
+ skos:definition "person or organization which has a buyer role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000013
+:LOG_1000013 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000056
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000056
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "consignee"@en ;
+ skos:definition "person or business organization that receives some shipment"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000014
+:LOG_1000014 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000057
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000057
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "consignor"@en ;
+ skos:altLabel "shipper" ;
+ skos:definition "person or business organization that prepares and sends shipments for transport"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000015
+:LOG_1000015 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000060
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000060
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "distributor"@en ;
+ skos:definition "person or business organization when it purchases products from manufacturers and resells them to wholesalers"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000016
+:LOG_1000016 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000067
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000022 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000067
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "freight forwarder"@en ;
+ skos:definition "person or business organization when it arranges the transportation of shipments on behalf of the shipper (consignor) or consignee"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000017
+:LOG_1000017 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000050
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom obo:OBI_0000571
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ :LOG_1000050 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom obo:OBI_0000571
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "manufacturer"@en ;
+ skos:definition "organization which has a manufacturer role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000018
+:LOG_1000018 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000062
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000062
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "retailer"@en ;
+ skos:definition "person or business organization who buys products from wholesalers and manufacturers and resells them to end users"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000019
+:LOG_1000019 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000057
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000057
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Shipper" ;
+ rdfs:label "shipper"@en ;
+ skos:definition "person or business organization that prepares and sends shipments for transport" .
+
+
+### https://w3id.org/pmd/log/LOG_1000020
+:LOG_1000020 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000063
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000063
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "supplier"@en ;
+ skos:definition "person or organization which has a supplier role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000021
+:LOG_1000021 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000070
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000022 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000070
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "carrier"@en ;
+ skos:definition "person or business organization who provides transportation services"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000022
+:LOG_1000022 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000064
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000020 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000064
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "service provider"@en ;
+ skos:definition "person or organization which has a service provider role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000023
+:LOG_1000023 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000071
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000071
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "supply chain agent"@en ;
+ skos:definition "person or business organization who supplies material products or commercial services to other agents in a supply chain"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000024
+:LOG_1000024 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000011
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000072
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000072
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "wholesaler"@en ;
+ skos:definition "person or business organization that buys products from distributors and resells them to retailers or other business organizations"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000025
+:LOG_1000025 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000073
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000073
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "cargo"@en ;
+ skos:definition "material entity that is transported using a transport equipment by a carrier"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000026
+:LOG_1000026 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000082
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000082
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Load" ;
+ rdfs:label "load"@en ;
+ skos:definition "collection of material entities which share the same transportation and transfer history" .
+
+
+### https://w3id.org/pmd/log/LOG_1000027
+:LOG_1000027 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000104
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000104
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "maintainable material item"@en ;
+ skos:definition "material artifact or engineered system which has the maintainable material item role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000028
+:LOG_1000028 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000105
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000105
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "material component"@en ;
+ skos:definition "material entity which has the material component role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000029
+:LOG_1000029 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000078
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000078
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "material product"@en ;
+ skos:definition "material entity which has the material product role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000030
+:LOG_1000030 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000106
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000106
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "material resource"@en ;
+ skos:definition "material entity which has the material resource role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000031
+:LOG_1000031 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "department"@en ;
+ skos:definition "object aggregate that is part of an organisation and consists of persons that are members of the same organisation"@en ;
+ logistics:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/log/LOG_1000032
+:LOG_1000032 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ obo:IAO_0000412 ;
+ rdfs:label "facility"@en ;
+ skos:definition "engineered system that consists of buildings, structures, roads, machines, and equipment desgined to provide certain capabilities"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000033
+:LOG_1000033 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000032 ;
+ obo:IAO_0000119 "“Laboratory.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/laboratory. Accessed 24 Nov. 2022."@en ;
+ rdfs:label "laboratory"@en ;
+ skos:definition "A place equipped for experimental study in a science or for testing and analysis."@en ;
+ logistics:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/log/LOG_1000034
+:LOG_1000034 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000032 ;
+ obo:IAO_0000412 ;
+ rdfs:label "storage facility"@en ;
+ skos:definition "facility that is designed to store materials or goods"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000035
+:LOG_1000035 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000034 ;
+ obo:IAO_0000412 ;
+ rdfs:label "distribution center"@en ;
+ skos:definition "storage facility designed to store manufactured products that are to be distributed to resellers and wholesalers"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000036
+:LOG_1000036 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000027
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000083
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000235 ;
+ owl:someValuesFrom obo:IAO_0020000
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000027 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000083
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000235 ;
+ owl:someValuesFrom obo:IAO_0020000
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LogisticUnit" ;
+ rdfs:label "logistic unit"@en ;
+ skos:definition "material entities packaged together for transport or storage" .
+
+
+### https://w3id.org/pmd/log/LOG_1000037
+:LOG_1000037 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000027
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000080
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000235 ;
+ owl:someValuesFrom :LOG_1000005
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000027 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000080
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000235 ;
+ owl:someValuesFrom :LOG_1000005
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Lot" ;
+ rdfs:label "lot"@en ;
+ skos:definition "quantity of material entities produced together and sharing the same production history and specifications" .
+
+
+### https://w3id.org/pmd/log/LOG_1000038
+:LOG_1000038 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000027
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000015
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom :LOG_1000097
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000112
+ :LOG_1000123
+ )
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002351 ;
+ owl:someValuesFrom :LOG_1000020
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000027 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000015
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom :LOG_1000097
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000112
+ :LOG_1000123
+ )
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002351 ;
+ owl:someValuesFrom :LOG_1000020
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "supply chain system"@en ;
+ skos:definition "engineered system composed of agents, facilties, machines, and information systems that is designed to deliver products and services to end customers through an engineered flow of information, material, and cash"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000039
+:LOG_1000039 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000038
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_10001247
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002234 ;
+ owl:someValuesFrom :LOG_1000029
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000038 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_10001247
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002234 ;
+ owl:someValuesFrom :LOG_1000029
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "manufacturing supply chain system"@en ;
+ skos:definition "supply chain system that is formed to manufacture one or more products"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000040
+:LOG_1000040 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000038
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000112
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000038 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000112
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "service supply chain system"@en ;
+ skos:definition "supply chain system that is formed to deliver some commercial services"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000041
+:LOG_1000041 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000030
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000003
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000030 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000003
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "piece of transport equipment"@en ;
+ skos:definition "piece of equipment that has the function of holding, protecting, and securing a number of material entites for transportation purposes" .
+
+
+### https://w3id.org/pmd/log/LOG_1000042
+:LOG_1000042 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000041 ;
+ obo:IAO_0000412 ;
+ rdfs:label "container"@en ;
+ skos:definition "piece of transport equipment that is designed to contain some material entities"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000043
+:LOG_1000043 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000041 ;
+ obo:IAO_0000412 ;
+ rdfs:label "trailer"@en ;
+ skos:definition "piece of transport equipment that is unpowered and is pulled by a powered vehicle"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000044
+:LOG_1000044 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000041 ;
+ obo:IAO_0000412 ;
+ rdfs:label "wagon"@en ;
+ skos:definition "piece of transport equipment in a rail transport system used for carrying cargo or passengers"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000046
+:LOG_1000046 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000047
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000052
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000053
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000047 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000052
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000053
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IntegratedCarrierBusinessOrganization" ;
+ rdfs:label "integrated carrier business organization"@en ;
+ skos:definition "business organization that is created for the purpose of providing different types of transportation and freight forwarding services" .
+
+
+### https://w3id.org/pmd/log/LOG_1000047
+:LOG_1000047 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000050
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000091
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000050 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000091
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/core/Core/BusinessOrganization" ;
+ rdfs:label "business organization"@en ;
+ skos:definition "organization engaging in or planning to engage in any activity of buying and selling goods or services for a profit" .
+
+
+### https://w3id.org/pmd/log/LOG_1000050
+:LOG_1000050 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000027
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000235 ;
+ owl:someValuesFrom :LOG_1000006
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002351 ;
+ owl:someValuesFrom
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000027 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000235 ;
+ owl:someValuesFrom :LOG_1000006
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002351 ;
+ owl:someValuesFrom
+ ] ;
+ obo:IAO_0000119 ;
+ rdfs:label "organization"@en ;
+ skos:definition "An organization is an immaterial entity that has the organisation role and there exists some sort of legal framework that recognises the entity and its continued existence."@en ;
+ logistics:PMD_0000060 "true"^^xsd:boolean ;
+ logistics:PMD_0001032 "issue: https://github.com/materialdigital/core-ontology/issues/101" .
+
+
+### https://w3id.org/pmd/log/LOG_1000051
+:LOG_1000051 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000081
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000081
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Shipment" ;
+ rdfs:label "shipment"@en ;
+ skos:definition "collection of material entities delivered to a receiver's location that have undergone the same dispatch and receipt processes" .
+
+
+### https://w3id.org/pmd/log/LOG_1000052
+:LOG_1000052 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000091
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:someValuesFrom :LOG_1000114
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000091 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:someValuesFrom :LOG_1000114
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "freight forwarding business function"@en ;
+ skos:definition "business function that is realized in a freight forwarding service"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000053
+:LOG_1000053 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000091
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:someValuesFrom :LOG_1000117
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000091 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:someValuesFrom :LOG_1000117
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/TransportationBusinessFunction" ;
+ rdfs:label "transportation business function"@en ;
+ skos:definition "business function that is realized in a transportation service" .
+
+
+### https://w3id.org/pmd/log/LOG_1000054
+:LOG_1000054 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Class ;
+ owl:complementOf obo:BFO_0000024
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty :LOG_1900001 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "agent role"@en ;
+ skos:definition "role that someone or something has when they act on behalf of a person, engineered system or a group of agents"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000055
+:LOG_1000055 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000111
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "buyer role"@en ;
+ skos:definition "agent role held by a person or organization when it buys a product or a service"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000056
+:LOG_1000056 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000124
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000021
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "consignee role"@en ;
+ skos:definition "role held by a person or business organization when it receives a shipment from a carrier and owns the shipment after the receipt"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000057
+:LOG_1000057 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000117
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000126
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty :LOG_1900003 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000051
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002353 ;
+ owl:someValuesFrom :LOG_1000126
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "consignor role"@en ;
+ skos:definition "role held by a business organization or person when it prepares, initiates, and consigns a shipment it owns"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000058
+:LOG_1000058 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "customer role"@en ;
+ skos:definition "agent role held by a person or organization when it utilizes the product or receives the service or subscribes to the commercial service agreement"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000059
+:LOG_1000059 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000058 ;
+ obo:IAO_0000412 ;
+ rdfs:label "service consumer role"@en ;
+ skos:definition "customer role held by a person or business organization when it receives and consumes a service"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000060
+:LOG_1000060 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000125
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000078
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "distributor role"@en ;
+ skos:definition "role held by a person or business organization when it buys some material products from a manufacturer and resells them to a wholesaler"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000061
+:LOG_1000061 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000050
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000123
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "manufacturer role"@en ;
+ skos:definition "agent role held by an organization when it produces material products"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000062
+:LOG_1000062 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000055
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000111
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000063
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000017
+ :LOG_1000024
+ )
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000078
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000125
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000078
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000128
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000055
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom :LOG_10000105
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000078
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "retailer role"@en ;
+ skos:definition "role held by a person or business organization when it buys products (material product) from manufacturers or wholesalers and offers them for sale to customers who are the end users of the product"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000063
+:LOG_1000063 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000125
+ :LOG_1000128
+ )
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "supplier role"@en ;
+ skos:definition "agent role held by a person or organization when it offers to sell or provide products or services"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000064
+:LOG_1000064 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000063 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000112
+ [ owl:intersectionOf ( :LOG_1000125
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000001
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ )
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "service provider role"@en ;
+ skos:definition "supplier role held by a person or organization when it offers to sell or provide a commercial service"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000065
+:LOG_1000065 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000064 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000113
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "logistics service provider role"@en ;
+ skos:definition "service provider role that is held by a business organization or person when it provides a logistics service"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000066
+:LOG_1000066 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000064 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000118
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "manufacturing service provider role"@en ;
+ skos:definition "service provider role that is held by a person or business organization when it provides a manufacturing service"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000067
+:LOG_1000067 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000065
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000114
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty :LOG_1900001 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000013
+ :LOG_1000014
+ )
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000065 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000114
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty :LOG_1900001 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000013
+ :LOG_1000014
+ )
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwarderRole" ;
+ rdfs:label "freight forwarder role"@en ;
+ skos:definition "A freight forwarder, or forwarding agent, is a person or company that organizes shipments for individuals or corporations to get goods from the manufacturer or producer to a market, customer or final point of distribution." .
+
+
+### https://w3id.org/pmd/log/LOG_1000068
+:LOG_1000068 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000065
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000115
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000065 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000115
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PackagingServiceProviderRole" ;
+ rdfs:label "packaging service provider role"@en ;
+ skos:definition "logisitics service provider role held by a business organization or person when it provides a packaging service" .
+
+
+### https://w3id.org/pmd/log/LOG_1000069
+:LOG_1000069 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000065
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000116
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000065 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000116
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/StorageServiceProviderRole" ;
+ rdfs:label "storage service provider role"@en ;
+ skos:definition "logisitics service provider role that is held by a person or business organization when it provides a storage service" .
+
+
+### https://w3id.org/pmd/log/LOG_1000070
+:LOG_1000070 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000065
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000117
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000065 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000117
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ rdfs:label "transportation service provider role"@en .
+
+
+### https://w3id.org/pmd/log/LOG_1000071
+:LOG_1000071 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000054
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:someValuesFrom :LOG_10001247
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000011
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000027
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002351 ;
+ owl:allValuesFrom :LOG_1000020
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:someValuesFrom :LOG_10001247
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000011
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000027
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002351 ;
+ owl:allValuesFrom :LOG_1000020
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainAgentRole" ;
+ rdfs:label "supply chain agent role"@en ;
+ skos:definition "role held by an agent that is a part of a supply chain system when it supplies material products or commercial services to other agents in the supply chain system" .
+
+
+### https://w3id.org/pmd/log/LOG_1000072
+:LOG_1000072 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000125
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000078
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000055
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000111
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000063
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom :LOG_1000015
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000078
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000128
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf (
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000125
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000078
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "wholesaler role"@en ;
+ skos:definition "role held by a person or business organization when it buys some product from a distributor and resells them to retailers"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000073
+:LOG_1000073 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000143
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000021
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "cargo role"@en ;
+ skos:definition "role held by a material entity when it is being transported or is planned to be transported by a carrier"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000075
+:LOG_1000075 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000085 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000183 ;
+ owl:someValuesFrom :LOG_1000126
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "ship from location role"@en ;
+ skos:definition "location role held by a geospatial site when it is the location at which some dispatch process occures"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000076
+:LOG_1000076 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000085 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000183 ;
+ owl:someValuesFrom :LOG_1000124
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "ship to location role"@en ;
+ skos:definition "location role held by a geospatial site when it is the location at which some receiving process occures"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000077
+:LOG_1000077 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000085
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000183 ;
+ owl:someValuesFrom :LOG_10001247
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000085 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000183 ;
+ owl:someValuesFrom :LOG_10001247
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainNodeRole" ;
+ rdfs:label "supply chain node role"@en ;
+ skos:definition "location role held by a geospatial site when it is the site some supply chain process" .
+
+
+### https://w3id.org/pmd/log/LOG_1000078
+:LOG_1000078 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000111
+ :LOG_1000125
+ :LOG_1000128
+ )
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "material product role"@en ;
+ skos:definition "role held by a material entity that is intended to be sold, or has been bought, or has been supplied"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000079
+:LOG_1000079 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000111
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000050
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000055
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:allValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000123
+ [ owl:intersectionOf ( :LOG_1000131
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000132 ;
+ owl:someValuesFrom :LOG_1000123
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ )
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "raw material role"@en ;
+ skos:definition "role held by a material entity when it is acquired by an organizational entity with some plan to transform or modify it into intermediate-level components or substances or into a product"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000080
+:LOG_1000080 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000084 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000235 ;
+ owl:someValuesFrom :LOG_1000005
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000131
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "lot role"@en ;
+ skos:definition "traceable resource unit role held by material entities that have a shared production or transformation history"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000081
+:LOG_1000081 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000084 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002353 ;
+ owl:someValuesFrom :LOG_1000126
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:allValuesFrom :LOG_1000143
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "shipment role"@en ;
+ skos:definition "traceable resource unit role held by material entities when they undergo the same dispatch and receipt processes as prescribed by a bill of lading"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000082
+:LOG_1000082 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000084 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom :LOG_1000140
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "load role"@en ;
+ skos:definition "traceable resource unit role held by a number of material entities that have been transferred or transported together"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000083
+:LOG_1000083 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000084 ;
+ obo:IAO_0000412 ;
+ rdfs:label "logistic unit role"@en ;
+ skos:definition "traceable resource unit role held by a number of material entities that are packaged together for transport or storage"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000084
+:LOG_1000084 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ obo:IAO_0000412 ;
+ rdfs:label "traceable resource unit role"@en ;
+ skos:definition "role held by a number of uniquely identified material entities when they participate in some supply chain processes or production processes while some agent observes them and collects information about them for future retrieval"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000085
+:LOG_1000085 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000023
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Class ;
+ owl:unionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000183 ;
+ owl:someValuesFrom obo:BFO_0000015
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0001015 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ )
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000023 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Class ;
+ owl:unionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000183 ;
+ owl:someValuesFrom obo:BFO_0000015
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0001015 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ )
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "location role"@en ;
+ skos:definition "role held by a geospatial site when it is the location of some material entity at some time or the site of some process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000088
+:LOG_1000088 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000075
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000075
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ShipFromLocation" ;
+ rdfs:label "ship from location"@en ;
+ skos:definition "geospatial location at which some dispatch process occurs" .
+
+
+### https://w3id.org/pmd/log/LOG_1000089
+:LOG_1000089 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000076
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000076
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ShipToLocation" ;
+ rdfs:label "ship to location"@en ;
+ skos:definition "geospatial location in which some receiving process occurs" .
+
+
+### https://w3id.org/pmd/log/LOG_1000090
+:LOG_1000090 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000077
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000077
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainNode" ;
+ rdfs:label "supply chain node"@en ;
+ skos:definition "geospatial location that is the site of some supply chain process" .
+
+
+### https://w3id.org/pmd/log/LOG_1000091
+:LOG_1000091 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ obo:IAO_0000412 ;
+ rdfs:label "business function"@en ;
+ skos:definition "function of an organization to partake in for profit activities as prescribed by the objectives specified by that organization"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000093
+:LOG_1000093 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000104 ;
+ obo:IAO_0000412 ;
+ rdfs:label "commercial service specification"@en ;
+ skos:definition "plan specification that prescribes a commercial service"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000095
+:LOG_1000095 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000104 ;
+ obo:IAO_0000412 ;
+ rdfs:label "packaging plan specification"@en ;
+ skos:definition "plan specification that prescribes a packaging process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000096
+:LOG_1000096 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000104 ;
+ obo:IAO_0000412 ;
+ rdfs:label "shipment plan specification"@en ;
+ skos:definition "plan specification that prescribes a shipment preparation process and a transportation process" .
+
+
+### https://w3id.org/pmd/log/LOG_1000097
+:LOG_1000097 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000104 ;
+ obo:IAO_0000412 ;
+ rdfs:label "supply chain plan specification"@en ;
+ skos:definition "plan specification that has one or more supply chain objective specifications as parts and that prescribes a supply chain process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000098
+:LOG_1000098 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000104 ;
+ obo:IAO_0000412 ;
+ rdfs:label "warehousing plan specification"@en ;
+ skos:definition "plan specification that prescribes a warehousing process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000099
+:LOG_1000099 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000028 ;
+ obo:IAO_0000412 ;
+ rdfs:label "airway"@en ;
+ skos:definition "three-dimensional spatial region that connects one specified location (navigation point) to another at a specified altitude, along which an aircraft may be flown"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000100
+:LOG_1000100 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000028 ;
+ obo:IAO_0000412 ;
+ rdfs:label "seaway"@en ;
+ skos:definition "three-dimensional spatial region that connects one specified location to another on a body of water along which a watercraft may travel"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000101
+:LOG_1000101 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000028 ;
+ obo:IAO_0000412 ;
+ rdfs:label "shipping route"@en ;
+ skos:definition "way (three-dimensional spatial region) that connects two or more supply chain nodes along which some shipment travels during a transport process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000102
+:LOG_1000102 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ obo:IAO_0000412 ;
+ rdfs:label "raw material"@en ;
+ skos:definition "material entity which has the raw material role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000103
+:LOG_1000103 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ obo:IAO_0000412 ;
+ rdfs:label "traceable resource unit"@en ;
+ skos:definition "material entity that is uniquely identified and there may be a need to retrieve information about its history, application, or location as it moves through a supply chain"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000104
+:LOG_1000104 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ obo:IAO_0000412 ;
+ rdfs:label "maintainable material item role"@en ;
+ skos:definition "role played by an asset (engineered system or material artifact) when there is a maintenance strategy prescribing its maintenance process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000105
+:LOG_1000105 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "material component role"@en ;
+ skos:definition "role held by a material entity when it is a proper part of another material entity or is planned to be a proper part of another material entity"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000106
+:LOG_1000106 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "material resource role"@en ;
+ skos:definition "role played by a material entity that consists in it being available to a person or group of agents or engineered system"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000111
+:LOG_1000111 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000001
+ :LOG_1000029
+ )
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "buying business process"@en ;
+ skos:definition "business process wherein a financial instrument is used by an agent (buyer) to acquire ownership of a product or commercial service from another agent (seller) for the buyer itself or for another agent (customer)"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000112
+:LOG_1000112 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:someValuesFrom :LOG_1000128
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000022
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom :LOG_1000001
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "commercial service"@en ;
+ skos:definition "business process that consists of a service provisioning process and a consumption process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000113
+:LOG_1000113 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000112 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000118
+ :LOG_1000121
+ :LOG_1000143
+ )
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "logistics service"@en ;
+ skos:definition "commercial service that consists of at least one transport process, packaging process, freight forwarding, or storage process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000114
+:LOG_1000114 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( :LOG_1000113
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:someValuesFrom :LOG_0000003
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwardingService" ;
+ rdfs:label "freight forwarding service"@en ;
+ skos:definition "logistics service that consists of at least one freight forwarding process" .
+
+
+### https://w3id.org/pmd/log/LOG_1000115
+:LOG_1000115 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( :LOG_1000113
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:someValuesFrom :LOG_1000121
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PackagingService" ;
+ rdfs:label "packaging service"@en ;
+ skos:definition "logistics service that consists of at lest one packaging process" .
+
+
+### https://w3id.org/pmd/log/LOG_1000116
+:LOG_1000116 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( :LOG_1000113
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:someValuesFrom :LOG_1000144
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/StorageService" ;
+ rdfs:label "storage service"@en ;
+ skos:definition "logistics service that consists of at least one storage process" .
+
+
+### https://w3id.org/pmd/log/LOG_1000117
+:LOG_1000117 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( :LOG_1000113
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:someValuesFrom :LOG_1000143
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/TransportationService" ;
+ rdfs:label "transportation service"@en ;
+ skos:definition "business process that results in placing a material entity in the possession of some agent without changing the ownership until the material entity is sold"@en-us ,
+ "logistics service that consists of at least one transport process" .
+
+
+### https://w3id.org/pmd/log/LOG_1000118
+:LOG_1000118 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000112
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:someValuesFrom :LOG_1000131
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000112 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:someValuesFrom :LOG_1000131
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ManufacturingService" ;
+ rdfs:label "manufacturing service"@en ;
+ skos:definition "commercial service that consists of at least one manufacturing process" .
+
+
+### https://w3id.org/pmd/log/LOG_1000119
+:LOG_1000119 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ;
+ obo:IAO_0000412 ;
+ rdfs:label "inventory management process"@en ;
+ skos:definition "business process that consists of the activities required for controlling, tracking, recording, and planning inventories"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000120
+:LOG_1000120 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ;
+ obo:IAO_0000412 ;
+ rdfs:label "logistics process"@en ;
+ skos:definition "business process that consists of a combination of one or more transport, shipment preparation, storage or receiving processes"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000121
+:LOG_1000121 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( :LOG_1000130
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom :LOG_1000095
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000029
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PackagingProcess" ;
+ rdfs:label "packaging process" ;
+ skos:definition "business process of putting some products or some portion of material into a package according to a packaging plan specification"@en .
+
+
+### https://w3id.org/pmd/log/LOG_1000122
+:LOG_1000122 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ;
+ obo:IAO_0000412 ;
+ rdfs:label "procuring business process"@en ;
+ skos:definition "business process that consists of buying and ensuring the supply of products or services"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000123
+:LOG_1000123 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ;
+ obo:IAO_0000412 ;
+ rdfs:label "product production process"@en ;
+ skos:definition "business process that consists of at least one manufacturing process through which raw materials and components are transformed or modified to create a material product"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000124
+:LOG_1000124 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ;
+ obo:IAO_0000412 ;
+ rdfs:label "receiving process"@en ;
+ skos:definition "planned process in which an agent receives some material entity from another agent"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_10001247
+:LOG_10001247 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000130
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000023
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000097
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002502 ;
+ owl:someValuesFrom :LOG_1000023
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000130 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000023
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000097
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002502 ;
+ owl:someValuesFrom :LOG_1000023
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "supply chain process"@en ;
+ skos:definition "planned process in which a supply chain plan specification is realized by a number of supply chain agents"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000125
+:LOG_1000125 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000020
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000001
+ :LOG_1000029
+ )
+ ]
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/core/Core/SellingBusinessProcess" ;
+ rdfs:label "selling business process"@en ;
+ skos:definition "business process wherein a product or commercial service is offered by an agent (seller) for another agent (buyer) to acquire ownership via a financial instrument" .
+
+
+### https://w3id.org/pmd/log/LOG_1000126
+:LOG_1000126 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( :LOG_1000130
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000019
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000029
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002234 ;
+ owl:someValuesFrom :LOG_1000051
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ShipmentPreparationProcess" ;
+ rdfs:label "shipment preparation process"@en ;
+ skos:definition "business process in which some material entities are prepared to be transported together to a receiver’s location" .
+
+
+### https://w3id.org/pmd/log/LOG_1000128
+:LOG_1000128 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ,
+ [ rdf:type owl:Class ;
+ owl:unionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000132 ;
+ owl:someValuesFrom :LOG_1000112
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000029
+ ]
+ )
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000020
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "supplying business process"@en ;
+ skos:definition "business process wherein a product or service is supplied"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000129
+:LOG_1000129 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000130
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom :LOG_1000098
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000066 ;
+ owl:someValuesFrom :LOG_1000034
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:someValuesFrom :LOG_1000144
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000130 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom :LOG_1000098
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000066 ;
+ owl:someValuesFrom :LOG_1000034
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:someValuesFrom :LOG_1000144
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/WarehousingProcess" ;
+ rdfs:label "warehousing process"@en ;
+ skos:definition "business process of storing products (material products) in a storage facility for future use" .
+
+
+### https://w3id.org/pmd/log/LOG_1000130
+:LOG_1000130 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom obo:IAO_0000104
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000011
+ [ rdf:type owl:Restriction ;
+ owl:onProperty :LOG_1900001 ;
+ owl:someValuesFrom :LOG_1000047
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "business process"@en ;
+ skos:definition "planned process which is prescribed by a plan specification with one or more objectives specified by a business organization"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000131
+:LOG_1000131 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000011 ,
+ [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom obo:IAO_0000104
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000011
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ,
+ [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002233 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002234 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000028
+ :LOG_1000029
+ :LOG_1000030
+ )
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "manufacturing process"@en ;
+ skos:definition "planned process that consists of a structured set of operations through which input material is transformed or modified"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000132
+:LOG_1000132 rdf:type owl:Class ;
+ rdfs:subClassOf ,
+ :LOG_1000131 ,
+ [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002233 ;
+ owl:someValuesFrom :LOG_1000028
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002234 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000027
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002351 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000028
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002352 ;
+ owl:someValuesFrom :LOG_1000131
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "assembly process"@en ;
+ skos:definition "manufacturing process in which a number of material components are physically connected to each other to form an assembly"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000134
+:LOG_1000134 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000011 ,
+ [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom obo:IAO_0000104
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000011
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "measurement process"@en ;
+ skos:definition "planned process to determine the value of an attribute (specifically dependent continuant or temporal region or process characteristic) of an entity of interest"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000135
+:LOG_1000135 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000134 ;
+ obo:IAO_0000412 ;
+ rdfs:label "appraisal process"@en ;
+ skos:definition "measurement process that involves evaluating, assessing, estimating, or judging the nature, value, importance, condition, or quality of some entity"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000140
+:LOG_1000140 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty [ owl:inverseOf obo:RO_0001015
+ ] ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000108 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000203
+ [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000221 ;
+ owl:someValuesFrom obo:BFO_0000008
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty [ owl:inverseOf obo:BFO_0000199
+ ] ;
+ owl:someValuesFrom obo:BFO_0000015
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0001025 ;
+ owl:someValuesFrom obo:BFO_0000029
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty [ owl:inverseOf obo:RO_0001015
+ ] ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000108 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000203
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000223 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000008
+ [ rdf:type owl:Restriction ;
+ owl:onProperty [ owl:inverseOf obo:BFO_0000199
+ ] ;
+ owl:someValuesFrom obo:BFO_0000015
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0001025 ;
+ owl:someValuesFrom obo:BFO_0000029
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "material location change process"@en ;
+ skos:definition "planned process that results in a material entity moving from one physical location to another"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000141
+:LOG_1000141 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000140 ;
+ obo:IAO_0000412 ;
+ rdfs:label "arrival process"@en ;
+ skos:definition "material location change process that consists of the participating entity reaching its destination such that the travel or transport process which it is a part of is completed"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000142
+:LOG_1000142 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000140 ;
+ obo:IAO_0000412 ;
+ rdfs:label "departure process"@en ;
+ skos:definition "material location change process that consists of the participating entity leaving its starting location such that the travel or transport process it is a part of is initiated"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000143
+:LOG_1000143 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000140 ;
+ obo:IAO_0000412 ;
+ rdfs:label "transport process"@en ;
+ skos:definition "material location change process involving the movement of material entities by some piece of transport equipment"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000144
+:LOG_1000144 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000011 ,
+ [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom obo:IAO_0000104
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000011
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "storage process"@en ;
+ skos:definition "planned process of putting and keeping material entities in a specified location for future use"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000145
+:LOG_1000145 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000140 ;
+ obo:IAO_0000412 ;
+ rdfs:label "travel process"@en ;
+ skos:definition "material location change process wherein one or more persons move between geographical locations"@en-us .
+
+
+#################################################################
+# Individuals
+#################################################################
+
+### https://w3id.org/pmd/co/PMD_0040128
+ rdf:type owl:NamedIndividual .
+
+
+#################################################################
+# General axioms
+#################################################################
+
+[ owl:intersectionOf ( obo:IAO_0000005
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000136 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000017
+
+ [ owl:intersectionOf ( obo:BFO_0000002
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002353 ;
+ owl:someValuesFrom obo:BFO_0000015
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ )
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom :LOG_10001247
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class ;
+ rdfs:subClassOf
+] .
+
+
+[ owl:intersectionOf ( obo:IAO_0000104
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom :LOG_1000112
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000093
+] .
+
+
+[ owl:intersectionOf ( obo:IAO_0000104
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom :LOG_1000121
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000095
+] .
+
+
+[ owl:intersectionOf ( obo:IAO_0000104
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom :LOG_10001247
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000097
+] .
+
+
+[ owl:intersectionOf ( obo:IAO_0000104
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom [ owl:intersectionOf (
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom :LOG_1000129
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000098
+] .
+
+
+[ owl:intersectionOf ( obo:IAO_0020000
+ [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000102
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000028
+ ]
+ )
+ ]
+ ) ;
+ rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000007
+] .
+
+
+[ owl:intersectionOf ( :LOG_1000000
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000136 ;
+ owl:someValuesFrom :LOG_1000111
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom :LOG_1000055
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom :LOG_1000063
+ ]
+ ) ;
+ rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000004
+] .
+
+
+[ owl:intersectionOf ( :LOG_1000000
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000136 ;
+ owl:someValuesFrom :LOG_1000112
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom :LOG_1000058
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom :LOG_1000064
+ ]
+ ) ;
+ rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000001
+] .
+
+
+[ owl:intersectionOf ( :LOG_1000001
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000136 ;
+ owl:someValuesFrom :LOG_0000002
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom :LOG_1000057
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom :LOG_1000070
+ ]
+ ) ;
+ rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000002
+] .
+
+
+[ owl:intersectionOf ( :LOG_1000001
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000136 ;
+ owl:someValuesFrom :LOG_1000117
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom :LOG_1000057
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom :LOG_1000070
+ ]
+ ) ;
+ rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000002
+] .
+
+
+### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi
diff --git a/log-full.owl b/log-full.owl
new file mode 100644
index 0000000..e896491
--- /dev/null
+++ b/log-full.owl
@@ -0,0 +1,19510 @@
+
+
+
+
+ Platform Material Digital Application Ontology for Logistics and Supplychain (log) 1.0.0, https://w3id.org/pmd/log/
+ 2025-11-20
+
+ This is an alignment of the IOF Supply Chain Ontologies Library to the Platform Material Digital Core Ontology. It contains ontologies to be used in the domain of supply chain and logistics.
+ http://opensource.org/licenses/MIT
+ Platform Material Digital Application Ontology for Logistics and supplychain (log)
+ The logistics application ontology for use with PMD Core Ontology (PMDco). The scope of this module is the description of material science and engineering related logistics and general organization. Its is adopted from the IOF SupplyChain Module https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/
+ 1.0.0
+
+
+
+
+
+
+
+
+
+
+
+
+ A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.
+ GROUP:OBI:<http://purl.obolibrary.org/obo/obi>
+ example of usage
+ example of usage
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.
+ 2012-04-05:
+Barry Smith
+
+The official OBI definition, explaining the meaning of a class or property: 'Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions' is terrible.
+
+Can you fix to something like:
+
+A statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.
+
+Alan Ruttenberg
+
+Your proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can't be evaluated by those criteria.
+
+On the specifics of the proposed definition:
+
+We don't have definitions of 'meaning' or 'expression' or 'property'. For 'reference' in the intended sense I think we use the term 'denotation'. For 'expression', I think we you mean symbol, or identifier. For 'meaning' it differs for class and property. For class we want documentation that let's the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let's the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The 'intended reader' part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition.
+
+Personally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable.
+
+We also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with.
+ 2012-04-05:
+Barry Smith
+
+The official OBI definition, explaining the meaning of a class or property: 'Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions' is terrible.
+
+Can you fix to something like:
+
+A statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.
+
+Alan Ruttenberg
+
+Your proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can't be evaluated by those criteria.
+
+On the specifics of the proposed definition:
+
+We don't have definitions of 'meaning' or 'expression' or 'property'. For 'reference' in the intended sense I think we use the term 'denotation'. For 'expression', I think we you mean symbol, or identifier. For 'meaning' it differs for class and property. For class we want documentation that let's the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let's the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The 'intended reader' part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition.
+
+Personally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable.
+
+We also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with.
+ GROUP:OBI:<http://purl.obolibrary.org/obo/obi>
+ definition
+ definition
+
+
+
+
+
+
+
+ An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.
+ GROUP:OBI:<http://purl.obofoundry.org/obo/obi>
+ editor note
+
+
+
+
+
+
+
+ Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007
+ formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007
+ Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w
+ Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w
+ GROUP:OBI:<http://purl.obolibrary.org/obo/obi>
+ definition source
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ dcterms:license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ label
+ label
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Indicates whether the ontology element is part of the minimal profile of the ontology. Useful for modularization, simplified views, or lightweight implementations.
+ isInMinimalProfile
+ https://github.com/materialdigital/core-ontology/issues/121
+
+
+
+
+
+
+
+
+ An editor note referring to a pattern which shows the usage of this class or property.
+ pattern example
+
+
+
+
+
+
+
+
+ A term tracker annotation is an editor note used to track the history of an entity. For each change, it records the related GitHub issue and pull request.
+ hijacked from http://openenergy-platform.org/ontology/oeo/OEO_00020426
+ term tracker annotation
+
+
+
+
+
+
+
+
+ abbreviation
+ A textual annotation used to specify a commonly accepted abbreviation, acronym, or shortened form of a class label. This property is intended to support concise referencing of ontology classes, especially when standard abbreviations are widely used in practice.
+ "DNA" for "Deoxyribonucleic Acid"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ my brain is part of my body (continuant parthood, two material entities)
+ my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)
+ this day is part of this year (occurrent parthood)
+ a core relation that holds between a part and its whole
+ Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.
+ Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/
+ Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)
+
+A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'.
+ part of
+
+
+
+
+
+
+
+
+ my body has part my brain (continuant parthood, two material entities)
+ my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)
+ this year has part this day (occurrent parthood)
+ a core relation that holds between a whole and its part
+ Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.
+ Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/
+ Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)
+
+A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'.
+ has part
+
+
+
+
+
+
+
+
+
+
+ has realization
+ b has realization c =Def c realizes b
+ As for realizes
+
+
+
+
+
+
+
+
+
+ realizes
+ (Elucidation) realizes is a relation between a process b and realizable entity c such that c inheres in some d & for all t, if b has participant d then c exists & the type instantiated by b is correlated with the type instantiated by c
+ A balding process realizes a disposition to go bald; a studying process realizes a student role; a process of pumping blood realizes the pumping function of a heart
+
+
+
+
+
+
+
+
+
+
+
+ preceded by
+ b preceded by c =Def b precedes c
+ The temporal region occupied by the second half of the match is preceded by the temporal region occupied by the first half of the match
+
+
+
+
+
+
+
+
+
+
+ precedes
+ (Elucidation) precedes is a relation between occurrents o, o' such that if t is the temporal extent of o & t' is the temporal extent of o' then either the last instant of o is before the first instant of o' or the last instant of o is the first instant of o' & neither o nor o' are temporal instants
+ The temporal region occupied by Mary's birth precedes the temporal region occupied by Mary's death.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ occurs in
+ b occurs in c =Def b is a process or a process boundary & c is a material entity or site & there exists a spatiotemporal region r & b occupies spatiotemporal region r & for all time t, if b exists at t then c exists at t & there exist spatial regions s and s' where b spatially projects onto s at t & c occupies spatial region s' at t & s is a continuant part of s' at t
+ A process of digestion occurs in the interior of an organism; a process of loading artillery rounds into a tank cannon occurs in the interior of the tank
+
+
+
+
+
+
+
+
+
+ exists at
+ (Elucidation) exists at is a relation between a particular and some temporal region at which the particular exists
+ First World War exists at 1914-1916; Mexico exists at January 1, 2000
+
+
+
+
+
+
+
+
+
+
+
+
+ has occurrent part
+ b has occurrent part c =Def c occurrent part of b
+ Mary's life has occurrent part Mary's 5th birthday
+
+
+
+
+
+
+
+
+
+
+
+
+ has proper occurrent part
+ b has proper occurrent part c =Def b has occurrent part c & b and c are not identical
+ As for has occurrent part.
+
+
+
+
+
+
+
+
+
+
+
+
+ has temporal part
+ b has temporal part c =Def c temporal part of b
+ Your life has temporal part the first year of your life
+
+
+
+
+
+
+
+
+
+
+
+ occurrent part of
+ (Elucidation) occurrent part of is a relation between occurrents b and c when b is part of c
+ Mary's 5th birthday is an occurrent part of Mary's life; the first set of the tennis match is an occurrent part of the tennis match
+
+
+
+
+
+ "occurrent part of" is not a BFO2020 temporalized relation. It just restricts the domain and range to "occurrent". That's why is should be OK to make it sub property of RO "part of"
+
+
+
+
+
+
+
+
+
+
+
+ proper temporal part of
+ b proper temporal part of c =Def b temporal part of c & not (b = c)
+ As for temporal part of.
+
+
+
+
+
+
+
+
+
+
+
+ proper occurrent part of
+ b proper occurrent part of c =Def b occurrent part of c & b and c are not identical
+ As for occurrent part of.
+
+
+
+
+
+
+
+
+
+
+
+ temporal part of
+ b temporal part of c =Def b occurrent part of c & (b and c are temporal regions) or (b and c are spatiotemporal regions & b temporally projects onto an occurrent part of the temporal region that c temporally projects onto) or (b and c are processes or process boundaries & b occupies a temporal region that is an occurrent part of the temporal region that c occupies)
+ Your heart beating from 4pm to 5pm today is a temporal part of the process of your heart beating; the 4th year of your life is a temporal part of your life, as is the process boundary which separates the 3rd and 4th years of your life; the first quarter of a game of football is a temporal part of the whole game
+
+
+
+
+
+
+
+
+
+
+ temporally projects onto
+ (Elucidation) temporally projects onto is a relation between a spatiotemporal region s and some temporal region which is the temporal extent of s
+ The world line of a particle temporally projects onto the temporal region extending from the beginning to the end of the existence of the particle
+
+
+
+
+
+
+
+
+
+
+ has proper temporal part
+ b has proper temporal part c =Def c proper temporal part of b
+ As for has temporal part.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ environs
+ b environs c =Def c occurs in b
+ Mouth environs process of mastication; city environs traffic
+
+
+
+
+
+
+
+
+
+
+
+
+ history of
+ (Elucidation) history of is a relation between history b and material entity c such that b is the unique history of c
+ This life is the history of this organism
+
+
+
+
+
+
+
+
+
+ has history
+ b has history c =Def c history of b
+ This organism has history this life
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ specifically depended on by
+ b specifically depended on by c =Def c specifically depends on b
+ Coloured object specifically depended on by colour
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ specifically depends on
+ (Elucidation) specifically depends on is a relation between a specifically dependent continuant b and specifically dependent continuant or independent continuant that is not a spatial region c such that b and c share no parts in common & b is of a nature such that at all times t it cannot exist unless c exists & b is not a boundary of c
+ A shape specifically depends on the shaped object; hue, saturation and brightness of a colour sample specifically depends on each other
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bearer of
+ b bearer of c =Def c inheres in b
+ A patch of ink is the bearer of a colour quality; an organism is the bearer of a temperature quality
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ inheres in
+ b inheres in c =Def b is a specifically dependent continuant & c is an independent continuant that is not a spatial region & b specifically depends on c
+ A shape inheres in a shaped object; a mass inheres in a material entity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ occupies temporal region
+ p occupies temporal region t =Def p is a process or process boundary & the spatiotemporal region occupied by p temporally projects onto t
+ The Second World War occupies the temporal region September 1, 1939 - September 2, 1945
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ occupies spatiotemporal region
+ (Elucidation) occupies spatiotemporal region is a relation between a process or process boundary p and the spatiotemporal region s which is its spatiotemporal extent
+ A particle emitted by a nuclear reactor occupies the spatiotemporal region which is its trajectory
+
+
+
+
+
+
+
+
+
+
+ first instant of
+ t first instant of t' =Def t is a temporal instant & t' is a temporal region t' & t precedes all temporal parts of t' other than t
+ An hour starting at midnight yesterday has first instant midnight yesterday
+
+
+
+
+
+
+
+
+
+
+ has first instant
+ t has first instant t' =Def t' first instant of t
+ The first hour of a year has first instant midnight on December 31
+
+
+
+
+
+
+
+
+
+
+ last instant of
+ t last instant of t' =Def t is a temporal instant & t' is a temporal region & all temporal parts of t' other than t precede t
+ Last midnight is the last instant of yesterday
+
+
+
+
+
+
+
+
+
+
+ has last instant
+ t has last instant t' =Def t' last instant of t
+ The last hour of a year has last instant midnight December 31
+
+
+
+
+
+
+
+
+
+
+ has measurement unit label
+
+
+
+
+
+
+
+
+
+ This document is about information artifacts and their representations
+ A (currently) primitive relation that relates an information artifact to an entity.
+ 7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of "mentions" relation. Weaken the is_about relationship to be primitive.
+
+We will try to build it back up by elaborating the various subproperties that are more precisely defined.
+
+Some currently missing phenomena that should be considered "about" are predications - "The only person who knows the answer is sitting beside me" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.
+ Smith, Ceusters, Ruttenberg, 2000 years of philosophy
+ is about
+
+
+
+
+
+
+
+
+
+
+
+ A person's name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance "Alan" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between "Alan" and the person that is being named.
+ A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to 'pick out' the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically
+ 2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have 'specifically denotes', which would have been primitive, so make this relation primitive.
+g denotes r =def
+r is a portion of reality
+there is some c that is a concretization of g
+every c that is a concretization of g specifically denotes r
+ Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan
+ denotes
+
+
+
+
+
+
+
+
+
+
+
+ m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q
+ 8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later
+ From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]
+
+This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it "measuring" the bearer = referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.
+
+Werner suggests a solution based on "Magnitudes" a proposal for which we are awaiting details.
+--
+From the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]
+
+unit of measure is a quality, e.g. the length of a ruler.
+
+[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]
+
+[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]
+
+a represents b means either a denotes b or a describes
+
+describe:
+a describes b means a is about b and a allows an inference of at least one quality of b
+
+We have had a long discussion about denotes versus describes.
+ From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.
+
+a is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality.
+ From the second meeting on IAO:
+
+An attempt at defining assay using Barry's "reliability" wording
+
+assay:
+process and has_input some material entity
+and has_output some information content entity
+and which is such that instances of this process type reliably generate
+outputs that describes the input.
+ This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it "measuring" the bearer = referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.
+
+Werner suggests a solution based on "Magnitudes" a proposal for which we are awaiting details.
+ is quality measurement of
+
+
+
+
+
+
+
+
+
+ inverse of the relation 'denotes'
+ denoted by
+
+
+
+
+
+
+
+
+
+
+ relates a process to a time-measurement-datum that represents the duration of the process
+ is duration of
+
+
+
+
+
+
+
+ inverse of the relation of is quality measurement of
+ 2009/10/19 Alan Ruttenberg. Named 'junk' relation useful in restrictions, but not a real instance relationship
+ is quality measured as
+
+
+
+
+
+
+
+
+
+ A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.
+ is quality specification of
+
+
+
+
+
+
+
+ inverse of the relation of is quality specification of
+ 2009/10/19 Alan Ruttenberg. Named 'junk' relation useful in restrictions, but not a real instance relationship
+ quality is specified as
+
+
+
+
+
+
+
+
+
+
+ see is_input_of example_of_usage
+ The inverse property of is specified input of
+ 8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how 'has participant' works.
+ has specified input
+
+
+
+
+
+
+
+
+
+ some Autologous EBV(Epstein-Barr virus)-transformed B-LCL (B lymphocyte cell line) is_input_for instance of Chromum Release Assay described at https://wiki.cbil.upenn.edu/obiwiki/index.php/Chromium_Release_assay
+ A relation between a planned process and a continuant participating in that process that is not created during the process. The presence of the continuant during the process is explicitly specified in the plan specification which the process realizes the concretization of.
+ is specified input of
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The inverse property of is specified output of
+ The inverse property of is_specified_output_of
+ has specified output
+ has_specified_output
+
+
+
+
+
+
+
+
+
+ A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.
+ is specified output of
+ is_specified_output_of
+
+
+
+
+
+
+
+
+
+ A cell sorting process achieves the objective specification 'material separation objective'
+ This relation obtains between a planned process and a objective specification when the criteria specified in the objective specification are met at the end of the planned process.
+ PPPB branch derived
+ achieves_planned_objective
+ https://github.com/search?q=repo%3Amaterialdigital%2Fcore-ontology+path%3A%2F%5Epatterns%5C%2F%2F+OBI_0000417&type=code
+
+
+
+
+
+
+
+
+
+ A relation between a value specification and an entity which the specification is about.
+ specifies value of
+
+
+
+
+
+
+
+
+
+
+ A relation between an information content entity and a value specification that specifies its value.
+ OBI
+ has value specification
+
+
+
+
+
+
+
+
+
+ this fragility is a characteristic of this vase
+ this red color is a characteristic of this apple
+ a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.
+ characteristic of
+
+
+
+
+
+
+
+
+
+ this apple is bearer of this red color
+ this vase is bearer of this fragility
+ Inverse of characteristic_of
+ A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.
+ has characteristic
+
+
+
+
+
+
+
+
+
+
+ this blood clot participates in this blood coagulation
+ this input material (or this output material) participates in this process
+ this investigator participates in this investigation
+ a relation between a continuant and a process, in which the continuant is somehow involved in the process
+ participates in
+
+
+
+
+
+
+
+
+
+
+
+
+
+ this blood coagulation has participant this blood clot
+ this investigation has participant this investigator
+ this process has participant this input material (or this output material)
+ a relation between a process and a continuant, in which the continuant is somehow involved in the process
+ Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.
+ has participant
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).
+ An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).
+ A relationship between a generically dependent continuant and a specifically dependent continuant or process, in which the generically dependent continuant depends on some independent continuant or process in virtue of the fact that the specifically dependent continuant or process also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants or processes.
+ is concretized as
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).
+ An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).
+ A relationship between a specifically dependent continuant or process and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant or process also depends on that same independent continuant. Multiple specifically dependent continuants or processes can concretize the same generically dependent continuant.
+ concretizes
+
+
+
+
+
+
+
+
+
+
+ this catalysis function is a function of this enzyme
+ a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence
+ A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.
+ function of
+
+
+
+
+
+
+
+
+
+ this red color is a quality of this apple
+ a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence
+ A quality inheres in its bearer at all times for which the quality exists.
+ quality of
+
+
+
+
+
+
+
+
+
+ this investigator role is a role of this person
+ a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence
+ A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.
+ role of
+
+
+
+
+
+
+
+
+
+
+ this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)
+ a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence
+ A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.
+ has function
+
+
+
+
+
+
+
+
+
+ this apple has quality this red color
+ a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence
+ A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.
+ has quality
+
+
+
+
+
+
+
+
+
+
+ this person has role this investigator role (more colloquially: this person has this role of investigator)
+ a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence
+ A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.
+ has role
+
+
+
+
+
+
+
+
+
+
+
+ a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence
+ has disposition
+
+
+
+
+
+
+
+
+ inverse of has disposition
+ disposition of
+
+
+
+
+
+
+
+
+ this cell derives from this parent cell (cell division)
+ this nucleus derives from this parent nucleus (nuclear division)
+ a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity
+ This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops from'.
+ derives from
+
+
+
+
+
+
+
+ this parent cell derives into this cell (cell division)
+ this parent nucleus derives into this nucleus (nuclear division)
+ a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity
+ This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops into'. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking 'derives from' rather than the forward-looking 'derives into'.
+ derives into
+
+
+
+
+
+
+
+
+
+ my head is the location of my brain
+ this cage is the location of this rat
+ a relation between two independent continuants, the location and the target, in which the target is entirely within the location
+ Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/
+ location of
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ my brain is located in my head
+ this rat is located in this cage
+ a relation between two independent continuants, the target and the location, in which the target is entirely within the location
+ Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus
+ Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/
+ located in
+
+
+
+
+
+
+
+
+
+ x simultaneous with y iff ω(x) = ω(y) and ω(α ) = ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and '=' indicates the same instance in time.
+ simultaneous with
+
+
+
+
+
+
+
+
+
+ inverse of starts with
+ Allen
+ starts
+
+
+
+
+
+
+
+
+
+ Every insulin receptor signaling pathway starts with the binding of a ligand to the insulin receptor
+ x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) = α(x) ∧ ω(y) < ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.
+ starts with
+
+
+
+
+
+
+
+
+
+ inverse of ends with
+ ends
+
+
+
+
+
+
+
+
+
+ x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) > α(x) ∧ ω(y) = ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.
+ ends with
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.
+ has input
+
+
+
+
+
+
+
+
+
+
+
+
+
+ p has output c iff c is a participant in p, c is present at the end of p, and c is not present in the same state at the beginning of p.
+ has output
+
+
+
+
+
+
+
+
+
+ has member is a mereological relation between a collection and an item.
+ SIO
+ has member
+
+
+
+
+
+
+
+
+ inverse of has input
+ input of
+
+
+
+
+
+
+
+
+ inverse of has output
+ is output of
+ output of
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A mass measurement assay measures an material's mass characteristic. A radioactivity detection assay measures the amount of radiation (alpha, beta or gamma ray emmissions) coming from a material.
+ A relation between an assay and a characteristic, in which the assay generates a data item which is a measure of a characteristic.
+ assay measures characteristic
+
+
+
+
+
+
+
+
+ Inverse of 'assay measures characteristic'
+ characteristic measured by assay
+
+
+
+
+
+
+
+
+
+
+
+ relationship between a planned process and the plan specification that it carries out; it is defined as equivalent to the composed relationship (realizes o concretizes)
+ AGB
+ executes
+
+
+
+
+
+
+
+ is subject of
+ Inverse of 'is about'.
+
+
+
+
+
+
+
+
+
+ has process attribute
+ has process attribute from OEO https://openenergyplatform.org/ontology/oeo/OEO_00000500
+ A relation between a process and a process attribute that depends on it.
+ Tensile testing process has process attribute tensile rate
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ has state
+ relates a temporally qualified continuant to the unique anchor continuant that it is a temporal phase of
+ https://github.com/materialdigital/core-ontology/issues/185
+
+
+
+
+
+
+
+
+ is state of
+ relates a temporally qualified continuant to the unique anchor continuant that it is a temporal phase of
+
+
+
+
+
+
+
+
+
+
+ complies with
+ entspricht
+ complies with is a relation between an independent continuant and an information content entity (e.g., specification or objective) that it conforms to.
+
+
+
+
+
+
+
+
+ in response to
+ inverse of responds with
+
+
+
+
+
+
+
+
+
+
+ responds with
+ The realizable entity must be "stimulated" by some Stimulus in order to respond with the Response. The bearer of the realizable entity must participate in Stimulation as well as in Response.
+
+
+
+
+
+
+
+
+
+ stimulated by
+ inverse of stimulates
+
+
+
+
+
+
+
+
+
+
+ stimulates
+ A relation between a stimulating process and material property, where there is some material entity that is bearer of the material property and participates in the stimulating process, and the material property comes to be realized in the course of the stimulating process.
+
+
+
+
+
+
+
+
+ consists of
+ A continuant part property that relates Material Entity Aggregates in the direction of smaller length-scale.
+ A portion of steel consists of a portion of carbon and a portion of iron.
+
+
+
+
+
+
+
+
+
+
+
+ interacts with
+ A relation between participants of a process indicating that some of the participants SDCs are affected during the process due to the interaction of the participants.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ causally influences
+ An entity (that is bearer of some stimulation role) causally influences another entity (that is bearer of the stimulation target role) in a process iff the target objects qualites (and/or realizable entities?) are altered in a manner that is significant in the given context/domain of discourse..
+
+
+
+
+
+
+
+
+
+
+
+
+ TODO: check if we should force the 'o' to be a portion of matter' through:
+http://ontologydesignpatterns.org/wiki/Submissions:N-Ary_Relation_Pattern_%28OWL_2%29
+or
+https://www.w3.org/TR/swbp-n-aryRelations/
+ intensive bearer of
+ Intensive bearer of is a chain that allows to connect objects to intensive properties through "the matter they consist of".
+ This piece of metal intensive bearer of some temperature.
+
+
+
+
+
+
+
+
+
+ Despite has characteristic from RO does not have any domain constraints, it is still not possible to directly connect an instance of a process with an instance of a SDC.
+
+First, SDC is dependent on a IC. As RO does not have "bearer of" object property, the "has characteristic" implies that the domain should be an IC.
+
+Second, characteristic of is a functional property. Thus, two triples SDC_1 characteristc of IC_1 and SDC_2 characteristc of Process_1 (where IC_1 participates in Process_1), cannot exist simultaneously.
+An example of such case can be "Temperature of during the annealing process was 1000°C". Temperature is an SDC of some participant of the annealing, however it is not clear whether it is an SDC of an oven or of a sample in the oven. If we assert triple Annealing--> has characteristic --> Temperature 1000°C, then the correct triple connecting temperature SDC with either oven or specimen cannot exist.
+ refers to
+ a relation between a process attribute and an SDC of some participant in a process
+ a relation to between a process attribute an a SDC of some participant in a process.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ integral bearer of
+ Integral bearer of is a property chain linking an object or object aggregate O that consits of a portion of matter PM to a SDC Q that inheres in 'portions of matter' only:
+O -consists of-> PM -bearer of-> Q
+ Talking colloquially about Intensive thermodynamic properties of an object requires this property.
+
+
+
+
+
+
+
+
+
+
+
+ specifies role
+
+
+
+
+
+
+
+
+
+
+ role specified by
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ActsOnBehalfOfAtSomeTime
+ acts on behalf of
+ relation from a material entity to a person or a group of agents or engineered system that holds when the material entity participates in some planned process in order to fulfill an objective for the person or group of agents or engineered system
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/OwnedBy
+ owned by
+ relationship from a material entity to a person or business organization when the material entity is held by the person or business organization as legal property
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/owns
+ owns
+ relationship from a person or business organization to an independent continuant when the agent holds the independent continuant as legal property
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ has measurement value
+
+
+
+
+
+
+
+
+
+ A relation between a value specification and a number that quantifies it.
+ A range of 'real' might be better than 'float'. For now we follow 'has measurement value' until we can consider technical issues with SPARQL queries and reasoning.
+ OBI
+ has specified numeric value
+
+
+
+
+
+
+
+
+ A relation between a value specification and a literal.
+ This is not an RDF/OWL object property. It is intended to link a value found in e.g. a database column of 'M' (the literal) to an instance of a value specification class, which can then be linked to indicate that this is about the biological gender of a human subject.
+ OBI
+ has specified value
+
+
+
+
+
+
+
+
+ has value
+ data property that relates an information content entity to a literal
+
+
+
+
+
+
+
+
+
+
+
+
+ Julius Caesar
+ Verdi’s Requiem
+ the Second World War
+ your body mass index
+ BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81
+ entity
+ (Elucidation) An entity is anything that exists or has existed or will exist
+ Julius Caesar; the Second World War; your body mass index; Verdi's Requiem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.
+ BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240
+ continuant
+ (Elucidation) A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity
+ A human being; a tennis ball; a cave; a region of space; someone's temperature
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An entity that has temporal parts and that happens, unfolds or develops through time.
+ BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region
+ BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.
+
+ occurrent
+ (Elucidation) An occurrent is an entity that unfolds itself in time or it is the start or end of such an entity or it is a temporal or spatiotemporal region
+ As for process, history, process boundary, spatiotemporal region, zero-dimensional temporal region, one-dimensional temporal region, temporal interval, temporal instant.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ a chair
+ a heart
+ a leg
+ a molecule
+ a spatial region
+ an atom
+ an orchestra.
+ an organism
+ the bottom right portion of a human torso
+ the interior of your mouth
+ b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])
+ independent continuant
+ b is an independent continuant =Def b is a continuant & there is no c such that b specifically depends on c or b generically depends on c
+ An atom; a molecule; an organism; a heart; a chair; the bottom right portion of a human torso; a leg; the interior of your mouth; a spatial region; an orchestra
+
+
+
+
+
+
+
+
+ spatial region
+ (Elucidation) A spatial region is a continuant entity that is a continuant part of the spatial projection of a portion of spacetime at a given time
+ As for zero-dimensional spatial region, one-dimensional spatial region, two-dimensional spatial region, three-dimensional spatial region
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ temporal region
+ (Elucidation) A temporal region is an occurrent over which processes can unfold
+ As for zero-dimensional temporal region and one-dimensional temporal region
+
+
+
+
+
+
+
+
+ two-dimensional spatial region
+ (Elucidation) A two-dimensional spatial region is a spatial region that is a whole consisting of a surface together with zero or more surfaces which may have spatial regions of lower dimension as parts
+ The surface of a sphere-shaped part of space; an infinitely thin plane in space
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ spatiotemporal region
+ (Elucidation) A spatiotemporal region is an occurrent that is an occurrent part of spacetime
+ The spatiotemporal region occupied by the development of a cancer tumour; the spatiotemporal region occupied by an orbiting satellite
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ a process of cell-division, \ a beating of the heart
+ a process of meiosis
+ a process of sleeping
+ the course of a disease
+ the flight of a bird
+ the life of an organism
+ your process of aging.
+ p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])
+ BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)
+
+ process
+ (Elucidation) p is a process means p is an occurrent that has some temporal proper part and for some time t, p has some material entity as participant
+ An act of selling; the life of an organism; a process of sleeping; a process of cell-division; a beating of the heart; a process of meiosis; the taxiing of an aircraft; the programming of a computer
+
+
+
+
+
+
+
+
+
+ an atom of element X has the disposition to decay to an atom of element Y
+ certain people have a predisposition to colon cancer
+ children are innately disposed to categorize objects in certain ways.
+ the cell wall is disposed to filter chemicals in endocytosis and exocytosis
+ BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.
+ disposition
+ (Elucidation) A disposition b is a realizable entity such that if b ceases to exist then its bearer is physically changed & b's realization occurs when and because this bearer is in some special physical circumstances & this realization occurs in virtue of the bearer's physical make-up
+ An atom of element X has the disposition to decay to an atom of element Y; the cell wall is disposed to transport cellular material through endocytosis and exocytosis; certain people have a predisposition to colon cancer; children are innately disposed to categorize objects in certain ways
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ the disposition of this piece of metal to conduct electricity.
+ the disposition of your blood to coagulate
+ the function of your reproductive organs
+ the role of being a doctor
+ the role of this boundary to delineate where Utah and Colorado meet
+ A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.
+ realizable entity
+ (Elucidation) A realizable entity is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region & which is of a type some instances of which are realized in processes of a correlated type
+ The role of being a doctor; the role of this boundary to delineate where Utah and Colorado meet; the function of your reproductive organs; the disposition of your blood to coagulate; the disposition of this piece of metal to conduct electricity
+
+
+
+
+
+
+
+
+ zero-dimensional spatial region
+ (Elucidation) A zero-dimensional spatial region is one or a collection of more than one spatially disjoint points in space
+ The spatial region occupied at some time instant by the North Pole
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ the ambient temperature of this portion of air
+ the color of a tomato
+ the length of the circumference of your waist
+ the mass of this piece of gold.
+ the shape of your nose
+ the shape of your nostril
+ quality
+ (Elucidation) A quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized
+ The colour of a tomato; the ambient temperature of this portion of air; the length of the circumference of your waist; the shape of your nose; the shape of your nostril; the mass of this piece of gold
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key
+ of one-sided specifically dependent continuants: the mass of this tomato
+ of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.
+ the disposition of this fish to decay
+ the function of this heart: to pump blood
+ the mutual dependence of proton donors and acceptors in chemical reactions [79
+ the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction
+ the pink color of a medium rare piece of grilled filet mignon at its center
+ the role of being a doctor
+ the shape of this hole.
+ the smell of this portion of mozzarella
+ b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])
+ specifically dependent continuant
+ b is a specifically dependent continuant =Def b is a continuant & there is some independent continuant c which is not a spatial region & which is such that b specifically depends on c
+ (with multiple bearers) John's love for Mary; the ownership relation between John and this statue; the relation of authority between John and his subordinates
+ (with one bearer) The mass of this tomato; the pink colour of a medium rare piece of grilled filet mignon at its centre; the smell of this portion of mozzarella; the disposition of this fish to decay; the role of being a doctor; the function of this heart to pump blood; the shape of this hole
+
+
+
+
+
+
+
+
+ John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.
+ the priest role
+ the role of a boundary to demarcate two neighboring administrative territories
+ the role of a building in serving as a military target
+ the role of a stone in marking a property boundary
+ the role of subject in a clinical trial
+ the student role
+ A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.
+ BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.
+
+ role
+ (Elucidation) A role b is a realizable entity such that b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be & b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed
+ The priest role; the student role; the role of subject in a clinical trial; the role of a stone in marking a property boundary; the role of a boundary to demarcate two neighbouring administrative territories; the role of a building in serving as a military target
+
+
+
+
+
+
+
+
+ fiat object part
+ (Elucidation) A fiat object part b is a material entity & such that if b exists then it is continuant part of some object c & demarcated from the remainder of c by one or more fiat surfaces
+ The upper and lower lobes of the left lung; the dorsal and ventral surfaces of the body; the Western hemisphere of the Earth; the FMA:regional parts of an intact human body
+
+
+
+
+
+
+
+
+ one-dimensional spatial region
+ (Elucidation) A one-dimensional spatial region is a whole consisting of a line together with zero or more lines which may have points as parts
+ An edge of a cube-shaped portion of space; a line connecting two points; two parallel lines extended in space
+
+
+
+
+
+
+
+
+
+ object aggregate
+ (Elucidation) An object aggregate is a material entity consisting exactly of a plurality (≥1) of objects as member parts which together form a unit
+ The aggregate of the musicians in a symphony orchestra and their instruments; the aggregate of bearings in a constant velocity axle joint; the nitrogen atoms in the atmosphere; a collection of cells in a blood biobank
+
+
+
+
+
+
+
+
+
+ three-dimensional spatial region
+ (Elucidation) A three-dimensional spatial region is a whole consisting of a spatial volume together with zero or more spatial volumes which may have spatial regions of lower dimension as parts
+ A cube-shaped region of space; a sphere-shaped region of space; the region of space occupied by all and only the planets in the solar system at some point in time
+
+
+
+
+
+
+
+
+
+ site
+ (Elucidation) A site is a three-dimensional immaterial entity whose boundaries either (partially or wholly) coincide with the boundaries of one or more material entities or have locations determined in relation to some material entity
+ A hole in a portion of cheese; a rabbit hole; the Grand Canyon; the Piazza San Marco; the kangaroo-joey-containing hole of a kangaroo pouch; your left nostril (a fiat part - the opening - of your left nasal cavity); the lumen of your gut; the hold of a ship; the interior of the trunk of your car; hole in an engineered floor joist
+
+
+
+
+
+
+
+
+ object
+ (Elucidation) An object is a material entity which manifests causal unity & is of a type instances of which are maximal relative to the sort of causal unity manifested
+ An organism; a fish tank; a planet; a laptop; a valve; a block of marble; an ice cube
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.
+ the pdf file on your laptop, the pdf file that is a copy thereof on my laptop
+ the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule.
+ b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])
+ generically dependent continuant
+ (Elucidation) A generically dependent continuant is an entity that exists in virtue of the fact that there is at least one of what may be multiple copies which is the content or the pattern that multiple copies would share
+ The pdf file on your laptop; the pdf file that is a copy thereof on my laptop; the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule; the content that is shared by a string of dots and dashes written on a page and the transmitted Morse code signal; the content of a sentence; an engineering blueprint
+
+
+
+
+
+
+
+
+ the function of a hammer to drive in nails
+ the function of a heart pacemaker to regulate the beating of a heart through electricity
+ the function of amylase in saliva to break down starch into sugar
+ BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.
+
+ function
+ (Elucidation) A function is a disposition that exists in virtue of its bearer's physical make-up & this physical make-up is something the bearer possesses because it came into being either through evolution (in the case of natural biological entities) or through intentional design (in the case of artefacts) in order to realize processes of a certain sort
+ The function of a hammer to drive in nails; the function of a heart pacemaker to regulate the beating of a heart through electricity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ process boundary
+ p is a process boundary =Def p is a temporal part of a process & p has no proper temporal parts
+ The boundary between the 2nd and 3rd year of your life
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ one-dimensional temporal region
+ (Elucidation) A one-dimensional temporal region is a temporal region that is a whole that has a temporal interval and zero or more temporal intervals and temporal instants as parts
+ The temporal region during which a process occurs
+
+
+
+
+
+
+
+
+
+ An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.
+ Elucidation: An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.
+
+ material entity
+ (Elucidation) A material entity is an independent continuant has some portion of matter as continuant part
+ A human being; the undetached arm of a human being; an aggregate of human beings
+
+
+
+
+
+
+
+
+ continuant fiat boundary
+ (Elucidation) A continuant fiat boundary b is an immaterial entity that is of zero, one or two dimensions & such that there is no time t when b has a spatial region as continuant part & whose location is determined in relation to some material entity
+ As for fiat point, fiat line, fiat surface
+
+
+
+
+
+
+
+
+ immaterial entity
+ b is an immaterial entity =Def b is an independent continuant which is such that there is no time t when it has a material entity as continuant part
+ As for fiat point, fiat line, fiat surface, site
+
+
+
+
+
+
+
+
+ fiat line
+ (Elucidation) A fiat line is a one-dimensional continuant fiat boundary that is continuous
+ The Equator; all geopolitical boundaries; all lines of latitude and longitude; the median sulcus of your tongue; the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin
+
+
+
+
+
+
+
+
+ relational quality
+ b is a relational quality =Def b is a quality & there exists c and d such that c and d are not identical & b specifically depends on c & b specifically depends on d
+ A marriage bond; an instance of love; an obligation between one person and another
+
+
+
+
+
+
+
+
+ fiat surface
+ (Elucidation) A fiat surface is a two-dimensional continuant fiat boundary that is self-connected
+ The surface of the Earth; the plane separating the smoking from the non-smoking zone in a restaurant
+
+
+
+
+
+
+
+
+ fiat point
+ (Elucidation) A fiat point is a zero-dimensional continuant fiat boundary that consists of a single point
+ The geographic North Pole; the quadripoint where the boundaries of Colorado, Utah, New Mexico and Arizona meet; the point of origin of some spatial coordinate system
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ zero-dimensional temporal region
+ (Elucidation) A zero-dimensional temporal region is a temporal region that is a whole consisting of one or more separated temporal instants as parts
+ A temporal region that is occupied by a process boundary; the moment at which a finger is detached in an industrial accident
+
+
+
+
+
+
+
+
+ history
+ (Elucidation) A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by the material part of a material entity
+ The life of an organism from the beginning to the end of its existence
+
+
+
+
+
+
+
+
+ temporal interval
+ (Elucidation) A temporal interval is a one-dimensional temporal region that is continuous, thus without gaps or breaks
+ The year 2018.
+
+
+
+
+
+
+
+
+ temporal instant
+ (Elucidation) A temporal instant is a zero-dimensional temporal region that has no proper temporal part
+ The millennium
+
+
+
+
+
+
+
+
+ An atom of an element that exhibits properties that are between those of metals and nonmetals, or that has a mixture of them. The term generally includes boron, silicon, germanium, arsenic, antimony, and tellurium, while carbon, aluminium, selenium, polonium, and astatine are less commonly included.
+ metalloid atom
+
+
+
+
+
+
+
+
+ An iron group element atom that has atomic number 26.
+ iron atom
+
+
+
+
+
+
+
+
+ manganese atom
+
+
+
+
+
+
+
+
+ A carbon group element atom with a symbol Fl and atomic number 114.
+ flerovium atom
+
+
+
+
+
+
+
+
+ A boron group element atom with a symbol Nh and atomic number 113.
+ nihonium atom
+
+
+
+
+
+
+
+
+ A pnictogen atom with a symbol Mc and atomic number 115.
+ moscovium atom
+
+
+
+
+
+
+
+
+ A chalcogen atom with a symbol Lv and atomic number 116.
+ livermorium atom
+
+
+
+
+
+
+
+
+ A halogen atom with a symbol Ts and atomic number 117.
+ tennessine atom
+
+
+
+
+
+
+
+
+
+ A p-block element atom with a symbol Og and atomic number 118.
+ oganesson atom
+
+
+
+
+
+
+
+
+ bromine atom
+
+
+
+
+
+
+
+
+ cadmium atom
+
+
+
+
+
+
+
+
+ calcium atom
+
+
+
+
+
+
+
+
+ chlorine atom
+
+
+
+
+
+
+
+
+ Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity.
+ We are assuming that every molecular entity has to be completely connected by chemical bonds. This excludes protein complexes, which are comprised of minimally two separate molecular entities. We will follow up with Chebi to ensure this is their understanding as well
+ molecular entity
+
+
+
+
+
+
+
+
+ fluorine atom
+
+
+
+
+
+
+
+
+ A chemical entity is a physical entity of interest in chemistry including molecular entities, parts thereof, and chemical substances.
+ chemical entity
+
+
+
+
+
+
+
+
+ A defined linked collection of atoms or a single atom within a molecular entity.
+ group
+
+
+
+
+
+
+
+
+ Chemical element with atomic number 53.
+ iodine atom
+
+
+
+
+
+
+
+
+ lead atom
+
+
+
+
+
+
+
+
+ magnesium atom
+
+
+
+
+
+
+
+
+ mercury atom
+
+
+
+
+
+
+
+
+ nitrogen atom
+
+
+
+
+
+
+
+
+ nonmetal atom
+
+
+
+
+
+
+
+
+ oxygen atom
+
+
+
+
+
+
+
+
+ potassium atom
+
+
+
+
+
+
+
+
+ sodium atom
+
+
+
+
+
+
+
+
+ sulfur atom
+
+
+
+
+
+
+
+
+ tin atom
+
+
+
+
+
+
+
+
+ uranium atom
+
+
+
+
+
+
+
+
+ zinc atom
+
+
+
+
+
+
+
+
+
+ boron atom
+
+
+
+
+
+
+
+
+ arsenic atom
+
+
+
+
+
+
+
+
+ selenium atom
+
+
+
+
+
+
+
+
+
+ silicon atom
+
+
+
+
+
+
+
+
+ carbon atom
+
+
+
+
+
+
+
+
+ A cobalt group element atom that has atomic number 27.
+ cobalt atom
+
+
+
+
+
+
+
+
+ vanadium atom
+
+
+
+
+
+
+
+
+ tungsten
+
+
+
+
+
+
+
+
+ A chromium group element atom that has atomic number 24.
+ chromium atom
+
+
+
+
+
+
+
+
+ Chemical element (nickel group element atom) with atomic number 28.
+ nickel atom
+
+
+
+
+
+
+
+
+ phosphorus atom
+
+
+
+
+
+
+
+
+ molybdenum atom
+
+
+
+
+
+
+
+
+ copper atom
+
+
+
+
+
+
+
+
+ aluminium atom
+
+
+
+
+
+
+
+
+ gold atom
+
+
+
+
+
+
+
+
+ ethylene group
+
+
+
+
+
+
+
+
+ lithium atom
+
+
+
+
+
+
+
+
+
+ helium atom
+
+
+
+
+
+
+
+
+ astatine atom
+
+
+
+
+
+
+
+
+ A metallic element first identified and named from the brilliant indigo (Latin <em>indicum</em>) blue line in its flame spectrum.
+ indium atom
+
+
+
+
+
+
+
+
+ A metallic element first identified and named from the brilliant green line in its flame spectrum (from Greek θαλλοσ, a green shoot).
+ thallium atom
+
+
+
+
+
+
+
+
+
+ germanium atom
+
+
+
+
+
+
+
+
+ tellurium atom
+
+
+
+
+
+
+
+
+ Alkaline earth metal atom with atomic number 4.
+ beryllium atom
+
+
+
+
+
+
+
+
+ silver atom
+
+
+
+
+
+
+
+
+ antimony atom
+
+
+
+
+
+
+
+
+ caesium atom
+
+
+
+
+
+
+
+
+ ruthenium atom
+
+
+
+
+
+
+
+
+ osmium atom
+
+
+
+
+
+
+
+
+ barium atom
+
+
+
+
+
+
+
+
+ europium atom
+
+
+
+
+
+
+
+
+ A chemical entity constituting the smallest component of an element having the chemical properties of the element.
+ atom
+
+
+
+
+
+
+
+
+ bismuth atom
+
+
+
+
+
+
+
+
+
+ neon atom
+
+
+
+
+
+
+
+
+ A radioactive metallic element discovered in 1898 by Marie Sklodowska Curie and named after her home country, Poland (Latin <em>Polonia</em>).
+ polonium atom
+
+
+
+
+
+
+
+
+
+ radon atom
+
+
+
+
+
+
+
+
+ lanthanoid atom
+
+
+
+
+
+
+
+
+ rubidium atom
+
+
+
+
+
+
+
+
+ francium atom
+
+
+
+
+
+
+
+
+ strontium atom
+
+
+
+
+
+
+
+
+ radium atom
+
+
+
+
+
+
+
+
+ scandium atom
+
+
+
+
+
+
+
+
+ yttrium atom
+
+
+
+
+
+
+
+
+ actinium atom
+
+
+
+
+
+
+
+
+ titanium atom
+
+
+
+
+
+
+
+
+ zirconium atom
+
+
+
+
+
+
+
+
+ hafnium atom
+
+
+
+
+
+
+
+
+ niobium atom
+
+
+
+
+
+
+
+
+ rutherfordium atom
+
+
+
+
+
+
+
+
+ tantalum atom
+
+
+
+
+
+
+
+
+ dubnium atom
+
+
+
+
+
+
+
+
+ seaborgium atom
+
+
+
+
+
+
+
+
+ technetium atom
+
+
+
+
+
+
+
+
+ bohrium atom
+
+
+
+
+
+
+
+
+ hassium atom
+
+
+
+
+
+
+
+
+ A cobalt group element atom of atomic number 45.
+ rhodium atom
+
+
+
+
+
+
+
+
+ meitnerium atom
+
+
+
+
+
+
+
+
+ Chemical element (nickel group element atom) with atomic number 46.
+ palladium
+
+
+
+
+
+
+
+
+ platinum
+
+
+
+
+
+
+
+
+ darmstadtium
+
+
+
+
+
+
+
+
+ A copper group element atom with atomic number 111. The the ninth member of the 6d series of transition metals, it is an extremely radioactive, synthetic element. Average mass is around 281.
+ roentgenium atom
+
+
+
+
+
+
+
+
+ cerium
+
+
+
+
+
+
+
+
+ neodymium atom
+
+
+
+
+
+
+
+
+ promethium atom
+
+
+
+
+
+
+
+
+ samarium atom
+
+
+
+
+
+
+
+
+ gadolinium atom
+
+
+
+
+
+
+
+
+ terbium atom
+
+
+
+
+
+
+
+
+ dysprosium atom
+
+
+
+
+
+
+
+
+ erbium
+
+
+
+
+
+
+
+
+ thulium atom
+
+
+
+
+
+
+
+
+ ytterbium
+
+
+
+
+
+
+
+
+ lutetium atom
+
+
+
+
+
+
+
+
+ thorium
+
+
+
+
+
+
+
+
+ protactinium atom
+
+
+
+
+
+
+
+
+ neptunium atom
+
+
+
+
+
+
+
+
+ plutonium atom
+
+
+
+
+
+
+
+
+ americium atom
+
+
+
+
+
+
+
+
+ curium atom
+
+
+
+
+
+
+
+
+ berkelium atom
+
+
+
+
+
+
+
+
+ californium atom
+
+
+
+
+
+
+
+
+ einsteinium atom
+
+
+
+
+
+
+
+
+ fermium
+
+
+
+
+
+
+
+
+ mendelevium atom
+
+
+
+
+
+
+
+
+ nobelium
+
+
+
+
+
+
+
+
+ lawrencium atom
+
+
+
+
+
+
+
+
+ A zinc group element atom with a symbol Cn and atomic number 112. All its isotopes are intensely radioactive. Prior to its discovery, it had the placeholder name ununbium (in accordance with IUPAC recommendations). Following its discovery (in Darmstadt, 1996) and subsequent confirmation, the name copernicium was adopted in 2010.
+ copernicium atom
+
+
+
+
+
+
+
+
+ An atom of an element that exhibits typical metallic properties, being typically shiny, with high electrical and thermal conductivity.
+ metal atom
+
+
+
+
+
+
+
+
+
+ argon atom
+
+
+
+
+
+
+
+
+ A metallic element predicted as eka-aluminium by Mendeleev in 1870 and discovered by Paul-Emile Lecoq de Boisbaudran in 1875. Named in honour of France (Latin <em>Gallia</em>) and perhaps also from the Latin <em>gallus</em> cock, a translation of Lecoq.
+ gallium atom
+
+
+
+
+
+
+
+
+
+ hydrogen atom
+
+
+
+
+
+
+
+
+ holmium atom
+
+
+
+
+
+
+
+
+ iridium atom
+
+
+
+
+
+
+
+
+
+ krypton atom
+
+
+
+
+
+
+
+
+ praseodymium atom
+
+
+
+
+
+
+
+
+ rhenium atom
+
+
+
+
+
+
+
+
+
+ xenon atom
+
+
+
+
+
+
+
+
+ Examples of measurement unit labels are liters, inches, weight per volume.
+ A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.
+ 2009-03-16: provenance: a term measurement unit was
+proposed for OBI (OBI_0000176) , edited by Chris Stoeckert and
+Cristian Cocos, and subsequently moved to IAO where the objective for
+which the original term was defined was satisfied with the definition
+of this, different, term.
+ 2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.
+ measurement unit label
+
+
+
+
+
+
+
+
+ In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.
+ A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.
+ 2009-03-16: original definition when imported from OBI read: "objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed."
+ 2014-03-31: In the example of usage ("In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.
+ Answers the question, why did you do this experiment?
+ OBI Plan and Planned Process/Roles Branch
+ OBI_0000217
+ objective specification
+
+
+
+
+
+
+
+
+ Pour the contents of flask 1 into flask 2
+ A directive information entity that describes an action the bearer will take.
+ OBI Plan and Planned Process branch
+ action specification
+
+
+
+
+
+
+
+
+ A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label
+ http://www.golovchenko.org/cgi-bin/wnsearch?q=label#4n
+ datum label
+
+
+
+
+
+
+
+
+ Data items include counts of things, analyte concentrations, and statistical summaries.
+ An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.
+ 2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.
+ 2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.
+ 2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.
+ 2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/
+ JAR: datum -- well, this will be very tricky to define, but maybe some
+information-like stuff that might be put into a computer and that is
+meant, by someone, to denote and/or to be interpreted by some
+process... I would include lists, tables, sentences... I think I might
+defer to Barry, or to Brian Cantwell Smith
+
+JAR: A data item is an approximately justified approximately true approximate belief
+ data item
+
+
+
+
+
+
+
+
+ a serial number such as "12324X"
+ a stop sign
+ a written proper name such as "OBI"
+ An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.
+ 20091104, MC: this needs work and will most probably change
+ 2014-03-31: We would like to have a deeper analysis of 'mark' and 'sign' in the future (see https://github.com/information-artifact-ontology/IAO/issues/154).
+ based on Oxford English Dictionary
+ symbol
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Examples of information content entites include journal articles, data, graphical layouts, and graphs.
+ A generically dependent continuant that is about some thing.
+ 2014-03-10: The use of "thing" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).
+ information_content_entity 'is_encoded_in' some digital_entity in obi before split (040907). information_content_entity 'is_encoded_in' some physical_document in obi before split (040907).
+
+Previous. An information content entity is a non-realizable information entity that 'is encoded in' some digital or physical entity.
+ OBI_0000142
+ information content entity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 10 feet. 3 ml.
+ A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.
+ 2009-03-16: we decided to keep datum singular in scalar measurement datum, as in
+this case we explicitly refer to the singular form
+ Would write this as: has_part some 'measurement unit label' and has_part some numeral and has_part exactly 2, except for the fact that this won't let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them.
+ scalar measurement datum
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An information content entity whose concretizations indicate to their bearer how to realize them in a process.
+ 2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was "is the specification of a process that can be concretized and realized by an actor" with alternative term "instruction".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.
+ 2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.
+ 8/6/2009 Alan Ruttenberg: Changed label from "information entity about a realizable" after discussions at ICBO
+ Werner pushed back on calling it realizable information entity as it isn't realizable. However this name isn't right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn't about the plan, it, once concretized, *is* the plan. -Alan
+ directive information entity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.
+ Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)
+ GROUP:OBI:<http://purl.obolibrary.org/obo/obi>
+ OBI_0000266
+ curation status specification
+
+
+
+
+
+
+
+
+ Data about an ontology part is a data item about a part of an ontology, for example a term
+ data about an ontology part
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.
+ A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.
+ 2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was " a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.
+ 2014-03-31: A plan specification can have other parts, such as conditional specifications.
+ 2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.
+ Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved
+ OBI Plan and Planned Process branch
+ OBI_0000344
+
+ plan specification
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Examples of measurement data are the recoding of the weight of a mouse as {40,mass,"grams"}, the recording of an observation of the behavior of the mouse {,process,"agitated"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.
+ A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.
+ 2/2/2009 is_specified_output of some assay?
+ OBI_0000305
+ group:OBI
+ measurement datum
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.
+ The creation of this class has been inspired in part by Werner Ceusters' paper, Applying evolutionary terminology auditing to the Gene Ontology.
+ obsolescence reason specification
+
+
+
+
+
+
+
+
+ A journal article, patent application, laboratory notebook, or a book
+ A collection of information content entities intended to be understood together as a whole
+ document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ journal article, newspaper story, book, etc.
+ A document that is the output of a publishing process.
+ publication
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are "natural kinds" and the latter arbitrary collections of entities.
+ A denotator type indicates how a term should be interpreted from an ontological perspective.
+ Barry Smith, Werner Ceusters
+ denotator type
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A scalar measurement datum that is the result of measuring a temporal interval
+ 2009/09/28 Alan Ruttenberg. Fucoidan-use-case
+ time measurement datum
+
+
+
+
+
+
+
+
+ A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.
+ https://en.wikipedia.org/wiki/Publishing
+ publishing process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.
+
+ identifier
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.
+ identifier creating process
+
+
+
+
+
+
+
+
+
+ homo sapiens
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Injecting mice with a vaccine in order to test its efficacy
+ A process that realizes a plan which is the concretization of a plan specification.
+ 'Plan' includes a future direction sense. That can be problematic if plans are changed during their execution. There are however implicit contingencies for protocols that an agent has in his mind that can be considered part of the plan, even if the agent didn't have them in mind before. Therefore, a planned process can diverge from what the agent would have said the plan was before executing it, by adjusting to problems encountered during execution (e.g. choosing another reagent with equivalent properties, if the originally planned one has run out.)
+ We are only considering successfully completed planned processes. A plan may be modified, and details added during execution. For a given planned process, the associated realized plan specification is the one encompassing all changes made during execution. This means that all processes in which an agent acts towards achieving some
+objectives is a planned process.
+ branch derived
+ planned process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When a specimen of blood is assayed for glucose concentration, the blood has the evaluant role. When measuring the mass of a mouse, the evaluant is the mouse. When measuring the time of DNA replication, the evaluant is the DNA. When measuring the intensity of light on a surface, the evaluant is the light source.
+ a role that inheres in a material entity that is realized in an assay in which data is generated about the bearer of the evaluant role
+ Role call - 17nov-08: JF and MC think an evaluant role is always specified input of a process. Even in the case where we have an assay taking blood as evaluant and outputting blood, the blood is not the specified output at the end of the assay (the concentration of glucose in the blood is)
+ examples of features that could be described in an evaluant: quality.... e.g. "contains 10 pg/ml IL2", or "no glucose detected")
+ OBI
+ evaluant role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Assay the wavelength of light emitted by excited Neon atoms. Count of geese flying over a house.
+ A planned process that has the objective to produce information about a material entity (the evaluant) by examining it.
+ 12/3/12: BP: the reference to the 'physical examination' is included to point out that a prediction is not an assay, as that does not require physical examiniation.
+ Discussion on OBI call 2023-05-01 resulted in an agreement to revise the textual definition of 'assay'. https://github.com/obi-ontology/obi/issues/1683.
+ OBI branch derived
+ assay
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ liver section; a portion of a culture of cells; a nemotode or other animal once no longer a subject (generally killed); portion of blood from a patient.
+ A role borne by a material entity that is obtained during a specimen collection process and that can be realized by performing measurements or observations on the specimen.
+ 22Jun09. The definition includes whole organisms, and can include a human. The link between specimen role and study subject role has been removed. A specimen taken as part of a case study is not considered to be a population representative, while a specimen taken as representing a population, e.g. person taken from a cohort, blood specimen taken from an animal) would be considered a population representative and would also bear material sample role.
+ Note: definition is in specimen creation objective which is defined as an objective to obtain and store a material entity for potential use as an input during an investigation.
+ blood taken from animal: animal continues in study, whereas blood has role specimen.
+something taken from study subject, leaves the study and becomes the specimen.
+ parasite example
+- when parasite in people we study people, people are subjects and parasites are specimen
+- when parasite extracted, they become subject in the following study
+specimen can later be subject.
+ OBI
+ specimen role
+
+
+
+
+
+
+
+
+ PMID: 16353909.AAPS J. 2005 Sep 22;7(2):E274-80. Review. The joint food and agriculture organization of the United Nations/World Health Organization Expert Committee on Food Additives and its role in the evaluation of the safety of veterinary drug residues in foods.
+ An entity that can bear roles, has members, and has a set of organization rules. Members of organizations are either organizations themselves or individual people. Members can bear specific organization member roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the organization by the organization members.
+ BP: The definition summarizes long email discussions on the OBI developer, roles, biomaterial and denrie branches. It leaves open if an organization is a material entity or a dependent continuant, as no consensus was reached on that. The current placement as material is therefore temporary, in order to move forward with development. Here is the entire email summary, on which the definition is based:
+
+1) there are organization_member_roles (president, treasurer, branch
+editor), with individual persons as bearers
+
+2) there are organization_roles (employer, owner, vendor, patent holder)
+
+3) an organization has a charter / rules / bylaws, which specify what roles
+there are, how they should be realized, and how to modify the
+charter/rules/bylaws themselves.
+
+It is debatable what the organization itself is (some kind of dependent
+continuant or an aggregate of people). This also determines who/what the
+bearer of organization_roles' are. My personal favorite is still to define
+organization as a kind of 'legal entity', but thinking it through leads to
+all kinds of questions that are clearly outside the scope of OBI.
+
+Interestingly enough, it does not seem to matter much where we place
+organization itself, as long as we can subclass it (University, Corporation,
+Government Agency, Hospital), instantiate it (Affymetrix, NCBI, NIH, ISO,
+W3C, University of Oklahoma), and have it play roles.
+
+This leads to my proposal: We define organization through the statements 1 -
+3 above, but without an 'is a' statement for now. We can leave it in its
+current place in the is_a hierarchy (material entity) or move it up to
+'continuant'. We leave further clarifications to BFO, and close this issue
+for now.
+ GROUP: OBI
+ organization
+
+
+
+
+
+
+
+
+ A mechanical function is a function that is realised via mechanical work (through an certain amount of energy transferred by some force).
+ http://en.wikipedia.org/wiki/Mechanical_work
+ mechanical function
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ With respect to The Accuri C6 Flow Cytometer System, the organization Accuri bears the role manufacturer role. With respect to a transformed line of tissue culture cells derived by a specific lab, the lab whose personnel isolated the cll line bears the role manufacturer role. With respect to a specific antibody produced by an individual scientist, the scientist who purifies, characterizes and distributes the anitbody bears the role manufacturer role.
+ Manufacturer role is a role which inheres in a person or organization and which is realized by a manufacturing process.
+ OBI
+ manufacturer role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A person or organization that has a manufacturer role.
+ manufacturer
+
+
+
+
+
+
+
+
+ A value specification that is specifies one category out of a fixed number of nominal categories
+ categorical value specification
+
+
+
+
+
+
+
+
+ A value specification that consists of two parts: a numeral and a unit label
+ scalar value specification
+
+
+
+
+
+
+
+
+ The value of 'positive' in a classification scheme of "positive or negative"; the value of '20g' on the quantitative scale of mass.
+ An information content entity that specifies a value within a classification scheme or on a quantitative scale.
+ This term is currently a descendant of 'information content entity', which requires that it 'is about' something. A value specification of '20g' for a measurement data item of the mass of a particular mouse 'is about' the mass of that mouse. However there are cases where a value specification is not clearly about any particular. In the future we may change 'value specification' to remove the 'is about' requirement.
+ value specification
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Biobanking of blood taken and stored in a freezer for potential future investigations stores specimen; collecting a stone from a site.
+ A material entity that is collected for potential use as an input upon which measurements or observations are performed.
+ GROUP: OBI Biomaterial Branch
+ specimen
+
+
+
+
+
+
+
+
+ time unit
+
+
+
+
+
+
+
+
+ Instances of Portions Of Matter whose shape is relevant for their dispostion to participate in a Manufacturing Process may be SemiFinishedProdcuts.
+ The sum of portions of matter of the same type form a portion of matter of that type.
+ Material
+ material
+ Portion of Material
+ A Material is a Portion Of Matter that may participate in some Manifacturing Process and whose shape is not relevant for its participation in the Manifacuring Process.
+ true
+
+
+
+
+
+
+
+
+ It is also representing a distinct physical or conceptual part of a material or substance.
+
+The open energy ontology OEO defines portion of matter as a subclass of object aggregate, which implies countability. Our portion is not (precisely) countable and thus bearer of intensive properties.
+ Lome explanation for portion of matter: "What is a molecule cluster at the cellular level? Contrary to the molecular level, at the cellular level of granularity the boundary of each molecule is outside of the level of granular focus. What forms a discontinuous cluster of countable individual molecules and thus bona fide objects at the molecular level, is a continuous and non-countable molecular substance at coarser levels of
+granularity. At these coarser levels, the individual molecules cannot be differentiated and demarcated anymore and the cluster as a whole possesses only fiat inner boundaries."
+ portion of matter
+ A material entity that is not demarcated by any physical discontinuities. At some finer level of granularity it is an object aggregate, at some coarser level of granularity it is a fiat object part,but at this level of granularity it is neither.
+ true
+
+
+
+
+
+
+
+
+ We recognize that some of the materials in the subclasses also occur naturally. However, these are not within the scope of our consideration for technical use.
+ engineered material
+ An Engineered Material is a Material that is output of a Manufacturing Process.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Technical materials are complex object aggregates. The properties that are determined for those object aggregates are intrinsically associated with the methodologies employed in the measurement process. This is in contrast to typical 'physical' properties, which like e.g. mass that can be determined to high accuracy independently of the measurement process.
+As a consequence, the behavoiral material properties in the ontology are differeciated according to their measurement method, e.g. Brinell hardness and Vickers hardness are different types of indentation hardness rather than different measures/quantification (GDC) of the materials property 'indentation hardness'.
+ The 'unit idenifieres' of such properties (e.g. "HV1", "HV10", "HBW") are strictly speaking not units but rather references to the measurement methodology used to determine a numeric value that quantifies the property.
+ behavioral material property
+ A property is a material trait in terms of the kind and magnitude of response to a specific imposed stimulus. Generally, definitions of properties are made independent of material shape and size.
+
+(Callister, W.D., Rethwisch, D.G., Materials Science and Engineering, Wiley, 2014)
+
+We only deal with intensive (system-size independent) materrial properties. Extensive properties that depend on the testpiece/specimen/probe size should be found in the respective testing method modules.
+ true
+
+
+
+
+
+
+
+
+ also see "The Ontology of Fields" - Report of a Specialist Meeting Held under the Auspices of the Varenius Project: Donna Peuquet, Barry Smith, and Berit Brogaard; Bar Harbor, Maine 1998
+ vector field specification
+ a value specifcation that represents an assignment of a vector to each point in a discretized spacial region
+
+
+
+
+
+
+
+
+ an attribute of a process
+ Process attribute for a process has a similar application to specifically dependened continuant (SDC) for an independent continuant (IC). Furthermore, process attribute describes how SDCs of some participants, i.e., ICs, change in a process.
+
+Specific rates, e.g., tensile rate, cooling rate, etc. should be added as subclasses of this class.
+ process attribute
+ process attribute from OEO https://openenergyplatform.org/ontology/oeo/OEO_00030019
+ Renamed to avoid confusion with has characteristic object property
+ process characteristic
+ a process attribute is a dependent occurrent that existentially depends on a process.
+ Tensile rate in a tensile testing process. Cooling rate in a quenching process
+ true
+
+
+
+
+
+
+
+
+ http://purl.obolibrary.org/obo/OBI_0000260
+ plan
+ A plan is a realizable entity that is the inheres in a bearer who is committed to realizing it as a planned process.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ simulation entity role
+ Simulation entity role is a role that inheres in an independent continuant (IC) and is realized in a simulation process. This role enables the IC to participate in the simulation as a proxy, model, or representative of a real or hypothetical entity within the simulated context
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Schmelzprozess
+ melting process
+ A melting process is a thermally induced process during which a solid material undergoes a phase transition into a liquid state. It involves the absorption of heat and occurs at or above the material's melting point.
+ Ein Schmelzvorgang ist ein thermisch induzierter Prozess, bei dem ein festes Material einen Phasenübergang in einen flüssigen Zustand erfährt. Er beinhaltet die Absorption von Wärme und findet bei oder oberhalb des Schmelzpunkts des Materials statt.
+ The process of melting aluminum ingots in preparation for extrusion.
+
+
+
+
+
+
+
+
+ Heizfunktion
+ heating function
+ A heating function is a (realizable) function that, when realized, enables a system or device to increase the thermal energy of a material, typically to reach temperatures required for processing, transformation, or reaction.
+ Eine Heizfunktion ist eine (realisierbare) Funktion, die ein System oder Gerät in die Lage versetzt, die Wärmeenergie eines Materials zu erhöhen, um die für die Verarbeitung, Umwandlung oder Reaktion erforderlichen Temperaturen zu erreichen.
+ The function of a resistance heater in a vacuum furnace.
+
+
+
+
+
+
+
+
+ Kühlfunktion
+ cooling function
+ A cooling function is a (realizable) function that, when realized, enables a system or device to lower the temperature of a material, often to control solidification or maintain a stable state below a desired thermal threshold.
+ Eine Kühlfunktion ist eine (realisierbare) Funktion, die es einem System oder Gerät ermöglicht, die Temperatur eines Materials zu senken, häufig um die Erstarrung zu steuern oder einen stabilen Zustand unterhalb eines gewünschten thermischen Schwellenwerts aufrechtzuerhalten.
+ The function of a water-cooled mold to solidify molten metal in casting.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An electric arc furnace used in steelmaking.
+ Schmelzofen
+ melting furnace
+ A melting furnace is a device that bears a melting function, typically designed to raise the temperature of a solid material to initiate and sustain its transformation into a melt.
+ Ein Schmelzofen ist ein Gerät, das eine Schmelzfunktion hat und in der Regel dazu dient, die Temperatur eines festen Materials zu erhöhen, um seine Umwandlung in eine Schmelze einzuleiten und aufrechtzuerhalten.
+
+
+
+
+
+
+
+
+ Schmelzfunktion
+ melting function
+ A melting function is a heating function that, when realized, enables a device or system to initiate or sustain the phase transition of a solid material into a liquid by raising its temperature above the melting point.
+ Eine Schmelzfunktion ist eine Heizfunktion, die es einem Gerät oder System ermöglicht, den Phasenübergang eines festen Materials in eine Flüssigkeit einzuleiten oder aufrechtzuerhalten, indem seine Temperatur über den Schmelzpunkt angehoben wird.
+ The function of an induction coil in a furnace to heat metal until it melts.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ input assignment
+ input assignment is a process boundary which is part of a computing process and which connects a material entity or i.c.e as input to the computing process
+ https://github.com/materialdigital/core-ontology/issues/184
+
+https://github.com/pyiron/semantikon/pull/278
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ output assignment
+ output assignment is a process boundary which is part of a computing process and which connects a material entity or i.c.e as output to the computing process
+ https://github.com/materialdigital/core-ontology/issues/184
+
+https://github.com/pyiron/semantikon/pull/278
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ For any temporally qualified continuant x@t, there exists a continuant y such that x@t has_state y, meaning that y is the anchor continuant of which x@t is a temporal phase existing at temporal regions t. The relation has_state is functional and signifies that all such temporally qualified continuants are uniquely associated with their basic anchor continuant.
+ temporally qualified continuant
+ A temporally qualified continuant is a continuant that, by reference to a determinate temporal region, is such as to possess its properties only for so long as that period obtains, being otherwise in its essentiality unchanged.
+ https://github.com/materialdigital/core-ontology/issues/185
+
+
+
+
+
+
+
+
+ 1D
+ 1-D is an information content entity representing a one-dimensional structure or model representing a single linear dimension, often used in material science simulations or analysis.
+ true
+
+
+
+
+
+
+
+
+ 2D
+ A two-dimensional information content entity is a representation or analysis, commonly applied in studying planar material properties or surface phenomena.
+ true
+
+
+
+
+
+
+
+
+ ASTM grainsize
+ The ASTM grain size is a scalar specifically describing the size of grains in a crystalline material as defined by ASTM standards.
+ true
+
+
+
+
+
+
+
+
+ Ab Initio MD Simulation
+ ab initio molecular dynamics simulation
+ A Simulation Process that uses quantum mechanical calculations to predict the behavior of molecular systems without empirical parameters.
+ Ein Simulationsprozess, der quantenmechanische Berechnungen verwendet, um das Verhalten molekularer Systeme ohne empirische Parameter vorherzusagen.
+ Simulating the electronic structure and dynamics of a new alloy to predict its mechanical properties.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ accoustic absorption coefficient
+ The accoustic absorption coefficient is an accoustic property representing a measure of how much sound energy is absorbed by a material per unit area.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ accoustic property
+ An accoustic property is a mechanical property representing characteristics of a material that determine its interaction with sound waves, such as absorption, reflection, and transmission.
+ true
+
+
+
+
+
+
+
+
+ Akustische Eigenschaften Analyseverfahren
+ acoustical property analyzing process
+ An assay, that measures the acoustic properties of materials by analyzing how sound waves interact with the material. This process involves generating sound waves and observing their reflection, transmission, absorption, or scattering to determine properties such as acoustic impedance, absorption coefficient, and sound speed.
+ Eine Analyse, die die akustischen Eigenschaften von Materialien misst, indem es analysiert, wie Schallwellen mit dem Material interagieren. Dieser Prozess umfasst die Erzeugung von Schallwellen und die Beobachtung ihrer Reflexion, Übertragung, Absorption oder Streuung, um Eigenschaften wie akustische Impedanz, Absorptionskoeffizient und Schallgeschwindigkeit zu bestimmen.
+ For example, acoustic emission testing (AET) is used to monitor the release of energy from a material under stress, which can indicate the onset of failure or the presence of defects.
+
+
+
+
+
+
+
+
+ Additive Fertigungsgerät
+ additive manufacturing device
+ A device used for manufacturing objects layer by layer through additive processes such as 3D printing.
+ Ein Gerät zur Herstellung von Objekten Schicht für Schicht durch additive Verfahren wie 3D-Druck.
+
+
+
+
+
+
+
+
+ Adhäsionsprüfverfahren
+ adhesion testing process
+ A Mechanical Property Analyzing Process that measures the strength of adhesion between two bonded surfaces, assessing the quality of adhesive joints.
+ Ein Mechanische Eigenschaften Analyseverfahren, das die Stärke der Haftung zwischen zwei verklebten Oberflächen misst und die Qualität der Klebeverbindungen bewertet.
+ Adhesion testing of epoxy bonds in composite materials to ensure structural integrity in aircraft components.
+
+
+
+
+
+
+
+
+ A screwdriver used to adjust a grub screw.
+ Einstellungsgeräterolle
+ adjustment device role
+ Role of a device that is used to adjust another device (SubjectOfAdjustmentRole). The role is realized in an adjustment process.
+ Rolle eines Gerätes, das zum Einstellen eines anderen Gerätes (SubjectOfAdjustmentRole) verwendet wird. Die Rolle wird in einem Einstellungsprozess realisiert.
+
+
+
+
+
+
+
+
+
+ age
+ true
+ The age is a quality denoting the temporal interval since a material entity came into existance.
+
+TODO: should move to "process characteristic"
+ true
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+ aggregate state
+ The aggregate state is a morphological quality representing the physical state of a material, such as solid, liquid, or gas.
+ true
+
+
+
+
+
+
+
+
+ Alterungsprozess
+ aging process
+ Das Aging oder Auslagern ist ein Anlassvorgang, der den Martensit (Härtungsgefüge) wieder duktil und verformbar macht. Dabei wird ein Agingvorgang genutzt, nämlich die Bildung von Ausscheidungen in Form von FeXCY - Carbiden
+ The process of hardening an alloy by a method that causes a constituent to precipitate from solid solution.
+ The Process of austenitizing and quenching a steel alloy to achieve a martensitic microstructure for hardness increase.
+
+
+
+
+
+
+
+
+ application of accoustic wave
+ An application of (an) acoustic wave is an application of (a) mechanical load describing the use of sound waves in a material or system for testing or functional purposes.
+
+
+
+
+
+
+
+
+ application of elastic impact
+ An application of (an) elastic impact represents an application of (a) mechanical load describing the process of applying a force or impact to a material to observe its elastic response.
+
+
+
+
+
+
+
+
+ application of electric field
+ An application of (an) electric field is the process of subjecting a material to an electric field to observe its behavior or modify its properties.
+
+
+
+
+
+
+
+
+ application of heat flux
+ An application of heat flux describes the process of transferring thermal energy to or from a material, often used in thermal property measurements.
+
+
+
+
+
+
+
+
+ application of magnetic field
+ An application of (a) magnetic field is the process of subjecting a material to a magnetic field to study its magnetic properties or induce magnetization.
+
+
+
+
+
+
+
+
+ application of mechanical load
+ An application of mechanical load is the process of applying force or stress to a material to observe its response or measure its properties.
+
+
+
+
+
+
+
+
+ Application Of Substance
+ application of substance
+ The application of (a) substance is the process of applying a material or substance to a surface or within a system.
+
+
+
+
+
+
+
+
+
+
+ Assemblierungsprozess
+ assembling process
+ A process to mount or demount a component.
+
+
+
+
+
+
+
+
+ Atomkraftmikroskop
+ atomic force microscope
+ An Atomic Force Microscope (AFM) is a Measuring Device that maps the surface topography of materials at the nanoscale by scanning it with a mechanical probe.
+ Ein Atomkraftmikroskop (AFM) ist ein Messgerät, das die Oberflächentopographie von Materialien im Nanobereich durch Abtasten mit einer mechanischen Sonde kartiert.
+
+
+
+
+
+
+
+
+ atomic structure
+ The atomic structure is a material structure that describes the arrangement and composition of atoms in a material, influencing its physical and chemical properties.
+ true
+
+
+
+
+
+
+
+
+ Atomistische Monte Carlo Simulation
+ atomistic monte carlo simulation
+ A Monte Carlo Simulation process that focuses on the atomic scale, where the properties and behaviors of materials are modeled by considering individual atoms and their interactions.
+ Ein Monte Carlo Simulationsprozess, der sich auf die atomare Skala konzentriert, bei dem die Eigenschaften und das Verhalten von Materialien durch die Betrachtung einzelner Atome und ihrer Wechselwirkungen modelliert werden.
+ Simulating the behavior of electrons in a new alloy to predict its electrical conductivity.
+
+
+
+
+
+
+
+
+ Bandsäge
+ bandsaw
+ A band saw is a type of saw that uses a continuous, endless saw blade in the form of a band. This blade is usually a narrow, flexible steel blade with teeth along one edge. The band saw is mounted in a closed loop and is guided by two wheels, at least one of which is driven. The operation of the band saw enables precise and efficient cuts to be made in a variety of materials, including wood, metal and plastic.
+ Eine Bandsäge ist eine Art von Säge, die ein kontinuierliches, endloses Sägeblatt in Form eines Bands verwendet. Dieses Sägeblatt ist in der Regel eine schmale, flexible Stahlklinge mit Zähnen entlang einer Kante. Die Bandsäge ist in eine geschlossene Schleife montiert und wird über zwei Räder geführt, von denen mindestens eines angetrieben wird. Die Funktionsweise der Bandsäge ermöglicht präzise und effiziente Schnitte in unterschiedlichen Materialien, einschließlich Holz, Metall und Kunststoff.
+
+
+
+
+
+
+
+
+ Biegeversuchmaschine
+ bending testing machine
+ A device used to test the bending strength and flexibility of materials by applying a load and measuring deformation.
+ Ein Gerät zur Prüfung der Biegefestigkeit und Flexibilität von Materialien durch Anwendung einer Last und Messung der Verformung.
+
+
+
+
+
+
+
+
+ Biegeprüfverfahren
+ bending testing process
+ A Mechanical Property Analyzing Process that measures the resistance of a material to bending forces, determining its flexural strength and stiffness.
+ Ein Mechanische Eigenschaften Analyseverfahren, das den Widerstand eines Materials gegen Biegekräfte misst und seine Biegefestigkeit und Steifigkeit bestimmt.
+ Testing the flexural strength of a plastic beam to ensure it can withstand the required load in an engineering application.
+
+
+
+
+
+
+
+
+ Analyseverfahren der Biokompatibilität
+ biocompatibility analyzing process
+ A Biological Property Analyzing Process that evaluates the compatibility of a material with living tissues to ensure it does not provoke an adverse biological response.
+ An example of a biocompatibility analyzing process is an in vitro cell culture test, where cells are cultured in the presence of the implant material to observe any cytotoxic effects, such as changes in cell morphology, proliferation rate, or cell viability.
+ Ein Biologisches Eigenschaften Analyseverfahren, das die Verträglichkeit eines Materials mit lebenden Geweben bewertet, um sicherzustellen, dass es keine nachteilige biologische Reaktion hervorruft.
+
+
+
+
+
+
+
+
+ Biologische Eigenschaften Analyseverfahren
+ biological property analyzing process
+ An assay that examines the interaction of materials with biological systems, including biocompatibility, biodegradability, toxicity, and the effects of materials on living organisms and cells.
+ Eine Analyse, die die Wechselwirkung von Materialien mit biologischen Systemen untersucht, einschließlich Biokompatibilität, Abbaubarkeit, Toxizität und der Auswirkungen von Materialien auf lebende Organismen und Zellen.
+
+
+
+
+
+
+
+
+ “Blank.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/blank. Accessed 25 Nov. 2022.
+ Rohling-Rolle
+ blank role
+ Role of an object, which is realized in a preparation process
+ Some portion of material, which to be made into something by a further operation.
+
+
+
+
+
+
+
+
+ boiling point
+ The boiling point is a phase boundary described by the temperature at which a liquid changes to a gas under standard atmospheric pressure.
+ true
+
+
+
+
+
+
+
+
+ Brinell 2.5 62.5 ISO 6506
+ A Brinell Hardness measured with 2.5mm diameter ball and a load of 62.5 kgf.
+ true
+
+
+
+
+
+
+
+
+ brinell hardness
+ The Brinell hardness is a scalar representing a measure of material hardness obtained by indenting the material with a steel or tungsten carbide ball under a specific load.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bulk
+ The bulk is a fiat object part that describes the volume or mass of material considered as a whole, often in contrast to surface or interface phenomena.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bulk modulus
+ The bulk modulus is an elastic modulus representing a measure of a material's resistance to uniform compression.
+ true
+
+
+
+
+
+
+
+
+ Brennen
+ burning
+ Firing
+ A changing the properties of material process that involves burning typically refers to the application of high heat, often resulting in combustion or thermal degradation, to alter the physical or chemical properties of a material, leading to changes like hardening, alteration in chemical composition, or reduction in mass,
+ Ein Stoffeigenschaftsänderungsprozess, der das Brennen beinhaltet, bezieht sich in der Regel auf die Anwendung großer Hitze, die oft zu einer Verbrennung oder thermischen Zersetzung führt, um die physikalischen oder chemischen Eigenschaften eines Materials zu verändern, was zu Veränderungen wie Härtung, Änderung der chemischen Zusammensetzung oder Verringerung der Masse führt,
+ Firing in Pottery
+
+
+
+
+
+
+
+
+ CNC-Maschine
+ cnc machine
+ A CNC Machine is a Forming Machine that uses computer numerical control to precisely control machining tools for cutting, drilling, milling, and other tasks.
+ Eine CNC-Maschine ist eine Formmaschine, die zur präzisen Steuerung von Bearbeitungswerkzeugen für Schneid-, Bohr-, Fräs- und andere Aufgaben computergestützte numerische Steuerung verwendet.
+
+
+
+
+
+
+
+
+
+ CNC-Schweißmaschine
+ cnc welding machine
+ A CNC Welding Machine is a Device that performs welding operations controlled by a computer numerical control system.
+ Eine CNC-Schweißmaschine ist ein Gerät, das Schweißoperationen durch ein computergesteuertes System ausführt.
+
+
+
+
+
+
+
+
+ Kalibrierungsgeräterolle
+ calibration device role
+ Role of a device that is used for calibration of itself or another device, which has the "Subject Of Calibration Role". The role is realized in a calibration process.
+ Rolle eines Geräts, das zum Kalibirieren sich selbst oder eines anderen Gerätes, das die "Subject Of Calibration Role" inne hat, verwendet wird. Die Rolle wird in einem Kalibrierungsprozess realisiert.
+ true
+
+
+
+
+
+
+
+
+ https://www.merriam-webster.com/dictionary/caliper
+ Messschieber
+ caliper
+ A measuring device having two usually adjustable arms, legs, or jaws used especially to measure the dimensions of objects, such as diameters or thicknesses
+ Messgerät mit zwei in der Regel verstellbaren Armen, Schenkeln oder Klemmbacken, das vor allem zur Messung der Abmessungen von Gegenständen, wie z. B. des Durchmessers oder der Dicke, verwendet wird
+
+
+
+
+
+
+
+
+ Classified by morphology.
+ ceramic
+ Ceramics are engineered materials described as non-metallic, inorganic materials characterized by high hardness, brittleness, and heat resistance, commonly used in engineering applications.
+ true
+
+
+
+
+
+
+
+
+ change of aggregate state
+ A change of aggregate state is a phase transition (change of phase) involving the collective state of particles in a material, such as melting or condensation.
+ true
+
+
+
+
+
+
+
+
+ change of phase
+ A change of phase is a process describing the transition of a material from one state of matter to another, such as from solid to liquid or liquid to gas.
+
+
+
+
+
+
+
+
+ change of temperature
+ A change of temperature is a process describing the variation in thermal energy within a material or system over time or due to external influences.
+ true
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 5, 3.1.6 Stoffeigenschaften ändern - Definition
+ Offizielle Definition findet man in: DIN 8580:2003-9 Fertigungsverfahren, Seite 5, 3.1.6 Stoffeigenschaften ändern - Definition
+ Stoffeigenschaft Ändern
+ changing properties of material
+ Changing Of Material Properties
+ Property Alteration
+ A manufacturing process that modifies the characteristics of the material from which a workpiece is made, including by processes at the submicroscopic or atomic scale, such as atomic diffusion, dislocation formation and movement in the atomic lattice or chemical reactions, whereby the resulting shape changes are not characteristic of these processes.
+ Ein Herstellungsprozess, der die Merkmale des Materials, aus dem ein Werkstück gefertigt ist, modifiziert, was unter anderem durch Vorgänge im submikroskopischen oder atomaren Bereich erfolgt, wie etwa durch Atomdiffusion, die Versetzungsentstehung und -bewegung im Atomgitter oder durch chemische Reaktionen, wobei die dabei auftretenden Formveränderungen nicht charakteristisch für diese Verfahren sind.
+ Heat Treatment
+
+
+
+
+
+
+
+
+ chemical composition
+ The chemical composition is a morphological quality describing the types and proportions of elements or compounds present in a material.
+ true
+
+
+
+
+
+
+
+
+ Analyseverfahren für die chemische Zusammensetzung
+ chemical composition analyzing process
+ A Structural Property Analyzing Process that determines the chemical composition of a material by identifying and quantifying its constituent elements and compounds.
+ Ein Struktur Eigenschaften Analyseverfahren, das die chemische Zusammensetzung eines Materials bestimmt, indem es dessen Bestandteile und Verbindungen identifiziert und quantifiziert.
+
+
+
+
+
+
+
+
+ chemical potential
+ The chemical potential is a thermodynamic quality describing the energy change associated with the addition of a small quantity of a substance to a system at constant temperature and pressure.
+ true
+
+
+
+
+
+
+
+
+ Chemische Eigenschaften Analyseverfahren
+ chemical property analyzing process
+ An assay that determines the chemical composition, reactivity, and chemical stability of materials, including the identification and quantification of chemical elements and compounds.
+ Eine Analyse, die die chemische Zusammensetzung, Reaktivität und chemische Stabilität von Materialien bestimmt, einschließlich der Identifizierung und Quantifizierung chemischer Elemente und Verbindungen.
+
+
+
+
+
+
+
+
+ Chromatographiefunktion
+ chromatography function
+ A function performed to separate compounds in a mixture based on their distribution between a stationary phase and a mobile phase.
+ Eine Funktion, die durchgeführt wird, um Verbindungen in einer Mischung basierend auf ihrer Verteilung zwischen einer stationären Phase und einer mobilen Phase zu trennen.
+ true
+
+
+
+
+
+
+
+
+ Chromatographieverfahren
+ chromatography process
+ A Structural Property Analyzing Process that enables the separation and analysis of compounds in a mixture by their distribution between a mobile and a stationary phase.
+ Ein Struktur Eigenschaften Analyseverfahren, das die Trennung und Analyse von Verbindungen in einem Gemisch durch ihre Verteilung zwischen einer mobilen und einer stationären Phase ermöglicht.
+
+
+
+
+
+
+
+
+ Chromatographiesystem
+ chromatography system
+ A device used for separating mixtures into individual components using a chromatographic column and a mobile phase.
+ Ein Gerät zur Trennung von Gemischen in einzelne Komponenten unter Verwendung einer chromatographischen Säule und einer mobilen Phase.
+
+
+
+
+
+
+
+
+ Kreissäge
+ circular saw
+ Die Kreissäge ist eine elektrische oder motorisierte Säge, die durch ein rundes, kreisförmiges Sägeblatt angetrieben wird. Das Sägeblatt einer Kreissäge ist mit Zähnen entlang seines Randes ausgestattet, die dazu dienen, das Material zu schneiden, wenn es in die Säge eingespeist wird. Kreissägen sind vielseitige Werkzeuge und können für verschiedene Materialien wie Holz, Metall, Kunststoff und sogar Gestein verwendet werden, abhängig vom spezifischen Sägeblatt, das installiert ist.
+ The circular saw is an electric or motorized saw that is powered by a round, circular saw blade. The blade of a circular saw is equipped with teeth along its edge that are used to cut the material as it is fed into the saw. Circular saws are versatile tools and can be used for different materials such as wood, metal, plastic and even rock, depending on the specific saw blade that is installed.
+
+
+
+
+
+
+
+
+ Tischkreissäge
+ circular table saw
+ A stationary circular saw that is built into a table top. It is often used in workshops for precise wood cuts.
+ Eine stationäre Kreissäge, die in eine Tischplatte eingebaut ist. Sie wird oft in Werkstätten für präzise Holzschnitte verwendet.
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8592
+ Offizielle Definition findet man in: DIN 8592
+ Reinigen
+ cleaning
+ A Seperating process that involves removing unwanted material from a surface through cleaning methods, which may include processes like blasting, washing, or chemical cleaning.
+ Ein Trennprozess, bei dem unerwünschtes Material von einer Oberfläche durch Reinigungsmethoden entfernt wird, die Verfahren wie Strahlen, Waschen oder chemische Reinigung umfassen können.
+ Chemical Cleaning, Mechanical Cleaning
+
+
+
+
+
+
+
+
+ Reinigungsgerät
+ cleaning device
+ A device used for removing contaminants from materials or surfaces.
+ Ein Gerät zum Entfernen von Verunreinigungen von Materialien oder Oberflächen.
+
+
+
+
+
+
+
+
+ Coarse Grained Simulation
+ coarse grained simulation
+ Ein Multiskalensimulation Prozess, der das System vereinfacht, indem Atome oder Moleküle zu größeren Partikeln zusammengefasst werden, wodurch die Rechenkomplexität verringert wird und die Untersuchung größerer Systeme oder längerer Zeitskalen ermöglicht wird.
+ multiscale simulation process that simplifies the system by grouping atoms or molecules into larger particles, thereby reducing computational complexity and allowing for the study of larger systems or longer time scales
+ In materials science, coarse-grained simulations are often used to study the mechanical properties of polymers. For instance, in the simulation of polymer chains, each segment of the chain might represent a group of several monomers, rather than modeling every single atom. This approach allows researchers to investigate the behavior of polymeric materials over larger scales and longer time periods, such as the viscoelastic properties of a polymer melt.
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 5, 3.1.5 Beschichten - Definition
+ Offizielle Definition findet man in: DIN 8580:2003-9 Fertigungsverfahren, Seite 5, 3.1.5 Beschichten - Definition
+ Beschichten
+ coating
+ A manufacturing process that aims to deposit a permanently adhering layer of a material without a form onto a workpiece, whereby the immediate state of the coating material directly before application is essential.
+ Ein Herstellungsprozess, der darauf abzielt, eine dauerhaft haftende Schicht aus einem Material ohne Form auf ein Werkstück aufzubringen, wobei der unmittelbare Zustand des Beschichtungsmaterials direkt vor dem Auftragen entscheidend ist.
+ Chemical Vapour Deposition, Physical Vapour Deposition
+
+
+
+
+
+
+
+
+ Beschichtungsanwendungsfunktion
+ coating application function
+ A subfunction of coating performed to apply a coating to a surface.
+ Eine Unterfunktion der Beschichtung, die durchgeführt wird, um eine Beschichtung auf eine Oberfläche aufzutragen.
+ true
+
+
+
+
+
+
+
+
+ Beschichten Durch Löten
+ coating by soldering
+ A Coating process that involves applying a coating using soldering techniques.
+ Ein Beschichtungsprozess, der das Auftragen einer Beschichtung mittels Löten beinhaltet.
+ Applying a protective solder layer on electronic circuit boards.
+
+
+
+
+
+
+
+
+ Beschichten Durch Schweissen
+ coating by welding
+ A Coating process that involves applying a coating using welding techniques.
+ Ein Beschichtungsprozess, der das Auftragen einer Beschichtung mittels Schweißen beinhaltet.
+ Cladding a metal surface with a corrosion-resistant alloy using weld overlay.
+
+
+
+
+
+
+
+
+ Beschichtungsgerät
+ coating device
+ A device used for applying a coating or layer to materials to enhance their properties or appearance.
+ Ein Gerät zum Auftragen einer Beschichtung oder Schicht auf Materialien zur Verbesserung ihrer Eigenschaften oder ihres Aussehens.
+
+
+
+
+
+
+
+
+ Beschichten Aus Dem Gasförmigen Oder Dampfförmigen Zustand
+ coating from the gaseous or vapour state
+ Vakuumbeschichten
+ A Coating process that involves applying a coating from a gaseous or vapor state.
+ Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem gasförmigen oder dampfförmigen Zustand beinhaltet.
+ Applying a thin film of material using chemical vapor deposition (CVD).
+
+
+
+
+
+
+
+
+ Beschichten Aus Dem Körnigen Oder Pulverförmigen Zustand
+ coating from the granular or powdery state
+ A Coating process that involves applying a coating from a granular or powdery state.
+ Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem körnigen oder pulverförmigen Zustand beinhaltet.
+ Powder coating of metal parts.
+
+
+
+
+
+
+
+
+ Beschichten Aus Dem Ionisierten Zustand
+ coating from the ionized state
+ A Coating process that involves applying a coating from an ionized state.
+ Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem ionisierten Zustand beinhaltet.
+ Plasma spraying of ceramic coatings.
+
+
+
+
+
+
+
+
+ Beschichten Aus Dem Flüssigen Zustand
+ coating from the liquid state
+ A Coating process that involves applying a coating from a liquid state.
+ Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem flüssigen Zustand beinhaltet.
+ Electroplating of metals.
+
+
+
+
+
+
+
+
+ Beschichten Aus Dem Plastischen Zustand
+ coating from the plastic state
+ A Coating process that involves applying a coating from a plastic state.
+ Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem plastischen Zustand beinhaltet.
+ Applying a plastic film through hot melt coating.
+
+
+
+
+
+
+
+
+ Beschichten Aus Dem Breiigen Oder Pastösen Zustand
+ coating from the pulpy or pasty state
+ A Coating process that involves applying a coating from a pulpy or pasty state.
+ Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem breiigen oder pastösen Zustand beinhaltet.
+ Painting, a protective layer of plaster on walls.
+
+
+
+
+
+
+
+
+ Beschichtungsfunktion
+ coating function
+ A function performed to apply a layer or coating to a surface to enhance its properties or appearance.
+ Eine Funktion, die ausgeführt wird, um eine Schicht oder Beschichtung auf eine Oberfläche aufzutragen, um deren Eigenschaften oder Aussehen zu verbessern.
+ true
+
+
+
+
+
+
+
+
+ Farbmessgerät
+ colorimeter
+ A device used to measure the color of a sample, often used in quality control and material analysis.
+ Ein Gerät zur Messung der Farbe einer Probe, häufig verwendet in der Qualitätskontrolle und Materialanalyse.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ composite material
+ A Composite Material is an Engineered Material that 'consists of' some Material that has a Matrix role and of some Material that has a Filler role.
+ true
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8593-1
+ Offizielle Definition findet man in: DIN 8593-1
+ Zusammensetzen
+ compounding
+ Putting Together
+ A joining process that involves assembling various components or sub-assemblies to form a complex unit, commonly used in manufacturing processes where multiple parts are put together to create a final product.
+ Ein Füge Prozess, bei dem verschiedene Komponenten oder Unterbaugruppen zu einer komplexen Einheit zusammengefügt werden. Es wird üblicherweise in Fertigungsprozessen verwendet, bei denen mehrere Teile zu einem Endprodukt zusammengefügt werden.
+ Interlocking, Layering
+
+
+
+
+
+
+
+
+ Compoundiermaschine
+ compounding machine
+ A device used for mixing or compounding materials to achieve desired properties.
+ Ein Gerät zur Mischung oder Compoundierung von Materialien, um gewünschte Eigenschaften zu erreichen.
+
+
+
+
+
+
+
+
+ Druckprüfmaschine
+ compression testing machine
+ A device used to test the compressive strength of materials by applying a compressive force.
+ Ein Gerät zur Prüfung der Druckfestigkeit von Materialien durch Anwendung einer Druckkraft.
+
+
+
+
+
+
+
+
+ Druckprüfverfahren
+ compression testing process
+ A Mechanical Property Analyzing Processs that determines a material's behavior under compressive forces, measuring its compressive strength and modulus.
+ Ein Mechanische Eigenschaften Analyseverfahren, das das Verhalten eines Materials unter Druckkräften bestimmt und seine Druckfestigkeit und seinen Druckmodul misst.
+ Compression testing of concrete samples to ensure they meet the required strength standards for construction.
+
+
+
+
+
+
+
+
+ Computer
+ computing device
+ A computing system that provides an execution environment for, e.g., simulation processes or prediction models.
+A computing system can be virtual (e.g., a container or virtual machine) or physical (e.g., a bare-metal servers), uses digital representations of objects as inputs and produces digital measurements, such as simulation results or predictions, as outputs.
+ Ein Rechnersystem, das eine Ausführungsumgebung bspw. für Simulationsprozesse oder Vorhersagemodelle bereitstellt.
+Ein Rechenknoten kann virtuell (bspw. ein Container oder eine virtuelle Maschine) oder physisch (z. B. ein Bare-Metal-Server) ausgestaltet sein und verwendet in der Regel digitale Repräsentationen von Objekten als Eingaben und erzeugt digitale Messungen, wie z.B. Simulationsergebnisse oder Vorhersagen, als Ausgaben.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The subclass trees of "Computing Process" are currently still proposals and serve as a working basis for the discussion round with the simulation/workflow domain experts.
+ Datenverarbeitung
+ Rechenprozess
+ computing process
+ A process that involves the systematic use of computational methods and tools to perform simulations, analyses, or data transformations to achieve specific scientific or engineering goals.
+ Ein Prozess, der die systematische Verwendung von rechnerischen Methoden und Werkzeugen umfasst, um Simulationen, Analysen oder Datenumwandlungen durchzuführen, um spezifische wissenschaftliche oder technische Ziele zu erreichen.
+
+
+
+
+
+
+
+
+ Konditionierungsprozess
+ conditioning process
+ Diese Aktivität beschreibt den Prozess und die Maßnahmen, die ergriffen werden, um einen materiellen Gegenstand auf vordefinierte Umgebungsbedingungen einzustellen.
+ This activity describes the process of and the measures taken to set a tangible object to pre-defined environmental conditions.
+
+
+
+
+
+
+
+
+ continuous simulation
+ a simulation approach where changes in a system are modeled continuously over time.
+ true
+
+
+
+
+
+
+
+
+ corpuscular irradiation
+ The corpuscular irradiation is an irradiation describing the exposure of a material to streams of particles, such as electrons or ions.
+
+
+
+
+
+
+
+
+ crack growth
+ The crack growth is an evolution of damage describing the progressive extension of a crack in a material under stress.
+ true
+
+
+
+
+
+
+
+
+ Kriechprüfmaschine
+ creep testing machine
+ A device used to test the creep behavior of materials under constant stress at high temperatures.
+ Ein Gerät zur Prüfung des Kriechverhaltens von Materialien unter konstanter Belastung bei hohen Temperaturen.
+
+
+
+
+
+
+
+
+ Kriechprüfverfahren
+ creep testing process
+ A Mechanical Property Analyzing Process that evaluates a material's deformation over time under constant stress and temperature, determining its creep behavior.
+ Ein Mechanische Eigenschaften Analyseverfahren, das die Verformung eines Materials über die Zeit unter konstanter Belastung und Temperatur bewertet und sein Kriechverhalten bestimmt.
+ Creep testing of turbine blades to ensure they can withstand prolonged high temperatures without deforming.
+
+
+
+
+
+
+
+
+ Kryogefrierschrank
+ cryogenic freezer
+ A Cryogenic Freezer is a Temperature Change Device that preserves materials at extremely low temperatures, often below -150°C.
+ A device used to preserve materials at extremely low temperatures, typically below -150°C.
+ Ein Gerät, das verwendet wird, um Materialien bei extrem niedrigen Temperaturen zu konservieren, typischerweise unter -150°C.
+ Ein Kryogefrierschrank ist ein Temperaturwechselgerät, das Materialien bei extrem niedrigen Temperaturen konserviert, oft unter -150°C.
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+ crystal structure
+ The crystal structure is a morphologic quality that describes the periodic geometric arrangement of entities in a crystalline material. The finite set of periodic geometric arrangements is described by the 14 possible Bravais Lattices in three-dimensional space.
+ true
+
+
+
+
+
+
+
+
+ Trennen Funktion
+ cut function
+ Schneidfunktion
+ A function performed to separate or divide materials using cutting devices.
+ Eine Funktion, die ausgeführt wird, um Materialien mit Schneidgeräten zu trennen oder zu teilen.
+ true
+
+
+
+
+
+
+
+
+ Deep Learning
+ deep learning
+ A Simulation Process that employs artificial neural networks with many layers to model complex patterns in data.
+ Ein Simulationsprozess, der künstliche neuronale Netze mit vielen Schichten verwendet, um komplexe Muster in Daten zu modellieren.
+ Using deep learning to predict the formation of defects in crystalline materials.
+ DL
+
+
+
+
+
+
+
+
+ defect density
+ The defect density is a morphological quality describing the number of defects per unit volume or area in a material, which can affect its mechanical and electronic properties.
+ true
+
+
+
+
+
+
+
+
+ deformation
+ The deformation is a process describing a change in the shape, size, or structure of a material under the influence of stress or force.
+ true
+
+
+
+
+
+
+
+
+ density
+ The density is a universal intensive quality representing the unit mass of a portion of matter per unit volume.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Abteilung
+ department
+ Organization that it a distinct part of an organization, typically responsible for a specific area of activity, function, or expertise, and organized under a designated leader or head to carry out its duties in alignment with the broader goals and policies of the organization.
+ true
+
+
+
+
+
+
+
+
+ This role is also an indication that an organization is a sub section of another organization.
+ department role
+ A department role is a role describing a personal function or position within an organization that defines responsibilities or activities in a specified context.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ deteriorative property
+ The deteriorative property is a material property representing characteristics that describe the susceptibility of a material to degradation over time.
+ true
+
+
+
+
+
+
+
+
+ deterministic simulation
+ a simulation approach where outcomes are precisely determined through known relationships without random variability.
+ true
+
+
+
+
+
+
+
+
+ Gerät
+ device
+ A physical or virtual entity used to perform a specific function or task, often involving measurement, manipulation, or analysis of materials.
+ Ein physisches oder virtuelles Objekt, das verwendet wird, um eine bestimmte Funktion oder Aufgabe auszuführen, häufig im Zusammenhang mit der Messung, Manipulation oder Analyse von Materialien.
+ true
+
+
+
+
+
+
+
+
+ Rolle eines Gerätes
+ device role
+ Rolle, die ein Geräte inne haben kann.
+ true
+
+
+
+
+
+
+
+
+
+ dielectric constant
+ The dielectric constant is an electrical property representing a measure of a material's ability to store electrical energy in an electric field.
+ true
+
+
+
+
+
+
+
+
+ Differential-Scanning-Kalorimeter
+ differential scanning calorimeter
+ A device used to measure the heat flow associated with phase transitions in a sample as a function of temperature.
+ Ein Gerät zur Messung des Wärmeflusses, der mit Phasenübergängen in einer Probe in Abhängigkeit von der Temperatur verbunden ist.
+
+
+
+
+
+
+
+
+ Dynamische Differenzkalorimetrie-Verfahren
+ differential scanning calorimetry process
+ A Thermal Property Analyzing Process that measures the heat flow into or out of a material as it is heated, cooled, or held at a constant temperature, determining its thermal transitions such as melting, crystallization, and glass transitions.
+ Ein Thermische Eigenschaften Analyseverfahren, das den Wärmestrom in oder aus einem Material misst, während es erhitzt, gekühlt oder bei konstanter Temperatur gehalten wird, um seine thermischen Übergänge wie Schmelzen, Kristallisation und Glasübergänge zu bestimmen.
+ Differential scanning calorimetry of a polymer to determine its melting temperature and crystallization behavior.
+ DSC
+
+
+
+
+
+
+
+
+ Differenzthermoanalyse-Verfahren
+ differential thermal analysis process
+ A Thermal Property Analyzing Process that measures the temperature difference between a sample and a reference material as they are subjected to a controlled temperature program, identifying phase transitions and reactions.
+ Ein Thermische Eigenschaften Analyseverfahren, das die Temperaturdifferenz zwischen einer Probe und einem Referenzmaterial misst, während sie einem kontrollierten Temperaturprogramm unterzogen werden, um Phasenübergänge und Reaktionen zu identifizieren.
+ Differential thermal analysis of a ceramic material to identify its phase transition temperatures and reaction kinetics.
+ DTA
+
+
+
+
+
+
+
+
+ Differentialthermometer
+ differential thermal analyzer
+ A device used to measure the temperature difference between a sample and a reference material as they are heated or cooled.
+ Ein Gerät zur Messung des Temperaturunterschieds zwischen einer Probe und einem Referenzmaterial beim Erhitzen oder Abkühlen.
+
+
+
+
+
+
+
+
+ Dimensionierungsfunktion
+ dimension measuring function
+ A subfunction of measuring performed to determine the dimensions of an object or material.
+ Eine Unterfunktion des Messens, die durchgeführt wird, um die Abmessungen eines Objekts oder Materials zu bestimmen.
+ true
+
+
+
+
+
+
+
+
+ Dimensions Messprozess
+ dimension measuring process
+ A Structural Property Analyzing Process that determines the physical dimensions of a material or object, such as length, width, height, diameter, and thickness, with high accuracy and precision.
+ Ein Struktur Eigenschaften Analyseverfahren, das die physikalischen Dimensionen eines Materials oder Objekts, wie Länge, Breite, Höhe, Durchmesser und Dicke, mit hoher Genauigkeit und Präzision bestimmt.
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8591
+ Offizielle Definition findet man in: DIN 8591
+ Zerlegen
+ disassembling
+ A Seperating process that involves disassembling a composite or assembled unit into its constituent parts or sections.
+ Ein Trennprozess, bei dem eine zusammengesetzte oder montierte Einheit in ihre Einzelteile oder Abschnitte zerlegt wird.
+ Dismantling, Emptying
+
+
+
+
+
+
+
+
+ discrete-event simulation
+ a simulation method where events are processed at distinct points in time, commonly used for modeling systems with discrete state changes.
+ true
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8588
+ Offizielle Definition findet man in: DIN 8588
+ Zerteilen
+ dividing
+ A Seperating process that involves separating material into distinct parts using techniques like shear cutting, splitting, tearing, or breaking, typically employed in processes where precise control over the cut is less critical.
+ Ein Trennprozess, bei dem das Material durch Techniken wie Scherschneiden, Spalten, Reißen oder Brechen in verschiedene Teile zerlegt wird. Es wird in der Regel bei Prozessen eingesetzt, bei denen eine genaue Kontrolle über den Schnitt weniger wichtig ist.
+ Shearing, Cracking
+
+
+
+
+
+
+
+
+ Bohrmaschine
+ drilling machine
+ A Drilling Machine is a Device that creates holes in a workpiece by means of a rotating drill bit.
+ Eine Bohrmaschine ist ein Gerät, das Löcher in ein Werkstück durch ein sich drehendes Bohrwerkzeug erzeugt.
+
+
+
+
+
+
+
+
+ Dynamisch-mechanische Analyse-Verfahren
+ dynamic mechanical analysis process
+ A Mechanical Property Analyzing Process that measures the mechanical properties of a material as a function of temperature, time, frequency, and stress, determining its viscoelastic behavior.
+ Ein Mechanische Eigenschaften Analyseverfahren, welcher die mechanischen Eigenschaften eines Materials in Abhängigkeit von Temperatur, Zeit, Frequenz und Spannung misst und dessen viskoelastisches Verhalten bestimmt.
+ Dynamic mechanical analysis of a rubber compound to assess its stiffness and damping properties over a range of temperatures.
+ DMA
+
+
+
+
+
+
+
+
+ Dynamischer mechanischer Analysator
+ dynamic mechanical analyzer
+ A device used to measure the mechanical properties of materials as a function of temperature, frequency, and time.
+ Ein Gerät zur Messung der mechanischen Eigenschaften von Materialien als Funktion von Temperatur, Frequenz und Zeit.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ elastic modulus
+ An elastic modulus is a measure of a material's stiffness, defined as the ratio of stress to strain in the elastic deformation region.
+ true
+
+
+
+
+
+
+
+
+ electric potential
+ The electric potential is a thermodynamic quality describing the amount of work needed to move a unit charge from a reference point to a specific location in an electric field.
+ true
+
+
+
+
+
+
+
+
+ electrical conductivity
+ The electrical conductivity is an electrical property describing the ability of a material to conduct electric current, influenced by its structure and composition.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ electrical property
+ An electrical property is a material property that represents the characteristics of a material that determine its behavior under the influence of an electric field, such as conductivity, resistivity, and permittivity.
+ true
+
+
+
+
+
+
+
+
+ Elektrische Eigenschaften Analyseverfahren
+ electrical property analyzing process
+ An assay that determines the electrical properties of materials, including electrical conductivity, resistivity, dielectric strength, and electrical charge storage capabilities.
+ Eine Analyse, die die elektrischen Eigenschaften von Materialien bestimmt, einschließlich elektrischer Leitfähigkeit, Widerstand, dielektrischer Festigkeit und elektrischer Ladungsspeicherkapazitäten.
+
+
+
+
+
+
+
+
+ Elektronenstrahlschweißmaschine
+ electron beam welding machine
+ An Electron Beam Welding Machine is a Welding Device that uses a high-velocity electron beam to fuse materials together, typically in a vacuum environment.
+ Eine Elektronenstrahlschweißmaschine ist ein Schweißgerät, das einen hochgeschwindigen Elektronenstrahl verwendet, um Materialien miteinander zu verschmelzen, typischerweise in einer Vakuumumgebung.
+
+
+
+
+
+
+
+
+ “Electron microscope.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/electron%20microscope. Accessed 24 Nov. 2022.
+ Elektronenmikroskop
+ electron microscope
+ A device that uses a beam of electrons to create high-resolution images of a sample's surface or structure.
+ An electron-optical instrument in which a beam of electrons is used to produce an enlarged image of a minute object.
+ Ein Gerät, das einen Elektronenstrahl verwendet, um hochauflösende Bilder der Oberfläche oder Struktur einer Probe zu erstellen.
+
+
+
+
+
+
+
+
+ Elektronenmikroskopie
+ electron microscopy
+ A Microscopy Process that uses a beam of electrons to create an image of an object, allowing for high-resolution visualization of the material's surface and internal structures.
+ Ein Mikroskopieverfahren, das einen Elektronenstrahl verwendet, um ein Bild eines Objekts zu erzeugen, wodurch eine hochauflösende Visualisierung der Oberfläche und der inneren Strukturen des Materials ermöglicht wird.
+ An example of an electron microscopy process is Scanning Electron Microscopy (SEM), which provides detailed images of the surface topography and composition of a material. Another example is Transmission Electron Microscopy (TEM), which can visualize the internal structure of a sample at atomic resolution.
+
+
+
+
+
+
+
+
+ Elektronenspektroskopie
+ electron spectroscopy
+ A Spectroscopy Process, that studies the energy distribution of electrons emitted from a sample when it is irradiated with electromagnetic radiation or bombarded with particles.
+ Ein Spektroskopie Verfahren, das die Energieverteilung von Elektronen untersucht, die aus einer Probe emittiert werden, wenn diese mit elektromagnetischer Strahlung bestrahlt oder mit Teilchen bombardiert wird.
+ Examples are e.g. Auger electron spectroscopy, electron energy loss spectroscopy, secondary electron spectroscopy.
+
+
+
+
+
+
+
+
+ emission of accoustic wave
+ The emission of (an) accoustic wave is a deformation describing the release of sound waves by a material or system, often due to vibration or stress.
+ true
+
+
+
+
+
+
+
+
+ emission of corpuscular radiation
+ The emission of corpuscular radiation is an emission of radiation describing the release of particle-based radiation, such as alpha or beta particles, from a material or system.
+ true
+
+
+
+
+
+
+
+
+ emission of radiation
+ The emission radiation is a process describing the release of energy in the form of electromagnetic waves or particles from a material.
+ true
+
+
+
+
+
+
+
+
+ emission of wave radiation
+ The emission of wave radioation is an emission of radiation describing the release of energy in the form of waves, such as electromagnetic or acoustic waves, by a material or system.
+ true
+
+
+
+
+
+
+
+
+ Empirische Potential MD Simulation
+ empirical potential molecular dynamics simulation
+ A Simulation Process that uses empirical potentials derived from experimental data to model the behavior of molecular systems.
+ Ein Simulationsprozess, der empirische Potentiale verwendet, die aus experimentellen Daten abgeleitet sind, um das Verhalten molekularer Systeme zu modellieren.
+ Simulating the diffusion of atoms in a crystal using Lennard-Jones potentials.
+
+
+
+
+
+
+
+
+ Umweltschrank
+ environmental chamber
+ A device used to simulate environmental conditions such as temperature, humidity, and pressure to test materials and devices.
+ Ein Gerät zur Simulation von Umweltbedingungen wie Temperatur, Feuchtigkeit und Druck zur Prüfung von Materialien und Geräten.
+
+
+
+
+
+
+
+
+ evolution of damage
+ An evolution of damage is a process representing the progression of material degradation under mechanical, thermal, or chemical stresses.
+ true
+
+
+
+
+
+
+
+
+ “Extensometer.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/extensometer. Accessed 5 Dec. 2022.
+ extensometer
+ A device for measuring minute deformations of test specimens caused by tension, compression, bending, or twisting.
+
+
+
+
+
+
+
+
+ Materialermüdungsprüfmaschine
+ fatigue testing machine
+ A device used to test the fatigue resistance of materials by subjecting them to repeated stress cycles.
+ Ein Gerät zur Prüfung der Ermüdungsresistenz von Materialien, indem diese wiederholten Belastungszyklen ausgesetzt werden.
+
+
+
+
+
+
+
+
+ Ermüdungsprüfverfahren
+ fatigue testing process
+ A Mechanical Property Analyzing Process that assesses a material's ability to withstand cyclic loading, determining its fatigue life and endurance limit.
+ Ein Mechanische Eigenschaften Analyseverfahren, das die Fähigkeit eines Materials bewertet, zyklischen Belastungen standzuhalten, und seine Ermüdungslebensdauer und -grenze bestimmt.
+ Fatigue testing of metal components in bridges to predict their lifespan under repetitive loading conditions.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ferrous alloy
+ A ferrous alloy is a metal describing an alloy containing iron as its principal element, often combined with other elements for enhanced properties.
+ true
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8593-2
+ Offizielle Definition findet man in: DIN 8593-2
+ Füllen
+ filling
+ A joining process that involves the use of a filler material to connect parts.
+ Ein Füge Prozess, bei dem ein Füllmaterial verwendet wird, um Teile zu verbinden.
+ Impregnating, Soaking
+
+
+
+
+
+
+
+
+ Durchflusszytometer
+ flow cytometer
+ A Flow Cytometer is a Device used to measure the physical and chemical characteristics of a population of cells or particles.
+ Ein Durchflusszytometer ist ein Gerät, das verwendet wird, um die physikalischen und chemischen Eigenschaften einer Zell- oder Partikelpopulation zu messen.
+
+
+
+
+
+
+
+
+ Kraftmessfunktion
+ force measuring function
+ A subfunction of measuring performed to determine the force applied to or by an object.
+ Eine Unterfunktion des Messens, die durchgeführt wird, um die auf ein Objekt ausgeübte oder von ihm ausgeübte Kraft zu bestimmen.
+ true
+
+
+
+
+
+
+
+
+ formation of notch or scratch
+ The formation of (a) notch or (a) scratch is a process that describes the creation of small surface imperfections, which can influence a material's mechanical properties.
+ true
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 4, 3.1.2 Umformen - Definition
+ Offizielle Definition findet man in: DIN 8580:2003-9 Fertigungsverfahren, Seite 4, 3.1.2 Umformen - Definition
+ Umformen
+ forming
+ Shaping
+ A manufacturing process that changes the shape of a solid body through plastic deformation while retaining both mass and structural integrity.
+ Ein Herstellungsprozess, der durch plastische Umformung die Gestalt eines festen Körpers verändert, wobei sowohl die Masse als auch die strukturelle Integrität erhalten bleiben.
+ Tension Forming, Compression Forming
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8586
+ Offizielle Definition findet man in: DIN 8586
+ Biegeumformen
+ forming by bending
+ A forming process that involves bending materials, typically used in manipulating sheets, tubes, or profiles into curved shapes or angles, common in metalworking and fabrication industries.
+ Ein Umform Prozess, der das Biegen von Materialien beinhaltet und typischerweise bei der Bearbeitung von Blechen, Rohren oder Profilen zu gekrümmten Formen oder Winkeln eingesetzt wird, wie es in der Metallverarbeitung und in der verarbeitenden Industrie üblich ist.
+ Bending With Linear Die Movement, Bending With Rotary Die Movement
+
+
+
+
+
+
+
+
+ Formmaschine
+ forming machine
+ A device used for shaping materials under various conditions, including tensile, compressive, and shearing.
+ Ein Gerät zur Formgebung von Materialien unter verschiedenen Bedingungen, einschließlich Zug-, Druck- und Scherbedingungen.
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8584-1
+ Offizielle Definition findet man in: DIN 8584-1
+ Zugdruckumformen
+ forming under compressive and tensile conditions
+ A forming process that involves applying both tensile and compressive forces to a material.
+ Ein Umform Prozess, bei dem sowohl Zug- als auch Druckkräfte auf ein Material ausgeübt werden.
+ Stripping, Deep Drawing, Spinning
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8583-1
+ Offizielle Definition findet man in: DIN 8583-1
+ Druckumformen
+ forming under compressive conditions
+ A forming process that involves deforming materials under compressive forces, commonly used in techniques like rolling and die forming where metal is shaped by applying pressure.
+ Ein Umform Prozess, bei dem Materialien unter Druck verformt werden. Er wird üblicherweise bei Techniken wie Walzen und Gesenkformen eingesetzt, bei denen Metall durch Druck in Form gebracht wird.
+ Rolling, Coining
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8587
+ Offizielle Definition findet man in: DIN 8587
+ Schubumformen
+ forming under shearing conditions
+ A forming process that involves displacement or twisting materials to achieve deformation, often used in operations where materials are shaped by applying torsional forces.
+ Ein Umform Prozess, bei dem Werkstoffe durch Verschieben oder Verdrehen verformt werden. Es wird häufig bei Verfahren verwendet, bei denen Werkstoffe durch Anwendung von Torsionskräften geformt werden.
+ Twisting, Displacement
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8585-1
+ Offizielle Definition findet man in: DIN 8585-1
+ Zugumformen
+ forming under tensile conditions
+ A forming process that involves stretching or elongating materials to achieve desired dimensions or shapes.
+ Ein Umform Prozess, bei dem Materialien gestreckt oder gedehnt werden, um die gewünschten Abmessungen oder Formen zu erreichen.
+ Expanding, Stretch Forming
+
+
+
+
+
+
+
+
+ Bruchzähigkeitsprüfverfahren
+ fracture toughness testing process
+ A Mechanical Property Analyzing Process that assesses a material's ability to resist crack propagation, determining its fracture toughness.
+ Ein Mechanische Eigenschaften Analyseverfahren, das die Fähigkeit eines Materials bewertet, der Rissausbreitung zu widerstehen, und seine Bruchzähigkeit bestimmt.
+ Measuring the fracture toughness of ceramic materials used in aerospace components to ensure reliability under stress.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Classified by the role in a system.
+ functional material
+ A Functional Material F is an Engineered Material which has the disposition to be used for an Object O (O consists of F) and O's function is other/more than mechanical load carrying.
+ true
+
+
+
+
+
+
+
+
+ “Furnace.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/furnace. Accessed 13 Jan. 2023.
+ Ofen
+ furnace
+ An enclosed structure in which heat is produced (as for heating a house or for reducing ore).
+ Eine geschlossene Struktur, in der Wärme erzeugt wird (z. B. zum Heizen eines Hauses oder zum Einschmelzen von Erz).
+
+
+
+
+
+
+
+
+ Gaschromatographie Verfahren
+ gas chromatography process
+ A Chromatography Process that separates and analyzes compounds that can be vaporized without decomposition, using a gas as the mobile phase and a solid or liquid stationary phase.
+ Ein Chromatographieverfahren, das Verbindungen trennt und analysiert, die ohne Zersetzung verdampft werden können, indem ein Gas als mobile Phase und eine feste oder flüssige stationäre Phase verwendet wird.
+ Gas chromatography is used to analyze the composition of volatile organic compounds in a polymer matrix.
+
+
+
+
+
+
+
+
+ Gaschromatographiesystem
+ gas chromatography system
+ A device used for separating and analyzing compounds in a gas mixture using a chromatographic column.
+ Ein Gerät zur Trennung und Analyse von Verbindungen in einem Gasgemisch unter Verwendung einer chromatographischen Säule.
+
+
+
+
+
+
+
+
+ Gel-Permeations-Chromatographie Verfahren
+ gel permeation chromatography process
+ A Chromatography Process that separates molecules based on their size by passing the sample through a porous gel matrix, also known as size exclusion chromatography.
+ Ein Chromatographieverfahren, das Moleküle basierend auf ihrer Größe trennt, indem die Probe durch eine poröse Gelmatrix geleitet wird, auch bekannt als Größenausschlusschromatographie.
+ Gel permeation chromatography is used to determine the molecular weight distribution of a polymer sample.
+
+
+
+
+
+
+
+
+ Gelpermeations-Chromatographiesystem
+ gel permeation chromatography system
+ A device used for separating and analyzing polymers based on their molecular size using gel permeation chromatography.
+ Ein Gerät zur Trennung und Analyse von Polymeren basierend auf ihrer Molekülgröße durch Gelpermeationschromatographie.
+
+
+
+
+
+
+
+
+ Generatives Deep Learning
+ generative deep learning
+ A Deep Learning process that involves creating models capable of generating new data instances that resemble the training data.
+ Ein Deep Learning-Prozess, der Modelle erstellt, die in der Lage sind, neue Dateninstanzen zu erzeugen, die den Trainingsdaten ähneln.
+ Using generative adversarial networks to design new molecular structures with desired properties, such as improved conductivity or strength.
+
+
+
+
+
+
+
+
+ Classified by morphology.
+ It is often composed of silica-based compounds.
+ glass
+ A glass is an engineered material present as an amorphous solid typically formed by rapid cooling of a melt.
+ true
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8593-8
+ Offizielle Definition findet man in: DIN 8593-8
+ Kleben
+ glueing
+ Bonding
+ A joining process that involves using adhesives to bond materials together, suitable for a wide range of materials including metals, plastics, and composites, and used in various applications from automotive to aerospace.
+ Ein Füge Prozess, bei dem Klebstoffe verwendet werden, um Materialien miteinander zu verbinden. Es eignet sich für eine Vielzahl von Materialien, darunter Metalle, Kunststoffe und Verbundstoffe, und wird in verschiedenen Anwendungen von der Automobilindustrie bis zur Luft- und Raumfahrt eingesetzt.
+ Bonding With Physically Hardening Adhesives, Bonding With Chemically Hardening Adhesives (Reaction Bonding)
+
+
+
+
+
+
+
+
+ Korn
+ crystal grain
+ A crystal grain is a crystal that is continuant part of a polycrystal.
+ true
+
+
+
+
+
+
+
+
+ Gravimetrischer Analysator
+ gravimetric analyzer
+ A device used to measure the mass of a sample to determine its composition or concentration.
+ Ein Gerät zur Messung der Masse einer Probe zur Bestimmung ihrer Zusammensetzung oder Konzentration.
+
+
+
+
+
+
+
+
+ Gravimetrisches Analyseverfahren
+ gravimetrical analyzing process
+ A Structural Property Analyzing Process that measures the quantity of a substance by its mass, often involving the precipitation, filtration, drying, and weighing of the substance.
+ Ein Struktur Eigenschaften Analyseverfahren, das die Menge einer Substanz durch ihre Masse misst und dabei häufig die Fällung, Filtration, Trocknung und Wägung der Substanz umfasst.
+ An example of a Gravimetrical Analyzing Process is the determination of sulfate content in a sample by precipitating it as barium sulfate, filtering, drying, and weighing the precipitate.
+
+
+
+
+
+
+
+
+ Schleifmaschine
+ grinding machine
+ A Grinding Machine is a Forming Machine that uses an abrasive wheel to remove material from the surface of a workpiece, typically for finishing or precision work.
+ Eine Schleifmaschine ist eine Formmaschine, die ein Schleifrad verwendet, um Material von der Oberfläche eines Werkstücks zu entfernen, typischerweise für Feinarbeiten oder Präzisionsarbeiten.
+
+
+
+
+
+
+
+
+ https://www.merriam-webster.com/dictionary/grips
+ Halterungsklemmen
+ grips
+ Diese Gerät beschreibt ein Bauelement / Teil, mit dem etwas, normalerweise ein materielles Objekt, fest gegriffen oder eingespannt wird. Typischerweise sind Halterungen, Klemm- bzw. Spannsysteme Teil eines Befestigungssystems (Prozessknoten), das sich auf ein Prüfsystem bezieht.
+ This device is a part by which something, usually a tangible object, is grasped. Typically, grips are part of a mounting system (processing node) referring to a testing system.
+
+
+
+
+
+
+
+
+ Bügelsäge
+ hacksaw
+ A hacksaw is a hand saw designed for cutting various materials, particularly metal. It consists of a fine-toothed blade, tensioned in a frame, and a handle. The frame of a hacksaw is typically C-shaped, allowing the blade to be easily replaced when necessary. Hacksaws are commonly used in metalworking and other applications where a controlled and precise cut through metal is required. The fine teeth on the hacksaw blade enable it to cut through metal with efficiency, and the tensioned frame provides stability during the cutting process. Hacksaws are versatile tools and are often used for tasks such as cutting pipes, rods, and metal sheets. They are available in different sizes and tooth configurations to suit various cutting needs.
+ Eine Bügelsäge ist eine Art Handsäge zum Schneiden verschiedener Materialien, insbesondere Metall. Sie besteht aus einem fein gezahnten Blatt, das in einem Rahmen gespannt ist, und einem Griff. Der Rahmen einer Bügelsäge ist in der Regel C-förmig, so dass das Blatt bei Bedarf leicht ausgewechselt werden kann. Bügelsägen werden häufig bei der Metallbearbeitung und anderen Anwendungen eingesetzt, bei denen ein kontrollierter und präziser Schnitt durch Metall erforderlich ist. Die feinen Zähne des Sägeblatts ermöglichen ein effizientes Schneiden durch Metall, und der gespannte Rahmen sorgt für Stabilität während des Schneidens. Bügelsägen sind vielseitige Werkzeuge und werden häufig für Aufgaben wie das Schneiden von Rohren, Stangen und Blechen verwendet. Sie sind in verschiedenen Größen und Zahnkonfigurationen erhältlich, um verschiedenen Schneidanforderungen gerecht zu werden.
+
+
+
+
+
+
+
+
+ half-life
+ The half-life is a process attribute describing the time it takes for a material entity or a quality of a material entity to reduce its initial value to a half
+ radioactive decay, material degradation
+ true
+
+
+
+
+
+
+
+
+ hand holdable disposition
+ in der Hand haltbar
+ Disposion eines Objektes, das per Hand gehalten, betrieben oder verwendet werden kann.
+ Disposition of an object that can be hold, operated or used manually.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Handkreissäge
+ hand circular saw
+ A handheld circular saw is a portable circular saw that is guided by hand. It is well suited for precise cuts in construction and woodwork.
+ Die Handkreissäge is eine tragbare Kreissäge, die von Hand geführt wird. Sie eignet sich gut für präzise Schnitte bei Bau- und Holzarbeiten.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Handsäge
+ handsaw
+ Die Handsäge ist eine manuell betriebene Säge, die dazu dient, verschiedene Materialien, insbesondere Holz, zu schneiden. Diese Art von Säge besteht typischerweise aus einem langen, dünnen Blatt mit Zähnen, das an einem Griff befestigt ist. Der Griff ermöglicht es dem Benutzer, die Säge von Hand zu führen und den Schnitt durch Vor- und Zurückbewegen des Blatts zu erzeugen. Handsägen sind in verschiedenen Ausführungen erhältlich, je nach der beabsichtigten Anwendung. Es gibt beispielsweise Handsägen für Holz, Metall oder Kunststoff, und sie können unterschiedliche Zahngeometrien und Blattlängen aufweisen, um optimal auf verschiedene Schneidanforderungen abgestimmt zu sein.
+ The handsaw is a manually operated saw that is used to cut various materials, especially wood. This type of saw typically consists of a long, thin blade with teeth attached to a handle. The handle allows the user to guide the saw by hand and make the cut by moving the blade back and forth. Handsaws are available in different designs, depending on the intended application. For example, there are handsaws for wood, metal or plastic, and they can have different tooth geometries and blade lengths to best suit different cutting requirements.
+
+
+
+
+
+
+
+
+ Verfestigen Durch Umformen
+ hardening by forming
+ A Changing Properties Of Material process, that involves altering material properties by mechanical deformation.
+ Ein Stoffeigenschaft Ändern Prozess, der die Eigenschaften des Materials durch mechanische Verformung verändert.
+ Sheet Metal Rolling to Achieve Higher Strength.
+
+
+
+
+
+
+
+
+ hardness
+ The hardness is a mechanical property used as a measure of a material's resistance to localized plastic deformation, often tested by indentation or scratch methods.
+ true
+
+
+
+
+
+
+
+
+ Härteprüfgerät
+ hardness tester
+ A Hardness Tester is a Hardness Testing Machine that measures the resistance of a material to deformation, typically by indentation.
+ Ein Härteprüfgerät ist eine Härteprüfmaschine, die den Widerstand eines Materials gegen Verformung, typischerweise durch Eindrücken, misst.
+
+
+
+
+
+
+
+
+ Härteprüfmaschine
+ hardness testing machine
+ A device used to measure the hardness of materials through various testing methods such as indentation or scratch tests.
+ Ein Gerät zur Messung der Härte von Materialien durch verschiedene Prüfmethoden wie Eindrück- oder Kratzversuche.
+
+
+
+
+
+
+
+
+ Härteprüfverfahren
+ hardness testing process
+ A Mechanical Property Analyzing Process that measures a material's resistance to deformation, typically using indentation methods to determine hardness.
+ Ein Mechanische Eigenschaften Analyseverfahren, das den Widerstand eines Materials gegen Verformung misst und typischerweise Eindringverfahren verwendet, um die Härte zu bestimmen.
+ Hardness testing of steel using the Rockwell method to classify its grade for industrial applications.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ heat capacity
+ The heat capacity is a thermal property describing the amount of heat energy required to raise the temperature of a material by a given amount.
+ true
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN EN ISO 4885:2018 Wärmebehandlung Page 21, 3.108 Wärmebehandlung - Definition
+ Offizielle Definition findet man in: DIN EN ISO 4885:2018 Wärmebehandlung Seite 21, 3.108 Wärmebehandlung - Definition
+ Wärmebehandlung
+ heat treatment
+ Wärmebehandeln
+ A Changing Properties of Materials process in which a solid (ferrous) product is fully or partially exposed to specific time-temperature sequences through a series of process steps with the aim of modifying its properties and/or its internal structure.
+ Ein Stoffeigenschaft Ändern Prozess, bei dem durch eine Reihe von Verfahrensschritten ein festes (Eisen-)Produkt ganz oder teilweise bestimmten Zeit-Temperatur-Abfolgen ausgesetzt wird, mit dem Ziel, seine Eigenschaften und/oder seine innere Struktur zu modifizieren.
+ Annealing, Ageing, Hardening
+
+
+
+
+
+
+
+
+ Wärmebehandlungsgerät
+ heat treatment device
+ A device used for treating materials through heating and cooling processes to alter their properties.
+ Ein Gerät zur Behandlung von Materialien durch Erwärmungs- und Abkühlungsprozesse zur Veränderung ihrer Eigenschaften.
+
+
+
+
+
+
+
+
+ Wärmebehandlungsfunktion
+ heat treatment function
+ A function performed to alter the properties of materials through controlled heating and cooling processes.
+ Eine Funktion, die durchgeführt wird, um die Eigenschaften von Materialien durch kontrollierte Wärme- und Abkühlungsprozesse zu verändern.
+ true
+
+
+
+
+
+
+
+
+ Hochleistungsflüssigkeitschromatographie Verfahren
+ high-performance liquid chromatography process
+ A Chromatography Process that separates, identifies, and quantifies components in a liquid sample using high pressure to pass the sample through a column packed with a stationary phase.
+ Ein Chromatographieverfahren, das Komponenten in einer flüssigen Probe trennt, identifiziert und quantifiziert, indem hoher Druck verwendet wird, um die Probe durch eine mit einer stationären Phase gefüllte Säule zu leiten.
+ High-performance liquid chromatography is used to analyze the purity and concentration of pharmaceutical compounds in a formulation.
+
+
+
+
+
+
+
+
+ Hochdurchsatzsimulation
+ high throughput simulation
+ A Simulation Process that performs a large number of simulations automatically to explore a wide range of conditions.
+ Ein Simulationsprozess, der eine große Anzahl von Simulationen automatisch durchführt, um eine breite Palette von Bedingungen zu erkunden.
+ Screening thousands of potential material compounds to identify those with optimal properties for battery applications.
+
+
+
+
+
+
+
+
+ Hochleistungsflüssigkeitschromatographiesystem
+ high performance liquid chromatography system
+ A device used for separating, identifying, and quantifying compounds in liquid samples through high performance liquid chromatography.
+ Ein Gerät zur Trennung, Identifizierung und Quantifizierung von Verbindungen in Flüssigkeitsproben durch Hochleistungsflüssigkeitschromatographie.
+
+
+
+
+
+
+
+
+ Hochtemperatur-Gaschromatographiesystem
+ high temperature gas chromatography system
+ A device used for separating and analyzing compounds in a gas mixture at high temperatures using a chromatographic column.
+ Ein Gerät zur Trennung und Analyse von Verbindungen in einem Gasgemisch bei hohen Temperaturen unter Verwendung einer chromatographischen Säule.
+
+
+
+
+
+
+
+
+ hybrid simulation
+ a simulation approach that combines physical and computational models to analyze material behavior.
+ true
+
+
+
+
+
+
+
+
+ Schlagprüfverfahren
+ impact testing process
+ A Mechanical Property Analyzing Process that determines a material's ability to absorb energy and withstand impact forces, typically using pendulum or drop-weight testers.
+ Ein Mechanische Eigenschaften Analyseverfahren, das die Fähigkeit eines Materials bestimmt, Energie zu absorbieren und Schlagkräfte zu widerstehen, typischerweise unter Verwendung von Pendel- oder Fallgewichtsprüfgeräten.
+ Impact testing of helmet materials to ensure they provide adequate protection against head injuries.
+
+
+
+
+
+
+
+
+ indentation hardness
+ The indentation hardness is a hardness representing the resistance of a material to deformation from an indenter, used to assess surface hardness.
+ true
+
+
+
+
+
+
+
+
+
+ index of refraction
+ The index of refraction is an optical property representing a measure of how much light bends when passing through a material, affecting its optical properties.
+ true
+
+
+
+
+
+
+
+
+ Induktionsofen
+ induction furnace
+ An Induction Furnace is a Furnace that heats materials using electromagnetic induction, generating heat directly within the material.
+ Ein Induktionsofen ist ein Ofen, der Materialien durch elektromagnetische Induktion erhitzt, wobei die Wärme direkt im Material erzeugt wird.
+
+
+
+
+
+
+
+
+ initiator role
+ An initiator role is a role describing the position or function responsible for starting or catalyzing a process, often related to material testing or experiments.
+
+
+
+
+
+
+
+
+ Spritzgießmaschine
+ injection molding machine
+ An Injection Molding Machine is a Device used to produce plastic parts by injecting molten plastic into molds under high pressure.
+ Eine Spritzgießmaschine ist ein Gerät, das verwendet wird, um Kunststoffteile durch Einspritzen von geschmolzenem Kunststoff in Formen unter hohem Druck herzustellen.
+
+
+
+
+
+
+
+
+ Ionenaustauschchromatographie Verfahren
+ ion exchange chromatography process
+ A Chromatography Process that separates ions and polar molecules based on their charge by using an ion exchange resin to attract and retain the ions from the sample.
+ Ein Chromatographieverfahren, das Ionen und polare Moleküle basierend auf ihrer Ladung trennt, indem ein Ionenaustauscherharz verwendet wird, um die Ionen aus der Probe anzuziehen und zu halten.
+ Ion exchange chromatography is used to purify and separate proteins in a solution for material characterization.
+
+
+
+
+
+
+
+
+ Ionenaustausch-Chromatographiesystem
+ ion exchange chromatography system
+ A device used for separating ions in a sample using ion exchange resins in a chromatographic column.
+ Ein Gerät zur Trennung von Ionen in einer Probe unter Verwendung von Ionenaustauschharzen in einer chromatographischen Säule.
+
+
+
+
+
+
+
+
+ Ionenmikroskop
+ ion microscope
+ A device that uses ions to create high-resolution images of the surface or structure of a sample.
+ Ein Gerät, das Ionen verwendet, um hochauflösende Bilder der Oberfläche oder Struktur einer Probe zu erstellen.
+
+
+
+
+
+
+
+
+ Ionenmikroskopie
+ ion microscopy
+ A Microscopy Process that uses a focused beam of ions to image a specimen, providing high-resolution images and compositional information, often used for surface analysis and depth profiling.
+ Ein Mikroskopieverfahren, das einen fokussierten Ionenstrahl verwendet, um ein Bild einer Probe zu erzeugen, hochauflösende Bilder und Zusammensetzungsinformationen liefert und häufig für Oberflächenanalysen und Tiefenprofilierung verwendet wird.
+ An example of an ion microscopy process is Helium Ion Microscopy (HIM), which offers high-resolution imaging with minimal sample damage, or Field Ion Microscopy, which provides atomic-level resolution imaging by using a strong electric field to ionize atoms at the surface of a sharp tip, or Focused Ion Beam Scanning Electron Microscopy (FIB-SEM), which allows for high-precision material removal and imaging by using a focused beam of ions to mill the sample surface while simultaneously capturing detailed SEM images.
+
+
+
+
+
+
+
+
+ Ionen-Spektrometer
+ ion spectrometer
+ A device used for analyzing ions in a sample to determine their composition and concentration.
+ Ein Gerät zur Analyse von Ionen in einer Probe zur Bestimmung ihrer Zusammensetzung und Konzentration.
+
+
+
+
+
+
+
+
+ Ionenspektroskopie
+ ion spectroscopy
+ A Spectroscopy Process, that analyzes the properties and behavior of ions in a sample by measuring their interaction with electromagnetic fields or other ions.
+ Ein Spektroskopie Verfahren, das die Eigenschaften und das Verhalten von Ionen in einer Probe analysiert, indem es ihre Wechselwirkung mit elektromagnetischen Feldern oder anderen Ionen misst.
+ Examples are e.g. ion mobility spectroscopy, ion-beam spectroscopy.
+
+
+
+
+
+
+
+
+ Bestrahlen
+ irradiating
+ A Changing Properties Of Material process that employs radiation exposure, to alter and enhance a material's physical or chemical attributes.
+ Ein Stoffeigenschaft Ändern Prozess, bei dem die physikalischen oder chemischen Eigenschaften eines Materials durch Bestrahlung verändert und verbessert werden.
+ Polymer Curing
+
+
+
+
+
+
+
+
+ irradiation process
+ An irradiation process is a process in which a radiation source (bearing a stimulus role) emits radiation towards a material entity (bearing the target role)
+
+
+
+
+
+
+
+
+ Irradiationsgerät
+ irradiation device
+ A device used for exposing materials to radiation to induce changes in their properties.
+ Ein Gerät zum Aussetzen von Materialien gegenüber Strahlung zur Induktion von Veränderungen ihrer Eigenschaften.
+
+
+
+
+
+
+
+
+ Irradiationsfunktion
+ irradiation function
+ A function performed to expose materials to radiation for altering their properties.
+ Eine Funktion, die durchgeführt wird, um Materialien Strahlung auszusetzen, um deren Eigenschaften zu verändern.
+ true
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 5, 3.1.4 Fügen - Definition & DIN 8593-0
+ Offizielle Definition findet man in: DIN 8580:2003-9 Fertigungsverfahren, Seite 5, 3.1.4 Fügen - Definition & DIN 8593-0
+ Fügen
+ joining
+ A manufacturing process that enables the continuous bonding or joining of two or more workpieces with a specific, fixed shape or of such workpieces with a shapeless material, whereby the cohesion is created at specific points and reinforced overall.
+ Ein Herstellungsprozess, der das dauerhafte Verbinden oder das Zusammenfügen von zwei oder mehr Werkstücken mit spezifischer, fester Form oder von solchen Werkstücken mit einem formlosen Material ermöglicht, wobei der Zusammenhalt an spezifischen Stellen erzeugt und insgesamt verstärkt wird.
+ Joining By Welding, Assembling
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8593-4
+ Offizielle Definition findet man in: DIN 8593-4
+ Fügen durch Urformen
+ joining by primary shaping
+ Joining By Master Forming
+ A joining process that involves creating a part or component in its final shape from a liquid or semi-liquid material.
+ Ein Fügeverfahren, bei dem ein Teil oder eine Komponente aus einem flüssigen oder halbflüssigen Material in seine endgültige Form gebracht wird.
+ Pouring, Embedding, Encasing
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8593-5
+ Offizielle Definition findet man in: DIN 8593-5
+ Fügen Durch Umformen
+ joining by shaping
+ Joining By Forming
+ A joining process that involves deforming one or more components to achieve a mechanical interlock or fit, commonly used for press-fit joints, crimping, or swaging.
+ Ein Füge Prozess, bei dem eine oder mehrere Komponenten verformt werden, um eine mechanische Verriegelung oder Passung zu erreichen, die üblicherweise für Pressverbindungen, Crimpen oder Schmieden verwendet wird.
+ Joining By Riveting, Joining By Forming Wire-Shaped Bodies
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8593-7
+ Offizielle Definition findet man in: DIN 8593-7
+ Fügen Durch Löten
+ joining by soldering
+ A joining process that involves using a filler material (solder) to join metal parts by melting the solder between them without melting the base materials, a technique widely used in electronics and plumbing. This process creates a strong, conductive bond suitable for various applications.
+ Ein Füge Prozess, bei dem ein Füllmaterial (Lot) verwendet wird, um Metallteile zu verbinden, indem das Lot zwischen ihnen geschmolzen wird, ohne die Grundmaterialien zu schmelzen. Diese Technik wird häufig in der Elektronik und im Sanitärbereich eingesetzt. Durch dieses Verfahren entsteht eine starke, leitfähige Verbindung, die für verschiedene Anwendungen geeignet ist.
+ Joint Soft Soldering, Joint Hard Soldering
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8593-6
+ Offizielle Definition findet man in: DIN 8593-6
+ Fügen Durch Schweißen
+ joining by welding
+ A joining process that involves fusing two or more metal parts by applying heat, pressure, or both, often with the addition of a filler material. This method creates a permanent and strong bond, essential in manufacturing and construction for durable structures and components.
+ Ein Füge Prozess, bei dem zwei oder mehr Metallteile durch Anwendung von Hitze, Druck oder beidem verschmolzen werden, oft unter Zugabe eines Füllstoffs. Durch dieses Verfahren entsteht eine dauerhafte und starke Verbindung, die in der Fertigung und im Bauwesen für dauerhafte Strukturen und Komponenten unerlässlich ist.
+ Pressure Welding, Fusion Welding
+
+
+
+
+
+
+
+
+ Verbindungsgerät
+ joining device
+ A general device used for joining materials through various methods, including welding and soldering.
+ Ein allgemeines Gerät zum Verbinden von Materialien durch verschiedene Methoden, einschließlich Schweißen und Löten.
+
+
+
+
+
+
+
+
+ Verbindungsfunktion
+ joining function
+ A function performed to connect or bond materials together through various methods such as welding or soldering.
+ Eine Funktion, die ausgeführt wird, um Materialien durch verschiedene Methoden wie Schweißen oder Löten zu verbinden.
+ true
+
+
+
+
+
+
+
+
+ Messer
+ knife
+ A tool with a sharp edge, typically made of metal, used for cutting food, materials, or other substances.
+ Ein Werkzeug mit einer scharfen Schneide, üblicherweise aus Metall, das zum Schneiden von Lebensmitteln, Materialien oder anderen Substanzen verwendet wird.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ “Laboratory.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/laboratory. Accessed 24 Nov. 2022.
+ Labor
+ laboratory
+ A place equipped for experimental study in a science or for testing and analysis.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ issue: https://github.com/materialdigital/core-ontology/issues/101
+
+
+
+
+
+
+
+
+ laboratory role
+ A laboratory role is a role specifying the functions or activities specific to experimental and analytical tasks performed in a laboratory setting.
+
+
+
+
+
+
+
+
+ Laserspektroskopie
+ laser spectroscopy
+ A Spectroscopy Process, that uses laser light to probe the properties of materials.
+ Ein Spektroskopie Verfahren, das Laserlicht verwendet, um die Eigenschaften von Materialien zu untersuchen.
+ Examples are e.g. laser absorption spectroscopy, laser emission spectroscopy, ultra-fast laser spectroscopy.
+
+
+
+
+
+
+
+
+ Laserschneider
+ lasercutter
+ A device that utilizes laser beams to create precise cuts in various materials such as wood, plastic, metal, etc.
+ Ein Gerät, das Laserstrahlen verwendet, um präzise Schnitte in verschiedenen Materialien wie Holz, Kunststoff, Metall usw. zu erzeugen.
+
+
+
+
+
+
+
+
+ Drehmaschine
+ lathe
+ A Lathe is a Device that rotates a workpiece on its axis to perform various operations such as cutting, sanding, drilling, or deformation.
+ Eine Drehmaschine ist ein Gerät, das ein Werkstück um seine Achse dreht, um verschiedene Operationen wie Schneiden, Schleifen, Bohren oder Verformung durchzuführen.
+
+
+
+
+
+
+
+
+ Lichtmikroskopie
+ light microscopy
+ An Optical Microscopy process that uses visible light and lenses to magnify and visualize specimens, enabling the study of the microstructure and morphology of materials.
+ Ein optisches Mikroskopieverfahren, das sichtbares Licht und Linsen verwendet, um Proben zu vergrößern und zu visualisieren, wodurch die Untersuchung der Mikrostruktur und Morphologie von Materialien ermöglicht wird.
+ An example of a light microscopy process is Confocal Laser Scanning Microscopy, which uses laser light to scan specimens and create high-resolution, three-dimensional images. Another example is Fluorescence Microscopy, which uses fluorescent dyes to label specific components of the specimen, allowing for the visualization of structures that are otherwise difficult to see. A third example is Polarized Light Microscopy, which utilizes polarized light to enhance contrast in samples with birefringent properties, such as crystalline materials.
+
+
+
+
+
+
+
+
+ https://en.wikipedia.org/wiki/Load_cell
+ Kraftmessdose
+ load cell
+ A load cell converts a force such as tension, compression, pressure, or torque into an electrical signal that can be measured and standardized. It is a force transducer. As the force applied to the load cell increases, the electrical signal changes proportionally. The most common types of load cell are pneumatic, hydraulic, and strain gauges.
+
+
+
+
+
+
+
+
+ Maschinelles Lernen
+ machine learning
+ A Simulation Process that uses algorithms to enable computers to learn from and make predictions based on data.
+ Ein Simulationsprozess, der Algorithmen verwendet, um Computern das Lernen aus Daten und das Treffen von Vorhersagen zu ermöglichen.
+ Predicting the mechanical properties of composite materials based on their composition.
+ ML
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8589-0
+ Offizielle Definition findet man in: DIN 8589-0
+ Spanen Mit Geometrisch Bestimmten Schneiden
+ machining geometrically defined
+ A Seperating process that involves removing material with a tool that has a defined shape and sharp edges, such as in sawing and drilling operations.
+ Ein Trennprozess, bei dem Material mit einem Werkzeug mit definierter Form und scharfen Kanten entfernt wird, wie z. B. beim Sägen und Bohren.
+ Drilling, Turning
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8589-0
+ Offizielle Definition findet man in: DIN 8589-0
+ Spanen Mit Geometrisch Unbestimmten Schneiden
+ machining geometrically undefined
+ A Seperating process that involves removing material using tools with undefined cutting edges, such as grinding or abrasive machining, where the exact shape of the cutting part isn't clearly defined.
+ Ein Trennprozess, bei dem Material mit Werkzeugen mit undefinierten Schneiden abgetragen wird, wie z. B. beim Schleifen oder bei der abrasiven Bearbeitung, bei der die genaue Form des zu schneidenden Teils nicht klar definiert ist.
+ Grinding, Blasting
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ magnetic property
+ A magnetic property is a material property representing characteristics that describe how a material responds to magnetic fields, such as permeability and coercivity.
+ true
+
+
+
+
+
+
+
+
+ https://industrylist.com/glossar/stoffeigenschaften-aendern/magnetisieren/
+ Magnetisieren
+ magnetizing
+ A Changing Properties Of Material process in which ferromagnetic materials are exposed to an external magnetic field, causing the material to take on magnetic properties.
+ Ein Stoffeigenschaft Ändern Prozess, bei dem ferromagnetische Stoffe einem äußeren Magnetfeld ausgesetzt werden wodurch der Stoff magnetische Eigenschaften übernimmt.
+ Static Magnetization, Pulse Magnetization.
+
+
+
+
+
+
+
+
+ Magnetisierungsgerät
+ magnetizing device
+ A device used for inducing a magnetic field in materials to alter their magnetic properties.
+ Ein Gerät zur Induktion eines Magnetfelds in Materialien, um deren magnetische Eigenschaften zu verändern.
+
+
+
+
+
+
+
+
+ Magnetisierungsfunktion
+ magnetizing function
+ A function performed to induce a magnetic field in materials to modify their magnetic properties.
+ Eine Funktion, die durchgeführt wird, um ein Magnetfeld in Materialien zu induzieren, um deren magnetische Eigenschaften zu verändern.
+ true
+
+
+
+
+
+
+
+
+ Magnetische Elektrische Eigenschaften Analyseverfahren
+ magneto electrical property analyzing process
+ An assay that investigates the magnetic and electrical properties of materials, including conductivity, resistivity, permittivity, permeability, and magnetization.
+ Eine Analyse, die die magnetischen und elektrischen Eigenschaften von Materialien untersucht, einschließlich Leitfähigkeit, Widerstand, Permittivität, Permeabilität und Magnetisierung.
+
+
+
+
+
+
+
+
+ Fertigungsfunktion
+ manufacturing function
+ A function that inheres in devices or processes that are used to produce or assemble goods or components.
+ Eine Funktion, die in Geräten oder Prozessen besteht, die zur Herstellung oder Montage von Waren oder Komponenten verwendet werden.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Herstellungsprozess
+ manufacturing process
+ A planned process that is driven by the primary intent to transform objects
+A manufacturing process is always a transformative process.
+ Ein geplannter Prozess, der von der primären Absicht angetrieben wird, Objekte zu transformieren. Ein Herstellungsprozess ist immer ein Transformationsprozess.
+ true
+
+
+
+
+
+
+
+
+ map
+ A map is a 2-D information content entity describing a representation of spatial data or relationships, often used in material science for visualizing properties or distributions.
+ true
+
+
+
+
+
+
+
+
+ Massenspektrometer
+ mass spectrometer
+ A device used to measure the mass-to-charge ratio of ions to identify and quantify compounds in a sample.
+ Ein Gerät zur Messung des Massen-zu-Ladung-Verhältnisses von Ionen zur Identifizierung und Quantifizierung von Verbindungen in einer Probe.
+
+
+
+
+
+
+
+
+ Massenspektroskopie
+ mass spectrometry
+ A Spectroscopy Process, that measures the mass-to-charge ratio of ions to identify and quantify molecules in a sample.
+ Ein Spektroskopie Verfahren, das das Masse-zu-Ladung-Verhältnis von Ionen misst, um Moleküle in einer Probe zu identifizieren und zu quantifizieren.
+ Examples are e.g. time-of-flight mass spectroscopy, particle beam mass spectrometry.
+
+
+
+
+
+
+
+
+ matrix role
+ Matrix is the role of a PortionOfConnectedMatter that implies to host the Filler.
+ true
+
+
+
+
+
+
+
+
+ Messfunktion
+ measuring function
+ A function performed to determine the magnitude, quantity, or extent of a physical property or condition.
+ Eine Funktion, die durchgeführt wird, um das Ausmaß, die Menge oder den Zustand einer physikalischen Eigenschaft zu bestimmen.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ mechanical property
+ A mechanical property is a material property that inheres in a material M when an object O_target that consists of M is stimulated in a process through an interaction with an object O_stimulus and M changes its stress/strain/..(mechanical?) SDCs.
+
+TODO: Check general class axiom and defintion altogether !!!
+ true
+
+
+
+
+
+
+
+
+ Mechanische Eigenschaften Analyseverfahren
+ mechanical property analyzing process
+ An assay that evaluates the mechanical characteristics of materials, such as strength, hardness, elasticity, and tensile properties, often through tests that measure response to forces and loads.
+ Eine Analyse, die die mechanischen Eigenschaften von Materialien bewertet, wie z.B. Festigkeit, Härte, Elastizität und Zugfestigkeit, oft durch Tests, die die Reaktion auf Kräfte und Lasten messen.
+
+
+
+
+
+
+
+
+ melting point
+ The melting point is a phase boundary described by the temperature at which a solid becomes a liquid under standard atmospheric pressure.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Classified by morphology.
+ metal
+ A metal is an engineered material representing a class of materials characterized by high electrical and thermal conductivity, ductility, and metallic bonding.
+ true
+
+
+
+
+
+
+
+
+ metallographic texture
+ The metallographic texture is a morphological quality describing the arrangement and orientation of grains and phases in a metallic material, observed through metallographic analysis.
+ true
+
+
+
+
+
+
+
+
+ https://www.merriam-webster.com/dictionary/micrometer%20caliper
+ Bügelmessschraube
+ micrometer gauge
+ A measuring device for making precise measurements having a spindle moved by a finely threaded screw.
+ Diese Entität beschreibt ein Werkzeug zur Durchführung präziser Messungen mit einer Spindel, die durch eine Feingewindeschraube bewegt wird.
+
+
+
+
+
+
+
+
+ Mikroskop
+ microscope
+ A device used to magnify and view small objects or details that are not visible to the naked eye.
+ Ein Gerät zur Vergrößerung und Betrachtung kleiner Objekte oder Details, die mit bloßem Auge nicht sichtbar sind.
+
+
+
+
+
+
+
+
+ Mikroskopie Verfahren
+ microscopy process
+ A Structural Property Analyzing Process that uses various types of microscopy techniques to visualize and analyze the microstructure and morphology of materials at different scales.
+ Ein Struktur Eigenschaften Analyseverfahren, das verschiedene Arten von Mikroskopietechniken verwendet, um die Mikrostruktur und Morphologie von Materialien auf verschiedenen Ebenen zu visualisieren und zu analysieren.
+ Examples of Microscopy Processes include Electron Microscopy, which provides detailed images at high resolution; Ion Microscopy, which offers high-precision imaging and material milling capabilites; and Optical Microscopy, which uses visible light to study e.g. the microstructure of materials.
+ Mikroskopie
+
+
+
+
+
+
+
+
+ microstructure
+ The microstructure represents the small-scale structure of a material, including grains, phases, and defects, visible under a microscope.
+ true
+
+
+
+
+
+
+
+
+ Mikrotom
+ microtome
+ A Microtome is a Measuring Device that cuts extremely thin slices of material, often for examination under a microscope.
+ A device used to cut extremely thin slices of material, often for microscopic examination.
+ Ein Gerät, das verwendet wird, um extrem dünne Scheiben von Material zu schneiden, oft für mikroskopische Untersuchungen.
+ Ein Mikrotom ist ein Messgerät, das extrem dünne Scheiben von Material schneidet, oft zur Untersuchung unter einem Mikroskop.
+
+
+
+
+
+
+
+
+ Fräsmaschine
+ milling machine
+ A Milling Machine is a Device that performs machining operations to remove material from a workpiece using rotary cutters.
+ Eine Fräsmaschine ist ein Gerät, das Bearbeitungsoperationen durchführt, um Material von einem Werkstück mithilfe von Fräsern zu entfernen.
+
+
+
+
+
+
+
+
+ mohs hardness
+ Mohs Hardness is a scalar (scale) used to rank materials based on their ability to scratch one another.
+ true
+
+
+
+
+
+
+
+
+ Monte Carlo Simulation
+ monte carlo simulation
+ A Simulation Process that uses random sampling to solve physical and mathematical problems.
+ Ein Simulationsprozess, der zufällige Stichproben verwendet, um physikalische und mathematische Probleme zu lösen.
+ Predicting the diffusion behavior of atoms in a metal at high temperatures.
+
+
+
+
+
+
+
+
+ morphological property
+ A morphological property is a material property representing the characteristics of a material's structure, such as shape, size, and distribution of its features.
+ true
+
+
+
+
+
+
+
+
+ Multimodales Deep Learning
+ multimodal deep learning
+ A Deep Learning process that integrates and processes data from multiple modalities (e.g., text, images, and audio) to improve performance and gain a more comprehensive understanding.
+ Ein Deep Learning-Prozess, der Daten aus mehreren Modalitäten (z.B. Text, Bilder und Audio) integriert und verarbeitet, um die Leistung zu verbessern und ein umfassenderes Verständnis zu erlangen.
+ Combining microscopy images and spectroscopic data to predict the properties of new materials more accurately.
+
+
+
+
+
+
+
+
+ Multiskalensimulation
+ multiscale simulation
+ A Simulation Process that integrates models at different scales to study a system's behavior.
+ Ein Simulationsprozess, der Modelle auf verschiedenen Skalen integriert, um das Verhalten eines Systems zu untersuchen.
+ Studying the interaction between microstructural and macroscopic properties in metallic alloys.
+
+
+
+
+
+
+
+
+ Nanoindentationsverfahren
+ nanoindentation process
+ A Mechanical Property Analyzing Processs that measures the hardness and elastic modulus of materials at the nanoscale using a sharp indenter.
+ Ein Mechanische Eigenschaften Analyseverfahren, das die Härte und den elastischen Modulus von Materialien im Nanomaßstab mittels eines scharfen Eindringkörpers misst.
+ Nanoindentation of thin films to evaluate their mechanical properties for use in microelectronic devices.
+
+
+
+
+
+
+
+
+ natural organic material
+ Natural organic materials are materials derived from natural biological sources, primarily composed of carbon-based compounds.
+ true
+
+
+
+
+
+
+
+
+ occurence of chemical reaction
+ The occurrence of (a) chemical reaction is the process in which substances interact to form new chemical compounds or alter their molecular structure.
+
+
+
+
+
+
+
+
+ occurence of electic field
+ The occurrence of (an) electric field is a process describing the presence or generation of an electric field in a material or system.
+ true
+
+
+
+
+
+
+
+
+ occurence of magnetic field
+ The occurrence of (a) magenetic field is a process describing the presence or generation of a magnetic field in a material or system.
+ true
+
+
+
+
+
+
+
+
+ operator role
+ An operator role is a role indicating responsibility for operating equipment or systems, typically in a laboratory or manufacturing setting.
+ true
+
+
+
+
+
+
+
+
+ Optisches Mikroskop
+ optical microscope
+ A microscope that uses visible light and lenses to magnify and view small objects or details.
+ Ein Mikroskop, das sichtbares Licht und Linsen verwendet, um kleine Objekte oder Details zu vergrößern und zu betrachten.
+
+
+
+
+
+
+
+
+ Ein Mikroskopieverfahren, das sichtbares Licht und Linsen verwendet, um eine Probe zu vergrößern und abzubilden, und weit verbreitet zur Untersuchung der Mikrostruktur und Morphologie von Materialien ist.
+ Optische Mikroskopie
+ optical microscopy
+ A Microscopy Process that uses visible light and lenses to magnify and image a specimen, widely used for examining the microstructure and morphology of materials.
+ An example is Light Microscopy.
+
+
+
+
+
+
+
+
+ Optisches Profilometer
+ optical profilometer
+ An Optical Profilometer is a device that measures surface profiles and roughness by analyzing the interference patterns of light reflected from a specimen's surface.
+ Ein optisches Profilometer ist ein Gerät, das Oberflächenprofile und Rauheit misst, indem es die Interferenzmuster von Licht analysiert, das von der Oberfläche eines Präparats reflektiert wird.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ optical property
+ An optical property is a material property representing the characteristics that describe how a material interacts with light, including reflection, refraction, and absorption.
+ true
+
+
+
+
+
+
+
+
+ Optische Eigenschaften Analyseverfahren
+ optical property analyzing process
+ An assay that assesses the optical characteristics of materials, such as refractive index, absorption, transmission, reflectivity, and luminescence.
+ Eine Analyse, die die optischen Eigenschaften von Materialien bewertet, wie z.B. Brechungsindex, Absorption, Transmission, Reflexion und Lumineszenz.
+
+
+
+
+
+
+
+
+ passing of time
+ Passing of time is a process that describes the progression of time, which can influence material aging and property changes.
+ true
+
+
+
+
+
+
+
+
+
+ http://openenergy-platform.org/ontology/oeo/oeo-import-edits.owl
+ person
+ A person is a human being.
+ true
+ true
+
+
+
+
+
+ https://github.com/materialdigital/core-ontology/issues/102
+
+
+
+
+
+ https://github.com/materialdigital/core-ontology/issues/102
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ phase boundary
+ A phase boundary is a morphological property denoting the interface between two distinct phases of a material, such as solid-liquid or liquid-gas boundaries.
+ true
+
+
+
+
+
+
+
+
+ Photochemische Verfahren
+ photochemical process
+ A Changing Properties Of Material process in which light, typically ultraviolet (UV) light is used to trigger chemical reactions. In the printing industry and some additive manufacturing methods, this light exposure is used to harden photoresists or cure inks and resins. The process relies on the specific wavelengths of light to initiate chemical changes in the material.
+ Ein Stoffeigenschaft Ändern Prozess, bei dem Licht, in der Regel ultraviolettes (UV) Licht, zur Auslösung chemischer Reaktionen verwendet wird. In der Druckindustrie und bei einigen additiven Fertigungsverfahren wird diese Lichteinwirkung zur Härtung von Fotolacken oder zur Aushärtung von Tinten und Harzen verwendet. Das Verfahren beruht auf den spezifischen Wellenlängen des Lichts, um chemische Veränderungen im Material auszulösen.
+ Exposure
+
+
+
+
+
+
+
+
+ physical simulation
+ a simulating approach describing the use of computational or experimental methods to replicate physical behaviors or processes under defined conditions.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pole figure
+ A pole figure is a map representing a graphical representation of the orientation of crystallographic planes in a polycrystalline sample.
+ true
+
+
+
+
+
+
+
+
+ Poliermaschine
+ polishing machine
+ A Polishing Machine is a Forming Machine that smooths the surface of a material by rubbing it with a tool, abrasive, or chemical.
+ Eine Poliermaschine ist eine Formmaschine, die die Oberfläche eines Materials durch Reiben mit einem Werkzeug, Schleifmittel oder Chemikalien glättet.
+
+
+
+
+
+
+
+
+ Classified by morphology.
+ polymer
+ A polymer is an engineered material that consists of many repeated subunits (monomers) to form long chains. The atoms within a polymer chain are bonded together by covalent bonds. The intermolecular forces between polymer chains are typically represented by Van der Waals forces and hydrogen bonds.
+ true
+
+
+
+
+
+
+
+
+ pore growth
+ Pore Growth is an evolution of damagfe describing the process by which voids or pores in a material increase in size, often affecting its mechanical and physical properties.
+ true
+
+
+
+
+
+
+
+
+ connected material entity aggregate
+ A material entity aggregate that is a mereological sum of separate material entities, which adhere to one another through chemical bonds or physical junctions that go beyond gravity.
+ the atoms of a molecule, the molecules forming the membrane of a cell, the epidermis in a human body
+ true
+
+
+
+
+
+
+
+
+ disconnected material entity aggregate
+ A material entity aggregate that is a mereological sum of scattered (i.e. spatially separated) material entities, which do not adhere to one another through chemical bonds or physical junctions but, instead, relate to one another merely on grounds of metric proximity. The material entities are separated from one another through space or through other material entities that do not belong to the group.
+ a heap of stones, a colony of honeybees, a group of synapses, the trees of a forest, the canopy of a forest, the fish of a shoal, a group of commuters on the subway, the patients in a hospital
+ true
+
+
+
+
+
+
+
+
+ powder
+ A powder is a dry, solid disconnected material entity aggragate composed of many very fine particles. These particles can flow freely when shaken or tilted.
+ true
+
+
+
+
+
+
+
+
+ Präzisionsdrehmaschine
+ precision lathe
+ A Precision Lathe is a Lathe that rotates a workpiece about an axis to perform various operations such as cutting, sanding, drilling, or deformation with extreme accuracy.
+ Eine Präzisionsdrehmaschine ist eine Drehmaschine, die ein Werkstück um eine Achse dreht, um verschiedene Operationen wie Schneiden, Schleifen, Bohren oder Verformung mit extremer Genauigkeit durchzuführen.
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8593-3
+ Offizielle Definition findet man in: DIN 8593-3
+ Anpressen - Einpressen
+ pressing on - in
+ A joining process that involves mechanically pressing one component into or onto another to create a secure fit, thereby establishing a strong mechanical connection.
+ Ein Füge Prozess, bei dem ein Bauteil mechanisch in oder auf ein anderes gepresst wird, um eine sichere Passung und damit eine feste mechanische Verbindung herzustellen.
+ Clamps, Brackets, Wedging
+
+
+
+
+
+
+
+
+
+ The pressure is commonly measured in Pascals.
+ pressure
+ The pressure is a thermodynamic quality describing the force exerted per unit area on a material.
+ true
+
+
+
+
+
+
+
+
+ Druckmessfunktion
+ pressure measuring function
+ A subfunction of measuring performed to determine the pressure of gases or liquids.
+ Eine Unterfunktion des Messens, die durchgeführt wird, um den Druck von Gasen oder Flüssigkeiten zu bestimmen.
+ true
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 4, 3.1.1 Urformen - Definition
+ Offizielle Definition findet man in: DIN 8580:2003-9 Fertigungsverfahren, Seite 4, 3.1.1 Urformen - Definition
+ Urformen
+ primary shaping
+ Primary Forming
+ A manufacturing process that creates a defined workpiece from shapeless material by producing cohesion, whereby the characteristic properties of the material become visible in the end product.
+ Ein Herstellungsprozess, der aus formlosem Stoff durch das Herstellen von Kohäsion ein definiertes Werkstück schafft, wobei die charakteristischen Eigenschaften des Materials im Endprodukt sichtbar werden.
+ Casting, Sintering
+
+
+
+
+
+
+
+
+ Urformen Durch Additive Fertigung
+ primary shaping by additive manufacturing
+ A Primary Shaping process that involves forming materials through additive manufacturing techniques.
+ Ein Urformprozess, der das Formen von Materialien durch additive Fertigungstechniken beinhaltet.
+ 3D printing of polymer objects.
+
+
+
+
+
+
+
+
+ Urformen Durch Schweissen
+ primary shaping by welding
+ A Primary Shaping process that involves forming materials by welding.
+ Ein Urformprozess, der das Formen von Materialien durch Schweißen beinhaltet.
+ Fabrication of steel structures using welding techniques.
+
+
+
+
+
+
+
+
+ Urformen Aus Dem Spanförmigen Oder Faserförmigen Zustand
+ primary shaping from the chip or fiber state
+ A Primary Shaping process that involves forming materials from a chip or fiber state.
+ Ein Urformprozess, der das Formen von Materialien aus einem span- oder faserförmigen Zustand beinhaltet.
+ Compression molding of wood chips into particle boards.
+
+
+
+
+
+
+
+
+ Urformen Aus Dem Gasförmigen Oder Dampfförmigen Zustand
+ primary shaping from the gaseous or vapor state
+ A Primary Shaping process that involves forming materials from a gaseous or vapor state.
+ Ein Urformprozess, der das Formen von Materialien aus einem gasförmigen oder dampfförmigen Zustand beinhaltet.
+ Chemical vapor deposition (CVD) for thin film production.
+
+
+
+
+
+
+
+
+ Urformen Aus Dem Körnerförmigen Oder Pulverförmigen Zustand
+ primary shaping from the granular or powdered state
+ A Primary Shaping process that involves forming materials from a granular or powdered state.
+ Ein Urformprozess, der das Formen von Materialien aus einem körnigen oder pulverförmigen Zustand beinhaltet.
+ Powder metallurgy for creating metal parts.
+
+
+
+
+
+
+
+
+ Urformen Aus DemIonisierten Zustand
+ primary shaping from the ionized state
+ A Primary Shaping process that involves forming materials from an ionized state.
+ Ein Urformprozess, der das Formen von Materialien aus einem ionisierten Zustand beinhaltet.
+ Plasma arc welding.
+
+
+
+
+
+
+
+
+ Urformen Aus Dem Flüssigen Zustand
+ primary shaping from the liquid state
+ A Primary Shaping process that involves forming materials from a liquid state.
+ Ein Urformprozess, der das Formen von Materialien aus einem flüssigen Zustand beinhaltet.
+ Casting of molten metal into molds.
+
+
+
+
+
+
+
+
+ Urformen Aus Dem Plastischen Zustand
+ primary shaping from the plastic state
+ A Primary Shaping process that involves forming materials from a plastic state.
+ Ein Urformprozess, der das Formen von Materialien aus einem plastischen Zustand beinhaltet.
+ Thermoforming of plastic sheets.
+
+
+
+
+
+
+
+
+ Urformen Aus Dem Breiigen Oder Pastösen Zustand
+ primary shaping from the pulpy or pasty state
+ A Primary Shaping process that involves forming materials through the transition from a pulpy or pasty state into a solid form.
+ Ein Urformprozess, der das Formen von Materialien durch den Übergang aus einem breiigen oder pastösen Zustand in eine feste Form beinhaltet.
+ Pottery
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Projekt
+ project
+ A series of goal-orientated (intent) activities and interactions to achieve a specific outcome.
+ Eine Reihe von zielorientierten (absichtlichen) Aktivitäten und Interaktionen, um ein bestimmtes Ergebnis zu erzielen.
+ true
+
+
+
+
+
+
+
+
+ rebound hardness
+ The rebound hardness is representing a measure of a material's hardness based on the height of rebound of a hammer dropped on the material.
+ true
+
+
+
+
+
+
+
+
+ reflectivity
+ The reflectivity is an optical property that describes the proportion of incident light or radiation that a material reflects.
+ true
+
+
+
+
+
+
+
+
+ Reinforcement Learning
+ reinforcement learning
+ A Deep Learning process that involves training models to make sequences of decisions by rewarding desired actions and punishing undesired ones.
+ Ein Deep Learning Prozess, der Modelle darin trainiert, Abfolgen von Entscheidungen zu treffen, indem gewünschte Aktionen belohnt und unerwünschte bestraft werden.
+ Using RL to optimize the process parameters in additive manufacturing (3D printing) to achieve the desired material properties and reduce defects.
+ RL
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8590
+ Offizielle Definition findet man in: DIN 8590
+ Abtragen
+ removing
+ A Seperating process that involves removing material through thermical, chemical and electrochemical methods.
+ Ein Trennprozess, bei dem Material durch thermische, chemische und elektrochemische Methoden abgetragen wird.
+ Electrical Discharge Machining, Thermal Ablation
+
+
+
+
+
+
+
+
+
+ responding process
+ The responding process is a process describing the reaction of a material or system to an applied stimulus.
+ true
+
+
+
+
+
+
+
+
+ Rheologische Eigenschaften Analyseverfahren
+ rheological property analyzing process
+ A Mechanical Property Analyzing Process that determines the flow and deformation behavior of materials under applied forces, including viscosity, elasticity, and plasticity, often through rheometry and viscometry techniques.
+ Ein Mechanische Eigenschaften Analyseverfahren, das das Fließ- und Deformationsverhalten von Materialien unter Einwirkung von Kräften bestimmt, einschließlich Viskosität, Elastizität und Plastizität, oft durch Rheometrie- und Viskosimetrie-Techniken.
+
+
+
+
+
+
+
+
+ Rheometer
+ rheometer
+ A device used to measure the flow and deformation properties of materials, particularly liquids and semi-solids.
+ Ein Gerät zur Messung der Fließ- und Verformungseigenschaften von Materialien, insbesondere von Flüssigkeiten und Halbfeststoffen.
+
+
+
+
+
+
+
+
+ Rheometry
+ rheometry
+ A Rheological Property Analyzing Process that measures the flow and deformation behavior of materials, including complex fluids and soft solids, to provide comprehensive data on viscoelastic properties using rheometers.
+ Ein Rheologisches Eigenschaften Analyseverfahren, das das Fließ- und Verformungsverhalten von Materialien misst, einschließlich komplexer Flüssigkeiten und weicher Feststoffe, um umfassende Daten zu viskoelastischen Eigenschaften unter Verwendung von Rheometern zu liefern.
+
+
+
+
+
+
+
+
+ ANMERKUNG: Ein Sample ist ein Teil (oder das Ganze) eines Probestücks. Das Probestück wird bei der Herstellung eines industriell verwendeten Produktes gezielt für die Überprüfung des Produkteigenschaften bereitgestellt. CAVE: Diese Anmerkung beschreibt das Objekt, welches die Rolle, die durch diese owl:Class definiert wird, realisiert.
+ANMERKUNG: Die exakte Wortwahl der EN 10021 wurde verallgemeinert.
+ In certain cases, the sample can be the specimen or the test piece itself.
+ Mitunter kann der Probenabschnitt (Sample) unmittelbar als Prüfling (Specimen) oder Probe dienen.
+ NOTE: A Sample is a part (or the whole) of a Sample product. The Sample product is specifically produced portion of an industrially used and traded product for the purpose of determining the properties/quality of the product. CAVE: This note describes the object, that realizes the role defined by this owl:Class.
+NOTE: The wording used in EN 10021 was generalized.
+ EN 10021:2006-12 (European standardization committee: CEN/TC 459/SC 12/WG 4)
+ Probe-Rolle
+ sample role
+ Role of an object, which is a quantity of material taken from a (sample) product, that is sufficient for the purpose of obtaining test pieces.
+ Rolle eines Objektes, das eine von einem Probestück/Material entnommene Menge ist, welche (vom Umfang her) geeignet ist Proben (Test Pieces) herzustellen.
+
+
+
+
+
+
+
+
+ saw
+ A saw is a device used to cut materials, especially wood. It usually consists of a thin, sharp metal blade fitted with teeth and a handle or frame that allows the user to guide the saw. There are different types of saws designed for different applications, including handsaws, circular saws, hacksaws and band saws. Each type of saw is designed for specific tasks and materials to enable efficient cutting.
+ Eine Säge ist ein Gerät, das zum Zerteilen von Materialien, insbesondere von Holz, verwendet wird. Sie besteht in der Regel aus einem dünnen, scharfen Metallblatt, das mit Zähnen versehen ist, und einem Griff oder Rahmen, der es dem Benutzer ermöglicht, die Säge zu führen. Es gibt verschiedene Arten von Sägen, die für verschiedene Anwendungen konzipiert sind, darunter Handsägen, Kreissägen, Bügelsägen und Bandsägen. Jede Art von Säge ist auf bestimmte Aufgaben und Materialien abgestimmt, um effizientes Schneiden zu ermöglichen.
+ Säge
+
+
+
+
+
+
+
+
+ Rasterelektronenmikroskop
+ scanning electron microscope
+ A Scanning Electron Microscope (SEM) is a Measuring Device that produces high-resolution images of a sample surface by scanning it with a focused beam of electrons.
+ Ein Rasterelektronenmikroskop (REM) ist ein Messgerät, das hochauflösende Bilder einer Probenoberfläche erzeugt, indem es sie mit einem fokussierten Elektronenstrahl abtastet.
+
+
+
+
+
+
+
+
+ Schere
+ pair of scissors
+ A tool with two sharp blades that are brought together by pressure on the handles to cut paper, fabric, or other materials.
+ Ein Werkzeug mit zwei scharfen Klingen, die durch Druck auf die Griffe zusammengeführt werden, um Papier, Stoff oder andere Materialien zu schneiden.
+
+
+
+
+
+
+
+
+ A measure of a material's resistance to deformation or scratching by a harder material.
+ scratch hardness
+ The scratch hardness is a hardness representing a measure of a material's resistance to deformation or scratching by a harder material.
+ true
+
+
+
+
+
+
+
+
+ Kratzprüfmaschine
+ scratch testing machine
+ A device used to test the scratch resistance of materials by applying a scratching force.
+ Ein Gerät zur Prüfung der Kratzfestigkeit von Materialien durch Anwendung einer Kratzkraft.
+
+
+
+
+
+
+
+
+ Ritzhärteprüfverfahren
+ scratch testing process
+ A Mechanical Property Analyzing Process that evaluates a material's resistance to scratching, measuring hardness and adhesion properties.
+ Ein Mechanische Eigenschaften Analyseverfahren, das den Widerstand eines Materials gegen Kratzer bewertet und seine Härte- und Haftungseigenschaften misst.
+ Scratch testing of a coated surface to determine the adhesion quality of the coating to the substrate.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 4, 3.1.3 Trennen - Definition
+ Trennen
+ separating
+ A manufacturing process in which the bond between objects is broken, resulting in a partial or complete reduction in cohesion.
+ Ein Herstellungsprozess, bei dem die Bindung zwischen Objekten aufgehoben wird, was zu einer teilweisen oder vollständigen Verringerung der Kohäsion führt.
+ Disassembling, Removal
+ Cutting
+
+
+
+
+
+
+
+
+ Schubprüfmaschine
+ shear testing machine
+ A device used to measure the shear strength of materials by applying a shearing force and measuring deformation.
+ Ein Gerät zur Messung der Scherfestigkeit von Materialien durch Anwendung einer Schubkraft und Messung der Verformung.
+
+
+
+
+
+
+
+
+ Schubprüfverfahren
+ shear testing process
+ A Mechanical Property Analyzing Process that measures a material's response to shear forces, determining its shear strength and shear modulus.
+ Ein Mechanische Eigenschaften Analyseverfahren, das die Reaktion eines Materials auf Scherkräfte misst und seine Scherfestigkeit und seinen Schermodul bestimmt.
+ Shear testing of rivets to ensure they can hold structural components together under lateral loads.
+
+
+
+
+
+
+
+
+ simulation method specification
+ A plan specification that specifies the method of creating a computational or physical model to replicate the behavior of a material or system under specific conditions.
+ true
+
+
+
+
+
+
+
+
+ Simulationsknoten
+ simulation device
+ A processing node that implements foo as well as consumes and creates simulation objects and parameters.
+
+
+
+
+
+
+
+
+ Simulationsprozess
+ simulation process
+ A Computing Process that models the behavior of a system over time using mathematical or computational techniques.
+ Ein Datenverarbeitungsprozess, der das Verhalten eines Systems im Laufe der Zeit mit mathematischen oder rechnerischen Techniken modelliert
+
+
+
+
+
+
+
+
+ https://industrylist.com/glossar/stoffeigenschaften-aendern/sintern/
+ Sintern
+ sintering
+ A changing properties of materials process in which granular and powdery materials, which have already been shaped in the first step, are mixed and combined and compacted by heating.
+ Ein Stoffeigenschaftsänderungsprozess, bei dem körnige und pulverförmige Stoffe, welche im ersten Schritt bereits in Form gebracht wurden, vermischt und durch Erwärmung verbunden und verdichtet werden.
+ Metal Powder Sintering, Ceramic Sintering
+
+
+
+
+
+
+
+
+ Formatkreissäge
+ sizing saw
+ A sizing saw is an industrial circular saw designed for large cutting formats in woodworking and furniture production.
+ Eine Formatkreissäge ist eine industrielle Kreissäge, die für große Schnittformate in der Holzverarbeitung und Möbelherstellung ausgelegt ist.
+
+
+
+
+
+
+
+
+ Schlitten
+ slide
+ A moving piece that is guided by a part along its path, providing the mount for objects.
+
+
+
+
+
+
+
+
+ Lötgerät
+ soldering device
+ A device used for joining materials together by melting and applying a filler metal.
+ Ein Gerät zum Verbinden von Materialien durch Schmelzen und Auftragen eines Füllmetalls.
+
+
+
+
+
+
+
+
+ Lötfunktion
+ soldering function
+ A subfunction of joining performed to connect materials using soldering techniques.
+ Eine Unterfunktion des Verbindens, die durchgeführt wird, um Materialien durch Löttechniken zu verbinden.
+ true
+
+
+
+
+
+
+
+
+ Abplatzprüfmaschine
+ spalling testing machine
+ A device used to test the resistance of materials to spalling or flaking under various conditions.
+ Ein Gerät zur Prüfung der Widerstandsfähigkeit von Materialien gegenüber Abplatzungen oder Abblätterungen unter verschiedenen Bedingungen.
+
+
+
+
+
+
+
+
+ Abplatzprüfverfahren
+ spalling testing process
+ A Mechanical Property Analyzing Process that evaluates the resistance of a material to surface spalling or flaking under high impact or thermal stresses.
+ Ein Mechanische Eigenschaften Analyseverfahren, das die Widerstandsfähigkeit eines Materials gegen Oberflächenabplatzungen oder Abblättern unter hohen Stoß- oder thermischen Belastungen bewertet.
+ Spalling testing of refractory bricks used in furnaces to ensure their longevity and performance under extreme conditions.
+
+
+
+
+
+
+
+
+ specific surface area
+ The specific surface area is a morphologic quality describing the total surface area of a material per unit of mass or volume.
+ true
+
+
+
+
+
+
+
+
+ Spektrometer
+ spectrometer
+ A Spectrometer is a Measuring Device that measures the properties of light over a specific portion of the electromagnetic spectrum, typically to analyze the composition of a material.
+ Ein Spektrometer ist ein Messgerät, das die Eigenschaften von Licht über einen bestimmten Teil des elektromagnetischen Spektrums misst, typischerweise zur Analyse der Zusammensetzung eines Materials.
+
+
+
+
+
+
+
+
+ Spektroskopie Verfahren
+ spectroscopy process
+ A Structural Property Analyzing Process that measures the interaction of electromagnetic radiation with matter to determine e.g. the composition, structure, and other properties of materials.
+ Ein Struktur Eigenschaften Analyseverfahren, das die Wechselwirkung von elektromagnetischer Strahlung mit Materie misst, um die Zusammensetzung, Struktur und physikalischen Eigenschaften von Materialien zu bestimmen.
+
+
+
+
+
+
+
+
+
+ spectrum
+ A spectrum is a 1-D information content entity that describes the range of wavelengths or frequencies of a physical property, often used in reference to light, sound, or electromagnetic radiation.
+ true
+
+
+
+
+
+
+
+
+ speed of sound
+ The speed of sound is an accoustic property representing the rate at which sound waves travel through a material, dependent on its density and elastic properties.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ stiffness
+ The stiffness is a mechanical property describing the resistance of a material to deformation under an applied force.
+ true
+
+
+
+
+
+
+
+
+ stimulating process
+ The stimulating process is a process describing the application of an external influence, such as force, heat, or radiation, to study material response.
+ true
+
+
+
+
+
+
+
+
+ stochastic simulation
+ a simulation approach that incorporates random variables to model probabilistic systems or processes.
+ true
+
+
+
+
+
+
+
+
+ strength
+ The strength is a mechanical property describing the maximum stress a material can withstand before failure.
+ true
+
+
+
+
+
+
+
+
+ structural and chemical decay
+ The structural and chemical decay is an evolution of damage describing the deterioration of a material's structure and composition over time due to environmental or operational conditions.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Classified by the role in a system.
+ structural material
+ A Structural Material S is an Engineered Material which has the disposition to be used for an Object O (O consists of S) and O's function is primarily mechanical load carrying.
+ true
+
+
+
+
+
+
+
+
+ Strukturoptimierungssimulation
+ structural optimization simulation
+ A Simulation Process that aims to find the most stable structure of a molecular system by minimizing its energy.
+ Ein Simulationsprozess, der darauf abzielt, die stabilste Struktur eines molekularen Systems durch Minimierung seiner Energie zu finden.
+ Optimizing the atomic structure of a catalyst to enhance its performance.
+
+
+
+
+
+
+
+
+ Struktur Eigenschaften Analyseverfahren
+ structural property analyzing process
+ An assay that examines the external and internal structure and morphology of materials, including the arrangement of atoms, crystals, grains, and phases, often using techniques like microscopy and diffraction.
+ Eine Analyse, die die äußere und innere Struktur und Morphologie von Materialien untersucht, einschließlich der Anordnung von Atomen, Kristallen, Körnern und Phasen, oft unter Verwendung von Techniken wie Mikroskopie und Beugung.
+
+
+
+
+
+
+
+
+ Einstellungsgegenstandsrolle
+ subject of adjustment role
+ Role of a device that is being adjusted. The role is realized in an adjustment process.
+ Rolle eines Gerätes (Einstellungsgegenstand), das eingestellt wird. Die Rolle wird ein einem Einstellungsprozess realisiert.
+
+
+
+
+
+
+
+
+ Kalibrierungsgegenstandsrolle
+ subject of calibration role
+ Role of a device that is being calibrated. The role is realized in a calibration process.
+ Rolle eines Gerätes (Kalibrierungsgegenstand), das kalibriert wird. Die Rolle wird ein einem Kalibrierungsprozess realisiert.
+ true
+
+
+
+
+
+
+
+
+ sublimation point
+ The sublimation point is a phase boundary that describes the temperature at which a material transitions directly from a solid to a gaseous state without passing through the liquid phase.
+ true
+
+
+
+
+
+
+
+
+ supercritical fluid chromatography process
+ Überkritische Fluidchromatographie Verfahren
+ A Chromatography Process that utilizes a supercritical fluid as the mobile phase to separate components, offering higher speed and efficiency compared to traditional methods.
+ Ein Chromatographieverfahren, das ein überkritisches Fluid als mobile Phase verwendet, um Komponenten zu trennen, und im Vergleich zu traditionellen Methoden eine höhere Geschwindigkeit und Effizienz bietet.
+ Supercritical fluid chromatography is used to separate and analyze complex mixtures of polymers and plastics.
+
+
+
+
+
+
+
+
+ supercritical fluid chromatography system
+ Überkritisches Fluid-Chromatographiesystem
+ A device used for separating and analyzing compounds using supercritical fluids as the mobile phase in chromatography.
+ Ein Gerät zur Trennung und Analyse von Verbindungen unter Verwendung von überkritischen Flüssigkeiten als mobile Phase in der Chromatographie.
+
+
+
+
+
+
+
+
+ supervised learning
+ supervised machine learning
+ A Machine Learning process that learns a function mapping from input data to labeled output data.
+ Ein Maschinelles Lernen Prozess, der eine Funktion erlernt, die Eingabedaten auf beschriftete Ausgabedaten abbildet.
+ Training a model to predict the tensile strength of a material based on its composition and manufacturing process parameters. This involves using a dataset where the tensile strength is already known (labeled data) to train the model.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ surface layer (fiat object part)
+ A surface layer (fiat object part) is a fiat object part that is part of only object. The surface layer is the three dimensional region defining the outermost layer of an object, where surface-interactions with other material entities occur. What is considered as the surface is thus defined by the interaction process.
+ When considering optical properties of a surface layer (fiat object part) of a polished piece of metal we likely consider a different three dimensional spatial region than when considering the scratch hardness properties of the same polished piece of metal.
+ true
+
+
+
+
+
+
+
+
+ Oberflächenprofilometer
+ surface profilometer
+ A device used to measure the surface profile and texture of materials.
+ Ein Gerät zur Messung des Oberflächenprofils und der Textur von Materialien.
+
+
+
+
+
+
+
+
+ The concept refers to an absolute tempeature, not to be mistaken with temperature difference.
+ To express that an object has a temperature, the property 'intensive bearer of' can be used. It implies a chain of: object consists of some portion of matter and portion of matter bearer of some temperature.
+ temperature
+ The temperature is a fundamental intensive quality representing the average atomic or molcular movement or vibration of a portion of matter.
+ true
+
+
+
+
+
+
+
+
+ Temperaturänderungswerkzeug
+ temperature change device
+ A device that is used for the alteration and adjustment of the temperature of a tangible object or the environment, e.g., a furnace and cooling media.
+ Diese Entität beschreibt allgemein jedes Werkzeug, das zur Änderung und Einstellung der Temperatur eines materiellen Objekts oder der Umgebung verwendet wird, z. B. einen Ofen und Kühlmittel.
+
+
+
+
+
+
+
+
+ Temperaturänderungsfunktion
+ temperature change function
+ A subfunction of heat treatment performed to induce changes in temperature to alter material properties.
+ Eine Unterfunktion der Wärmebehandlung, die durchgeführt wird, um Temperaturänderungen hervorzurufen, um die Materialeigenschaften zu verändern.
+ true
+
+
+
+
+
+
+
+
+ Temperaturmessfunktion
+ temperature measuring function
+ A subfunction of measuring performed to determine the temperature of an object or environment.
+ Eine Unterfunktion des Messens, die durchgeführt wird, um die Temperatur eines Objekts oder einer Umgebung zu bestimmen.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ temporal property
+ A temporal property is a material property that represents attributes related to the time-dependent behavior of a material or process.
+ true
+
+
+
+
+
+
+
+
+ Zugprüfmaschine
+ tensile testing machine
+ A device used to test the tensile strength and elongation of materials by applying a stretching force.
+ Ein Gerät zur Prüfung der Zugfestigkeit und Dehnung von Materialien durch Anwendung einer Dehnkraft.
+
+
+
+
+
+
+
+
+ Zugprüfverfahren
+ tensile testing process
+ A Mechanical Property Analyzing Process that determines a material's response to tensile forces, measuring its tensile strength, elongation, and Young's modulus.
+ Ein Mechanische Eigenschaften Analyseverfahren, das die Reaktion eines Materials auf Zugkräfte bestimmt und seine Zugfestigkeit, Dehnung und seinen Elastizitätsmodul misst.
+ Tensile testing of polymer films to ensure they can stretch without breaking in packaging applications
+
+
+
+
+
+
+
+
+ ANMERKUNG: Ein Test Piece ist ein Teilstück (potenziell alles) eines Specimens, welches die Bedingungen erfüllt, die durch ein anzuwendendes Prüfverfahren gestellt werden. Ein Specimen erfüllt diese Anforderungen im Allgemeinen erst nach weiterer Bearbeitung. CAVE: Diese Anmerkung beschreibt das Objekt, welches die Rolle, die durch diese owl:Class definiert wird, realisiert.
+ANMERKUNG: Die exakte Wortwahl der EN 10021 wurde verallgemeinert.
+ In certain cases, the test piece can be the sample or the specimen itself.
+ Mitunter kann der Probenabschnitt (Sample) oder der Prüfling (Specimen) unmittelbar als Probe dienen.
+ NOTE: A Test Piece is a piece that is taken from a specimen (potentially the whole specimen), which fulfills the requirements, that are set by the test procedure in which the test piece is about to be used. A specimen fulfills this requierements generally speaking only after further treatment/processing. CAVE: This note describes the object, that realizes the role defined by this owl:Class.
+NOTE: The wording used in EN 10021 was generalized.
+ EN 10021:2006-12 (European standardization committee: CEN/TC 459/SC 12/WG 4)
+ Proben-Rolle
+ test piece role
+ Rolle eines Objekts, welches eine Probe ist, die aus einem Prüfling (Specimen) oder Probenabschnitt (Sample) entnommen wurde; die Probe hat festgelegte Dimensionen, kann maschinell bearbeitet sein, wurde in einen für die Verwendung in einem Prüfverfahren notwendigen Zustand gebracht
+ role of object which is a part taken from a specimen or sample; the part has specified dimensions, is machined or un-machined, brought to a required condition for submission to a given test
+
+
+
+
+
+
+
+
+ Testfunktion
+ testing function
+ A function performed to assess or evaluate the properties, performance, or quality of materials or devices.
+ Eine Funktion, die durchgeführt wird, um die Eigenschaften, Leistung oder Qualität von Materialien oder Geräten zu bewerten.
+ true
+
+
+
+
+
+
+
+
+ Keine offizielle Definition in DIN
+ No offical definition in DIN
+ Textiles Fügen
+ textile joining
+ A joining process that involves connecting textile materials.
+ Ein Füge Prozess, bei dem textile Materialien miteinander verbunden werden.
+ Sewing, Stapling
+
+
+
+
+
+
+
+
+ thermal conductivity
+ The thermal conductivity is a thermal property describing the ability of a material to conduct heat.
+ true
+
+
+
+
+
+
+
+
+ Wärmeleitfähigkeitsmessverfahren
+ thermal conductivity measurement process
+ A Thermal Property Analyzing Process that measures the thermal conductivity of a material, determining its ability to conduct heat.
+ Ein Thermische Eigenschaften Analyseverfahren, das die Wärmeleitfähigkeit eines Materials misst und dessen Fähigkeit bestimmt, Wärme zu leiten.
+ Measuring the thermal conductivity of a composite material used in aerospace applications to ensure efficient heat dissipation.
+ TCMP
+
+
+
+
+
+
+
+
+ Wärmeleitfähigkeitsmessfunktion
+ thermal conductivity measuring function
+ A function that inheres in devices used to measure the thermal conductivity of materials.
+ Eine Funktion, die in Geräten besteht, die zur Messung der Wärmeleitfähigkeit von Materialien verwendet werden.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ thermal property
+ A thermal property is a material property representing attributes of a material that describe its behavior under temperature changes, such as thermal conductivity and expansion.
+ true
+
+
+
+
+
+
+
+
+ Thermische Eigenschaften Analyseverfahren
+ thermal property analyzing process
+ An assay that measures the thermal behavior of materials, including heat capacity, thermal conductivity, thermal expansion, and phase transitions in response to temperature changes.
+ Eine Analyse, die das thermische Verhalten von Materialien misst, einschließlich Wärmekapazität, Wärmeleitfähigkeit, thermischer Ausdehnung und Phasenübergängen in Reaktion auf Temperaturänderungen.
+
+
+
+
+
+
+
+
+ “Thermocouple.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/thermocouple. Accessed 13 Jan. 2023.
+ Thermoelement
+ thermocouple
+ A device for measuring temperature in which a pair of wires of dissimilar metals (such as copper and iron) are joined and the free ends of the wires are connected to an instrument (such as a voltmeter) that measures the difference in potential created at the junction of the two metals.
+ Ein Gerät zur Temperaturmessung, bei dem ein Paar Drähte aus unterschiedlichen Metallen (z. B. Kupfer und Eisen) verbunden und die freien Enden der Drähte mit einem Instrument (z. B. einem Voltmeter) verbunden werden, das die an der Verbindungsstelle erzeugte der beiden Metalle Potentialdifferenz misst .
+
+
+
+
+
+
+
+
+ Thermocycler
+ thermocycler
+ A Thermocycler is a Temperature Change Device that rapidly changes the temperature of a sample in cycles, often used in polymerase chain reactions (PCR).
+ Ein Thermocycler ist ein Temperaturwechselgerät, das die Temperatur einer Probe in Zyklen schnell ändert, oft verwendet in der Polymerase-Kettenreaktion (PCR).
+
+
+
+
+
+
+
+
+ Thermogravimetrische Analyse-Verfahren
+ thermogravimetric analysis process
+ A Thermal Property Analyzing Process that measures the change in mass of a material as a function of temperature or time in a controlled atmosphere, determining its thermal stability and composition.
+ Ein Thermische Eigenschaften Analyseverfahren, das die Massenänderung eines Materials in Abhängigkeit von Temperatur oder Zeit in einer kontrollierten Atmosphäre misst und dessen thermische Stabilität und Zusammensetzung bestimmt.
+ Thermogravimetric analysis of a metal alloy to determine its oxidation stability at high temperatures.
+ TGA
+
+
+
+
+
+
+
+
+
+ Thermomechanische Analyse-Verfahren
+ thermomechanical analysis process
+ A Thermoanalytical Process that measures the dimensional changes of a material as a function of temperature, determining its coefficient of thermal expansion.
+ Ein Thermoanalytisches Verfahren, das die Maßänderungen eines Materials als Funktion der Temperatur misst und seinen thermischen Ausdehnungskoeffizienten bestimmt.
+ Thermomechanical analysis of a polymer to ensure it maintains dimensional stability under varying temperature conditions.
+ TMA
+
+
+
+
+
+
+
+
+ Thermomechanisches Behandeln
+ thermomechanical treatment
+ A Changing Properties Of Material process that involves the simultaneous application of heat and mechanical stresses. Thermomechanical treatment is utilized to alter and improve the material's microstructure and mechanical properties.
+ Ein Stoffeigenschaft Ändern Prozess, der die gleichzeitige Anwendung von Wärme und mechanischen Spannungen beinhaltet. Die thermomechanische Behandlung wird eingesetzt, um die Mikrostruktur und die mechanischen Eigenschaften des Materials zu verändern und zu verbessern.
+ Hot Isostatic Pressing
+
+
+
+
+
+
+
+
+ Dünnschichtchromatographie Verfahren
+ thin-layer chromatography process
+ A Chromatography Process that separates non-volatile mixtures by applying a sample on a thin layer of an adsorbent material and using a solvent to move the components up the layer based on their affinities.
+ Ein Chromatographieverfahren, das nichtflüchtige Gemische trennt, indem eine Probe auf eine dünne Schicht eines Adsorptionsmaterials aufgetragen und ein Lösungsmittel verwendet wird, um die Komponenten basierend auf ihren Affinitäten entlang der Schicht zu bewegen.
+ Using thin-layer chromatography to analyze the composition of a polymer mixture to identify different components.
+
+
+
+
+
+
+
+
+ Dünnschichtchromatographiesystem
+ thin layer chromatography system
+ A device used for separating compounds in a sample using a thin layer of adsorbent material on a plate.
+ Ein Gerät zur Trennung von Verbindungen in einer Probe unter Verwendung einer dünnen Schicht adsorbierenden Materials auf einer Platte.
+
+
+
+
+
+
+
+
+ 3D-Drucker
+ 3d printer
+ A 3D Printer is an Additive Manufacturing Device that creates three-dimensional objects by building them layer by layer from a digital model.
+ Ein 3D-Drucker ist ein Gerät für die additive Fertigung, das dreidimensionale Objekte durch schichtweises Aufbauen aus einem digitalen Modell erzeugt.
+
+
+
+
+
+
+
+
+ time series
+ A time series is a 1-D information content entity defined by a sequence of data points collected or recorded at successive time intervals, used for analyzing temporal properties or trends.
+ true
+
+
+
+
+
+
+
+
+ Torsionsprüfmaschine
+ torsion testing machine
+ A device used to test the resistance of materials to twisting forces by applying a torque and measuring the resulting deformation.
+ Ein Gerät zur Prüfung des Widerstands von Materialien gegenüber Drehkräften durch Anwendung eines Drehmoments und Messung der resultierenden Verformung.
+
+
+
+
+
+
+
+
+ Torsionsprüfverfahren
+ torsion testing process
+ A Mechanical Property Analyzing Process that assesses a material's behavior when subjected to twisting forces, determining its torsional strength and shear modulus.
+ Ein Mechanische Eigenschaften Analyseverfahren, das das Verhalten eines Materials bei Torsionskräften bewertet und seine Torsionsfestigkeit und Schermodul bestimmt.
+ Evaluating the torsional strength of a metal rod used in a mechanical shaft to prevent failure under rotational loads.
+
+
+
+
+
+
+
+
+ triple point
+ The triple point is a phase boundary described by the specific temperature and pressure at which three phases of a substance coexist in equilibrium.
+ true
+
+
+
+
+
+
+
+
+ Ultraschallreiniger
+ ultrasonic cleaner
+ A device that uses ultrasound and a cleaning solvent to clean delicate or complex items.
+ An Ultrasonic Cleaner is a Cleaning Device that uses high-frequency sound waves and a cleaning solvent to remove contaminants from delicate or complex items.
+ Ein Gerät, das Ultraschall und ein Reinigungsmittel verwendet, um empfindliche oder komplexe Gegenstände zu reinigen.
+ Ein Ultraschallreiniger ist ein Reinigungsgerät, das Hochfrequenzschallwellen und ein Reinigungsmittel verwendet, um Verunreinigungen von empfindlichen oder komplexen Gegenständen zu entfernen.
+
+
+
+
+
+
+
+
+ Ultraviolett-Visible-Spektrophotometer
+ ultraviolet visible spectrophotometer
+ A device used to measure the absorbance of a sample in the ultraviolet and visible regions of the electromagnetic spectrum.
+ Ein Gerät zur Messung der Absorption einer Probe im ultravioletten und sichtbaren Bereich des elektromagnetischen Spektrums.
+
+
+
+
+
+
+
+
+ Unsupervised Learning
+ unsupervised machine learning
+ A Machine Learning process that identifies patterns and relationships in data without using labeled outcomes.
+ Ein Maschinelles Lernen Prozess, der Muster und Zusammenhänge in Daten identifiziert, ohne beschriftete Ergebnisse zu verwenden.
+ Using clustering algorithms to group similar materials based on their properties (e.g., hardness, elasticity, thermal conductivity) without prior knowledge of the categories. For instance, discovering new categories of alloy compositions that exhibit similar thermal properties.
+
+
+
+
+
+
+
+
+ Viskosimeter
+ viscometer
+ A device used to measure the viscosity of liquids, providing information about their flow properties.
+ Ein Gerät zur Messung der Viskosität von Flüssigkeiten, das Informationen über ihre Fließeigenschaften liefert.
+
+
+
+
+
+
+
+
+ Viskosimetrie
+ viscometry
+ A Rheological Property Analyzing Process that measures the viscosity of a fluid, which is its resistance to gradual deformation by shear or tensile stress, using viscometers or rheometers.
+ Ein Rheologisches Eigenschaften Analyseverfahren, das die Viskosität einer Flüssigkeit misst, also deren Widerstand gegen allmähliche Verformung durch Scher- oder Zugspannung, unter Verwendung von Viskosimetern oder Rheometern.
+
+
+
+
+
+
+
+
+ Wasseraufbereitungssystem
+ water purification system
+ A Water Purification System is a Device used to remove contaminants from water to produce clean and safe drinking water.
+ Ein Wasseraufbereitungssystem ist ein Gerät, das verwendet wird, um Verunreinigungen aus Wasser zu entfernen, um sauberes und sicheres Trinkwasser herzustellen.
+
+
+
+
+
+
+
+
+ Wasserstrahlschneider
+ waterjet cutter
+ A device that utilizes a high-pressure stream of water or a water stream with abrasive particles to cut materials such as metal, stone, plastic, etc.
+ Ein Gerät, das einen Hochdruckwasserstrahl oder einen Wasserstrahl mit abrasiven Partikeln verwendet, um Materialien wie Metall, Stein, Kunststoff usw. zu schneiden.
+
+
+
+
+
+
+
+
+ waver irradiation
+ A waver irradiation is an irradiation describing an exposure of a material or system to electromagnetic waves or radiation.
+
+
+
+
+
+
+
+
+ Verschleißprüfmaschine
+ wear testing machine
+ A device used to test the wear resistance of materials by subjecting them to abrasive conditions.
+ Ein Gerät zur Prüfung der Verschleißfestigkeit von Materialien durch Aussetzen dieser Bedingungen unter Abrasivbedingungen.
+
+
+
+
+
+
+
+
+ Verschleißprüfverfahren
+ wear testing process
+ A Mechanical Property Analyzing Process that evaluates the resistance of a material to wear and abrasion, simulating real-life conditions of friction.
+ Ein Mechanische Eigenschaften Analyseverfahrenn, das den Widerstand eines Materials gegen Verschleiß und Abrieb bewertet und reale Reibungsbedingungen simuliert.
+ Wear testing of automotive brake pads to ensure longevity and performance under repetitive braking conditions.
+
+
+
+
+
+
+
+
+ Schweißgerät
+ welding device
+ A device used for joining materials by melting them together, typically with the addition of a filler material.
+ Ein Gerät zum Verbinden von Materialien durch Schmelzen, üblicherweise unter Zugabe eines Füllmaterials.
+
+
+
+
+
+
+
+
+ Schweißfunktion
+ welding function
+ A subfunction of joining performed to fuse materials together using welding techniques.
+ Eine Unterfunktion des Verbindens, die durchgeführt wird, um Materialien durch Schweißtechniken zu verbinden.
+ true
+
+
+
+
+
+
+
+
+ Röntgen Analyseverfahren
+ x-ray analyzing process
+ A Structural Property Analyzing Process that uses X-rays to investigate the internal structure, composition, and properties of materials by measuring the interaction of X-rays with the sample.
+ Ein Struktur Eigenschaften Analyseverfahren, das Röntgenstrahlen verwendet, um die innere Struktur, Zusammensetzung und Eigenschaften von Materialien zu untersuchen, indem die Wechselwirkung der Röntgenstrahlen mit der Probe gemessen wird.
+
+
+
+
+
+
+
+
+ Röntgen-Computertomographie
+ x-ray computed tomography
+ A X-ray Analyzing Process, that uses X-rays to create detailed cross-sectional images of an object.
+ Ein Röntgenanalyseverfahren, das Röntgenstrahlen verwendet, um detaillierte Querschnittsbilder eines Objekts zu erstellen.
+ For example, X-ray Computed Tomography can be used to analyze the porosity of cement. This process allows researchers to visualize and quantify the distribution, size, and connectivity of pores within the cement.
+ CT
+
+
+
+
+
+
+
+
+ Beugungsprozess
+ x-ray diffraction process
+ An X-ray Analyzing Process, that involves the interaction of X-rays with the crystalline structure of a material.
+ Ein Röntgenanalyseverfahren, das die Wechselwirkung von Röntgenstrahlen mit der kristallinen Struktur eines Materials umfasst.
+ XRD is used to e.g. determine the crystal structure of newly synthesized compounds to determine the crystal lattice arrangement.
+ XRD
+
+
+
+
+
+
+
+
+ Röntgen-Mapping
+ x-ray mapping
+ An X-ray Analyzing Process that generates a spatial distribution map of the elements within a specimen by scanning the sample with an electron or X-ray beam and detecting the emitted X-rays, providing detailed compositional information across the sample's surface.
+ Ein Röntgenanalyseverfahren, das eine räumliche Verteilungskarte der Elemente innerhalb einer Probe erstellt, indem die Probe mit einem Elektronen- oder Röntgenstrahl abgetastet und die emittierten Röntgenstrahlen detektiert werden, wodurch detaillierte Zusammensetzungsinformationen über die Oberfläche der Probe geliefert werden.
+ An example of an X-ray Mapping process is X-ray Absorption Spectroscopy, X-ray Fluorescence, or X-ray Photoelectron Spectroscopy.
+
+
+
+
+
+
+
+
+ Röntgen-Mikroanalyse
+ x-ray microanalysis
+ An X-ray Analyzing Process that determines the elemental composition and chemical properties of a specimen by detecting and analyzing the characteristic X-rays emitted from the sample when it is irradiated with a focused electron beam.
+ Ein Röntgenanalyseverfahren, das die elementare Zusammensetzung und chemischen Eigenschaften einer Probe bestimmt, indem die charakteristischen Röntgenstrahlen detektiert und analysiert werden, die von der Probe emittiert werden, wenn sie mit einem fokussierten Elektronenstrahl bestrahlt wird.
+ An example for X-ray Microanalysis process is Energy Dispersive X-ray Spectroscopy.
+
+
+
+
+
+
+
+
+ Röntgenspektroskopie
+ x-ray spectroscopy
+ A Spectroscopy Process, that analyzes the interaction of X-rays with matter to determine the material's composition and structure.
+ Ein Spektroskopie Verfahren, das die Wechselwirkung von Röntgenstrahlen mit Materie analysiert, um die Zusammensetzung und Struktur des Materials zu bestimmen.
+ Examples are e.g. X-ray absorption spectroscopy, X-ray emission spectroscopy, and X-ray reflection spectroscopy.
+
+
+
+
+
+
+
+
+ Röntgenbeugungsgerät
+ x-ray diffractometer
+ An X-Ray Diffractometer is a Measuring Device that determines the crystal structure of materials by analyzing the diffraction patterns of X-rays passed through a sample.
+ Ein Röntgenbeugungsgerät ist ein Messgerät, das die Kristallstruktur von Materialien durch Analyse der Beugungsmuster von durch eine Probe geleiteten Röntgenstrahlen bestimmt.
+
+
+
+
+
+
+
+
+ Röntgenanalysator
+ x-ray analyzer
+ A device used to analyze the composition and properties of materials through X-ray techniques such as diffraction or fluorescence.
+ Ein Gerät zur Analyse der Zusammensetzung und Eigenschaften von Materialien durch Röntgenverfahren wie Beugung oder Fluoreszenz.
+
+
+
+
+
+
+
+
+ Röntgen-Computertomographiesystem
+ x-ray computed tomography system
+ A device that uses X-ray computed tomography techniques to produce cross-sectional images of a material.
+ Ein Gerät, das Röntgen-Computertomographietechniken verwendet, um Querschnittsbilder eines Materials zu erstellen.
+
+
+
+
+
+
+
+
+ Röntgenkartierungsgerät
+ x-ray mapping device
+ A device used for mapping the spatial distribution of elements or compounds within a material using X-ray fluorescence or diffraction techniques.
+ Ein Gerät, das zur Kartierung der räumlichen Verteilung von Elementen oder Verbindungen innerhalb eines Materials mithilfe von Röntgenfluoreszenz- oder -beugungstechniken verwendet wird.
+
+
+
+
+
+
+
+
+ Röntgenmikroanalyssystem
+ x-ray microanalysis system
+ A device used for microanalysis of materials using X-ray techniques to determine elemental composition at a microscopic scale.
+ Ein Gerät zur Mikroanalyse von Materialien unter Verwendung von Röntgentechniken zur Bestimmung der Elementzusammensetzung auf mikroskopischer Ebene.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ cutting device
+ A device designed to cut, slice, divide, or sever objects.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ hand held device
+ A device that has the disposition to be grasped and operated by a human hand and is designed for manual use.
+
+
+
+
+
+
+
+
+ phase (spatial)
+ A phase is a 3D spatial region occupied by a Portion Of Matter whose qualities or dispositions or Material Properties are (considered) uniform at the length scale of interest.
+ true
+
+
+
+
+
+
+
+
+ filler role
+ Filler is the role of a PortionOfDisconnectedMatter that implies being hosted in a Matrix.
+ true
+
+
+
+
+
+
+
+
+ precipitate role
+ Precipitate is the role of a Portion Of Matter that implies being hosted in a Matrix and the Precipitate derives from the Matrix or the Precipitate derives from the Thing that the Matrix derives from.
+ true
+
+
+
+
+
+
+
+
+ crystal
+ A crystal is an object that has part some entities that concretize a Bravais lattice.
+ true
+
+
+
+
+
+
+
+
+ chemical composition specification
+ A 'chemical composition specification' is an information content entity that 'specifies the value of' the chemical components of a material. The chemical components that are quanitfied are the 'portions of atomic species' or 'portions of matter' that the material 'consists of'. A 'chemical composition specification' 'has continuant parts' that quantify the mass proportions or molar proportions that the material 'conists of'.
+ A 'portion of steel' has a quality 'chemical composition CC'. The 'chemical composition specification CCS' specifies the value of CC and 'has continuant part' some 'scalar value specifications SVS_Fe and SVS_C'. SVS_Fe 'specifies the value of' the relational property 'mass proportion' that inheres in the 'portion of steel' as well as the 'portion of iron' that the steel 'consists of'. SVS_C 'specifies the value of' the relational property 'mass proportion' that inheres in the 'proportion of steel' as well as the 'portion of carbon' that the steel 'consists of'.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ metallic grain structures
+ Metallic grain structures are descriptors for the morphology of polycrystalline metallic materials. Polycrystalline metallic materials will typically form their grain structures as one of those categories or a transition or mixture state of those.
+ true
+
+
+
+
+
+
+
+
+ hydrogen bond
+ A hydrogen bond is a bond that binds one molecule’s hydrogen atom with the electronegative atoms of another molecule.
+ The bond that forms between liquid water molecules at one molecules hydrogen ends and the other molecules oxigen end.
+ true
+
+
+
+
+
+
+
+
+ TODO: it is not clear if we really need the 'Portion of pure substance" or if we can just refer to the respecitve chemical entity directly (e.g. in chemical composition).
+ pure substance
+ Portion of Chemical Entity
+ A Pure Substance is a Portion Of Matter that 'has part' only one kind of chebi:chemical entity or other similar entity. It has no structural qualities or realizable entites beyond representing its parts of a single enitiy type.
+ Pure water, a portion of iron atoms. Refer to: http://purl.obolibrary.org/obo/CHEBI_24431
+In contrast, salt water 'consists of' a portion of pure water and a portion of pure NaCl. Steel 'consists of ' a 'portion of pure iron', a 'portion of pure carbon' and possibly portions of other alloying- and impurity-elements.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only Iron atoms.
+ portion of iron
+ A 'Portion Of Iron' is a 'Poriton Of Pure Substance' that 'consists of' only chebi:iron atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only indium atoms.
+ portion of indium
+ A 'Portion Of Indium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:indium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only chromium atoms.
+ portion of chromium
+ A 'Portion Of Chromium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:chromium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only carbon atoms.
+ portion of carbon
+ A 'Portion Of Carbon' is a 'Portion Of Pure Substance' that 'consists of' only chebi:carbon atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only germanium atoms.
+ portion of germanium
+ A 'Portion Of Germanium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:germanium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only tungsten atoms.
+ portion of tungsten
+ A 'Portion Of Tungsten' is a 'Portion Of Pure Substance' that 'consists of' only chebi:tungsten.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only erbium atoms.
+ portion of erbium
+ A 'Portion Of Erbium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:erbium.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only molybdenum atoms.
+ portion of molybdenum
+ A 'Portion Of Molybdenum' is a 'Portion Of Pure Substance' that 'consists of' only chebi:molybdenum atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only niobium atoms.
+ portion of niobium
+ A 'Portion Of Niobium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:niobium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only rhenium atoms.
+ portion of rhenium
+ A 'Portion Of Rhenium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:rhenium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only lithium atoms.
+ portion of lithium
+ A 'Portion Of Lithium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:lithium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only nitrogen atoms.
+ portion of nitrogen
+ A 'Portion Of Nitrogen' is a 'Portion Of Pure Substance' that 'consists of' only chebi:nitrogen atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only cobalt atoms.
+ portion of cobalt
+ A 'Portion Of Cobalt' is a 'Portion Of Pure Substance' that 'consists of' only chebi:cobalt atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only gold atoms.
+ portion of gold
+ A 'Portion Of Gold' is a 'Portion Of Pure Substance' that 'consists of' only chebi:gold atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only argon atoms.
+ portion of argon
+ A 'Portion Of Argon' is a 'Portion Of Pure Substance' that 'consists of' only chebi:argon atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only cadmium atoms.
+ portion of cadmium
+ A 'Portion Of Cadmium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:cadmium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only barium atoms.
+ portion of barium
+ A 'Portion Of Barium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:barium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only tantalum atoms.
+ portion of tantalum
+ A 'Portion Of Tantalum' is a 'Portion Of Pure Substance' that 'consists of' only chebi:tantalum atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only antimony atoms.
+ portion of antimony
+ A 'Portion Of Antimony' is a 'Portion Of Pure Substance' that 'consists of' only chebi:antimony atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only potassium atoms.
+ portion of potassium
+ A 'Portion Of Potassium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:potassium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only phosphorus atoms.
+ portion of phosphorus
+ A 'Portion Of Phosphorus' is a 'Portion Of Pure Substance' that 'consists of' only chebi:phosphorus atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only boron atoms.
+ portion of boron
+ A 'Portion Of Boron' is a 'Portion Of Pure Substance' that 'consists of' only chebi:boron atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only helium atoms.
+ portion of helium
+ A 'Portion Of Helium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:helium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only silicon atoms.
+ portion of silicon
+ A 'Portion Of Silicon' is a 'Portion Of Pure Substance' that 'consists of' only chebi:silicon atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only nickel atoms.
+ portion of nickel
+ A 'Portion Of Nickel' is a 'Portion Of Pure Substance' that 'consists of' only chebi:nickel atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only yttrium atoms.
+ portion of yttrium
+ A 'Portion Of Yttrium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:yttrium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only zirconium atoms.
+ portion of zirconium
+ A 'Portion Of Zirconium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:zirconium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only copper atoms.
+ portion of copper
+ A 'Portion Of Copper' is a 'Portion Of Pure Substance' that 'consists of' only chebi:copper atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only bohrium atoms.
+ portion of bohrium
+ A 'Portion Of Bohrium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:bohrium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only fluorine atoms.
+ portion of fluorine
+ A 'Portion Of Fluorine' is a 'Portion Of Pure Substance' that 'consists of' only chebi:fluorine atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only platinum atoms.
+ portion of platinum
+ A 'Portion Of Platinum' is a 'Portion Of Pure Substance' that 'consists of' only chebi:platinum.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only cerium atoms.
+ portion of cerium
+ A 'Portion Of Cerium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:cerium.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only sulfur atoms.
+ portion of sulfur
+ A 'Portion Of Sulfur' is a 'Portion Of Pure Substance' that 'consists of' only chebi:sulfur atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only lead atoms.
+ portion of lead
+ A 'Portion Of Lead' is a 'Portion Of Pure Substance' that 'consists of' only chebi:lead atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only krypton atoms.
+ portion of krypton
+ A 'Portion Of Krypton' is a 'Portion Of Pure Substance' that 'consists of' only chebi:krypton atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only bismuth atoms.
+ portion of bismuth
+ A 'Portion Of Bismuth' is a 'Portion Of Pure Substance' that 'consists of' only chebi:bismuth atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only neon atoms.
+ portion of neon
+ A 'Portion Of Neon' is a 'Portion Of Pure Substance' that 'consists of' only chebi:neon atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only thallium atoms.
+ portion of thallium
+ A 'Portion Of Thallium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:thallium.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only selenium atoms.
+ portion of selenium
+ A 'Portion Of Selenium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:selenium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only ruthenium atoms.
+ portion of ruthenium
+ A 'Portion Of Ruthenium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:ruthenium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only magnesium atoms.
+ portion of magnesium
+ A 'Portion Of Magnesium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:magnesium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only zinc atoms.
+ portion of zinc
+ A 'Portion Of Zinc' is a 'Portion Of Pure Substance' that 'consists of' only chebi:zinc atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only mercury atoms.
+ portion of mercury
+ A 'Portion Of Mercury' is a 'Portion Of Pure Substance' that 'consists of' only chebi:mercury atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only xenon atoms.
+ portion of xenon
+ A 'Portion Of Xenon' is a 'Portion Of Pure Substance' that 'consists of' only chebi:xenon atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only aluminium atoms.
+ portion of aluminium
+ A 'Portion Of Aluminium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:aluminium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only sodium atoms.
+ portion of sodium
+ A 'Portion Of Sodium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:sodium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only iodine atoms.
+ portion of iodine
+ A 'Portion Of Iodine' is a 'Portion Of Pure Substance' that 'consists of' only chebi:iodine atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only caesium atoms.
+ portion of caesium
+ A 'Portion Of Caesium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:caesium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only chlorine atoms.
+ portion of chlorine
+ A 'Portion Of Chlorine' is a 'Portion Of Pure Substance' that 'consists of' only chebi:chlorine atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only silver atoms.
+ portion of silver
+ A 'Portion Of Silver' is a 'Portion Of Pure Substance' that 'consists of' only chebi:silver atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only samarium atoms.
+ portion of samarium
+ A 'Portion Of Samarium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:samarium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only manganese atoms.
+ portion of manganese
+ A 'Portion Of Manganese' is a 'Portion Of Pure Substance' that 'consists of' only chebi:manganese atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only arsenic atoms.
+ portion of arsenic
+ A 'Portion Of Arsenic' is a 'Portion Of Pure Substance' that 'consists of' only chebi:arsenic atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only beryllium atoms.
+ portion of beryllium
+ A 'Portion Of Beryllium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:beryllium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only calcium atoms.
+ portion of calcium
+ A 'Portion Of Calcium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:calcium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only neodymium atoms.
+ portion of neodymium
+ A 'Portion Of Neodymium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:neodymium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only hydrogen atoms.
+ portion of hydrogen
+ A 'Portion Of Hydrogen' is a 'Portion Of Pure Substance' that 'consists of' only chebi:hydrogen atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only osmium atoms.
+ portion of osmium
+ A 'Portion Of Osmium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:osmium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only iridium atoms.
+ portion of iridium
+ A 'Portion Of Iridium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:iridium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only gallium atoms.
+ portion of gallium
+ A 'Portion Of Gallium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:gallium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only bromine atoms.
+ portion of bromine
+ A 'Portion Of Bromine' is a 'Portion Of Pure Substance' that 'consists of' only chebi:bromine atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only tin atoms.
+ portion of tin
+ A 'Portion Of Tin' is a 'Portion Of Pure Substance' that 'consists of' only chebi:tin atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only hafnium atoms.
+ portion of hafnium
+ A 'Portion Of Hafnium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:hafnium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only uranium atoms.
+ portion of uranium
+ A 'Portion Of Uranium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:uranium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only oxygen atoms.
+ portion of oxygen
+ A 'Portion Of Oxygen' is a 'Portion Of Pure Substance' that 'consists of' only chebi:oxygen atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only palladium atoms.
+ portion of palladium
+ A 'Portion Of Palladium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:palladium.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only vanadium atoms.
+ portion of vanadium
+ A 'Portion Of Vanadium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:vanadium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only scandium atoms.
+ portion of scandium
+ A 'Portion Of Scandium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:scandium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A Portion Of Matter that consists of only titanium atoms.
+ portion of titanium
+ A 'Portion Of Titanium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:titanium atom.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ steel
+ Steel is a ferrous alloy that consists of iron and carbon and possibly other alloying elements (and possibly impurities).
+ true
+
+
+
+
+
+
+
+
+ nature constant
+ A nature constant is a generically dependent continuant whose value, magintude or configuration is determined by nature including physics and mathematics.
+ Examples of nature constants are the speed of light, pi, and the 14 Bravais lattices.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bravais lattice (3d)
+ The Bravais Lattice is a nature constant that describes the possible geometric arrangement of lattice points in a crystal. The present descriptor is limited to the 14 possible three-dimensional arrangements.
+
+TODO: possibly extend for 2D (Graphene etc)
+
+More elaborate crystal descriptions may be found in http://emmo.info/domain-crystallography/crystallography or https://purls.helmholtz-metadaten.de/disos/cso
+ true
+
+
+
+
+
+
+
+
+
+ proportion
+ concentration
+ fraction
+ A Proportion is a relational quality between two entites (the whole and the part) which quantifies the relation between the whole and its part.
+ true
+
+
+
+
+
+
+
+
+ mass proportion
+ The Mass Proportion is a Proportion which quantifies the mass of the part relative to the mass of the whole.
+ true
+
+
+
+
+
+
+
+
+ molar proportion
+ Molar Ratio
+ The Molar Proportion is the proportion which quantifies the entities count of the part in relation to the entites count of the whole.
+ The molar ratio of hydrogen gas H2 molecules to water H2O molecules is 1/1 in the oxyhydrogen reaction. The molar ratio of oxigen molecules O2 to water molecules is 2/1.
+The molar ratio of carbon dioxide to average atmosphere air is 420 ppm as of 2022 AD.
+ true
+
+
+
+
+
+
+
+
+ volume proportion
+ The Mass Proportion is a Proportion which quantifies the volume of the part relative to the volume of the whole.
+ true
+
+
+
+
+
+
+
+
+ mineral
+ A mineral is a material that has part some crystal.
+ true
+
+
+
+
+
+
+
+
+ polycrystal
+ Polycrystal is an object aggregate that has continuant part some crystal grains
+ true
+
+
+
+
+
+
+
+
+ graphite
+ A mineral that has part some crystal that in turn consists of some portion of carbon
+ true
+
+
+
+
+
+
+
+
+ grain size distribution
+ An intensive quality describing the lower length scale object aggregate (grains) that is part of the material.
+ true
+
+
+
+
+
+
+
+
+ fluid (object)
+ fuild (object) is an object that consists of some portion of matter which bears an aggregate state that concretizes a liquid or gaseous aggregate state.
+
+
+
+
+
+
+
+
+ medium role
+ Medium role is a role beared by an object which implies that the object serves as an intermediary for the transmission of something else, like energy, force, or information.
+ Air in the air cooling process, N2 atmosphere in a furnace cooling process, oil in a quenching process, crystal lattice in a solid state diffusion
+
+
+
+
+
+
+
+
+ aerosol
+ An aerosol is a disconnected material entity aggregate which:
+1. consists of some portion of matter whose aggregate state quality concretizes gasous and
+2. consists of some portion of matter whose aggregate state quality concretises solid or liquid (TODO: express that this portion is also a disconnected material entity aggregate)
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ aggregate state value
+ The aggregate state type is a nature constant that concretizes the aggregatge state quality.
+ true
+
+
+
+
+
+
+
+
+ foam
+ A foam is a material entity aggregate that conssists of some 'Composite Material' c.
+The parts of c that bear the filler role are vacuum-filled or gas filled pores.
+The parts of c that bear the matrix role consist of a material that is bearer of solid or liquid aggregate state.
+One pore with its sourrounding matrix is called 'cell'.
+Depending of the interconnectedness of the pores the foam is open- or closed-cell.
+ true
+
+
+
+
+
+
+
+
+ thermodynamic system
+ A thermodynamic system is an object aggregate whose objects are bearer of thermodynamic properties. A thermodynamic system environs a thermodynamic process by which the thermodynamic properties of the objects of the thermodynamic system change over time.
+ true
+
+
+
+
+
+
+
+
+ reversible process
+ A reversible process is a process whose participants form a thermodynamic system with an entropy S and S remains constant during the process.
+ true
+
+
+
+
+
+
+
+
+
+ intensive quality
+ Point property
+ An intensive quality is a qualty that inheres in only portion of matter and thus is independent of the bearers (system-) size.
+ true
+
+
+
+
+
+
+
+
+ size
+ Size is the quality of a material entity that describes its spatial extend.
+ true
+
+
+
+
+
+
+
+
+ Mass is relevant in such processes as gravitation, acceleration, etc.
+ mass
+ Mass is fundamental extensive quality.
+ true
+
+
+
+
+
+
+
+
+ stimulus role
+ The stimulus role is a role that an object bears in a process when causally influencing another object that bears a stimulation target role in the same process. 'Role' implies here, that the 'bearing' assignment depends on the intent.
+
+
+
+
+
+
+
+
+ stimulation target role
+ See 'Stimulus role'
+
+
+
+
+
+
+
+
+
+ lot
+ A lot is an object aggregate whose parts are output of the same prodction process.
+
+
+
+
+
+
+
+
+ Schmelze
+ melt
+ A melt is an object (material entity) that exists in a liquid state as a result of the phase transition from solid due to thermal energy input. In materials science, it typically refers to metals, alloys, or other substances maintained above their melting point.
+ Eine Schmelze ist ein Objekt (eine materielle Einheit), das aufgrund des Phasenübergangs von einem Festkörper durch thermische Energiezufuhr in einem flüssigen Zustand vorliegt. In der Werkstoffkunde bezieht sich der Begriff in der Regel auf Metalle, Legierungen oder andere Stoffe, die oberhalb ihres Schmelzpunkts gehalten werden.
+ A pool of molten steel during casting.
+
+
+
+
+
+
+
+
+
+ energy
+ Energy is a quality of material entities which manifests as a capacity to perform work (such as causing motion or the interaction of molecules)
+ true
+
+
+
+
+
+
+
+
+ process chain
+ A process chain is a process that 'has contiuant part' subprocesses S1...Sn where S1...Sn precede each other and where some object or object aggregate that are output of Sn are then input to Sn+1.
+
+
+
+
+
+
+
+
+ product (chemical reaction)
+ Product is the role of a material entity that is output of a chemical reaction and is created or transformed during the reaction.
+
+
+
+
+
+
+
+
+ educt
+ Educt is the role of a material entity that is input of a chemical reaction and is consumed or transformed during the reaction
+
+
+
+
+
+
+
+
+ catalyst
+ Catalyst is the role of a participant in a chemical reaction that does not alter its qualities/realizable entities after the chemical reaction.
+
+
+
+
+
+
+
+
+ extensive quality
+ An extensive quality is a qualty that inheres in only object or object aggregate or fiat object part or chemical entity and is dependent on the bearers (system-) size.
+ true
+
+
+
+
+
+
+
+
+ volume
+ Volume is a three dimensional size.
+ true
+
+
+
+
+
+
+
+
+ internal energy
+ Internal energy is a universal extensive quality that specifies the bearers potential to do work.
+ true
+
+
+
+
+
+
+
+
+ component
+ A component is an object aggregate that bears a function in a technical system.
+
+
+
+
+
+
+
+
+ technical system
+ A technical system is an object aggretate:
+1. that is output of a manufacturing process,
+2. that bears some function
+3. whose continuant parts are some components.
+
+
+
+
+
+
+
+
+ interatomic interaction energy
+ Interatomic interaction energy is added/removed from the atom aggregate if one atom is moved infinitely away from the rest of the aggregate.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ heat (metallurgy)
+ A heat is a fixed amount of metallic alloy that may be input to some Manifacturing Process.
+
+
+
+
+
+
+
+
+ Fläche
+ area
+ Area a two dimesional size
+ Section area or a surface area
+
+
+
+
+
+
+
+
+ force
+ Force is a reciprocal relation realized between two objects where the other object exerces the same force with opposite sign onto the first. Force may be responsible for changes in velocity and/or deformation of objects.
+ true
+
+
+
+
+
+
+
+
+ section
+ Section is a planar fiat surface cutting across the object
+
+
+
+
+
+
+
+
+ crack
+ A crack is a physical separation of a material entity at the level of (atomic) Bonds.
+ true
+
+
+
+
+
+
+
+
+ notch
+ A notch is a geometric feature of the 'surface layer' of an object that introduces a strong change in shape or cross section.
+ true
+
+
+
+
+
+
+
+
+ pore
+ A pore is a cavity in the 'bulk' of an object
+ true
+
+
+
+
+
+
+
+
+ defect role
+ A defect role is a role of an independent continuant C indicating that C may affect a material entity E's ability to realize a function. C is continuant part of E.
+ A crack in an structural member may affect its ability to carry a load.
+ true
+
+
+
+
+
+
+
+
+ amount of substance
+ Amount of substance n is a molar propotion when the whole is a object aggregate N, which has Avogadro number objects (of same type) as parts (n = N/N_A).
+
+
+
+
+
+
+
+
+ operation
+
+
+
+
+
+
+
+
+ alteration of quality
+
+
+
+
+
+
+
+
+ Length is a size that describes the spacial extend of its bearer in one dimension.
+ length
+ dimension
+ Length is a one dimensional size.
+ true
+
+
+
+
+
+
+
+
+
+ geospatial site
+ site at or near the surface of the earth
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ geospatial location
+ geospatial site that is the location of some material entity at some time or the site of some process
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainObjectiveSpecification
+ supply chain objective specification
+ objective specification that prescribes what the outcome of a supply chain process should be
+
+
+
+
+
+
+
+
+ storage function
+ function of an material entity to store other material entities
+
+
+
+
+
+
+
+
+ bond
+ A bond is a relational quality describing the force interaction between atoms.
+ true
+
+
+
+
+
+
+
+
+
+ covalent bond
+ A covalent bond is a bond that forms when nonmetal atoms share electrons to achieve a stable electron configuration.
+ In a water molecule (H₂O), the hydrogen and oxygen atoms share electrons.
+ true
+
+
+
+
+
+
+
+
+
+ metallic bond
+ A metallic bond is a bond that forms between metal atoms, where electrons are shared in a "sea" of electrons that move freely around the metal ions. This type of bonding gives metals their characteristic properties such as conductivity and malleability.
+ true
+
+
+
+
+
+
+
+
+
+ ionic bond
+ An ionic bond is a bond that occurs when one atom donates an electron to another atom, resulting in oppositely charged ions that attract each other.
+ An example is the interaction between the atoms of sodium chloride (NaCl), where the sodium atom donates an electron to a chlorine atom.
+ true
+
+
+
+
+
+
+
+
+ thermoplastics
+ A Thermoplastic is a Polymer that becomes moldable when heated and solidifies upon cooling.
+ true
+
+
+
+
+
+
+
+
+ polyethylene
+ Polyethylene is a Thermoplastic that is composed of repeating ethylene monomer units.
+ true
+ PE
+
+
+
+
+
+
+
+
+ low-density polyethylene
+ Low-Density Polyethylene is a Polyethylene that is characterized by a branched molecular structure and low density.
+ true
+ PE-LD
+
+
+
+
+
+
+
+
+ high-density polyethylene
+ High-Density Polyethylene is a Polyethylene that is characterized by a linear molecular structure and high density.
+ true
+ PE-HD
+
+
+
+
+
+
+
+
+ linear low-density polyethylene
+ Linear Low-Density Polyethylene is a Polyethylene that is distinguished by its linear backbone with short-chain branching.
+ true
+ PE_LLD
+
+
+
+
+
+
+
+
+ polypropylene
+ Polypropylene is a Thermoplastic that is composed of repeating propylene monomer units.
+ true
+ PP
+
+
+
+
+
+
+
+
+ isotactic polypropylene
+ Isotactic Polypropylene is a Polypropylene in which all the methyl groups are aligned on the same side of the polymer chain.
+ true
+ iPP
+
+
+
+
+
+
+
+
+ syndiotactic polypropylene
+ Syndiotactic Polypropylene is a Polypropylene in which the methyl groups alternate regularly along the polymer chain.
+ true
+ sPP
+
+
+
+
+
+
+
+
+ atactic polypropylene
+ Atactic Polypropylene is a Polypropylene in which the methyl groups are randomly distributed along the polymer chain.
+ true
+ aPP
+
+
+
+
+
+
+
+
+ polyvinyl chloride
+ Polyvinyl Chloride is a Thermoplastic that is formed by the polymerization of vinyl chloride monomers.
+ true
+ PVC
+
+
+
+
+
+
+
+
+ rigid polyvinyl chloride
+ Rigid PVC is a Polyvinyl Chloride that is characterized by its stiffness and durability.
+ true
+ uPVC
+
+
+
+
+
+
+
+
+ flexible polyvinyl chloride
+ Flexible PVC is a Polyvinyl Chloride that has been modified with plasticizers to impart flexibility.
+ true
+ fPVC
+
+
+
+
+
+
+
+
+ polystyrene
+ Polystyrene is a Thermoplastic that is produced by the polymerization of styrene monomers.
+ true
+ PS
+
+
+
+
+
+
+
+
+ general purpose polystyrene
+ General Purpose Polystyrene is a Polystyrene that is valued for its clarity and ease of processing.
+ true
+
+
+
+
+
+
+
+
+ high impact polystyrene
+ High Impact Polystyrene is a Polystyrene that is modified with rubber to improve its impact resistance.
+ true
+
+
+
+
+
+
+
+
+ polyethylene terephthalate
+ Polyethylene Terephthalate is a Thermoplastic that is synthesized from terephthalic acid and ethylene glycol.
+ true
+ PET
+
+
+
+
+
+
+
+
+ amorphous polyethylene terephthalate
+ Amorphous PET is a Polyethylene Terephthalate that is characterized by a non-crystalline structure.
+ true
+ APET
+
+
+
+
+
+
+
+
+ crystalline polyethylene terephthalate
+ Crystalline PET is a Polyethylene Terephthalate that is distinguished by its ordered, crystalline structure.
+ true
+ CPET
+
+
+
+
+
+
+
+
+ thermosetting polymers
+ A Thermosetting Polymer is a Polymer that, once cured, irreversibly sets into a permanent shape.
+ true
+
+
+
+
+
+
+
+
+ epoxy resins
+ Epoxy Resins are Thermosetting Polymers that form rigid, cross-linked networks upon curing.
+ true
+
+
+
+
+
+
+
+
+ bisphenol a epoxy
+ Bisphenol A Epoxy is an Epoxy Resin that is formulated using bisphenol A to enhance its mechanical properties.
+ true
+
+
+
+
+
+
+
+
+ novolac epoxy
+ Novolac Epoxy is an Epoxy Resin that is based on novolac resins to provide improved thermal and chemical resistance.
+ true
+
+
+
+
+
+
+
+
+ phenolic resins
+ Phenolic Resins are Thermosetting Polymers formed by the reaction of phenol with formaldehyde.
+ true
+
+
+
+
+
+
+
+
+ phenol-formaldehyde resin
+ Phenol-Formaldehyde Resin is a Phenolic Resin that is synthesized from phenol and formaldehyde.
+ true
+
+
+
+
+
+
+
+
+ melamine formaldehyde
+ Melamine Formaldehyde is a Thermosetting Polymer produced from melamine and formaldehyde, known for its high hardness.
+ true
+
+
+
+
+
+
+
+
+ urea formaldehyde
+ Urea Formaldehyde is a Thermosetting Polymer formed from urea and formaldehyde, commonly used in adhesives and molding compounds.
+ true
+
+
+
+
+
+
+
+
+ elastomers
+ An Elastomer is a Polymer that exhibits elasticity by returning to its original shape after deformation.
+ true
+
+
+
+
+
+
+
+
+ natural rubber
+ Natural Rubber is an Elastomer that is derived from the latex of rubber trees.
+ true
+
+
+
+
+
+
+
+
+ synthetic rubber
+ Synthetic Rubber is an Elastomer that is produced through chemical synthesis to mimic natural rubber’s properties.
+ true
+
+
+
+
+
+
+
+
+ styrene-butadiene rubber
+ Styrene-Butadiene Rubber is a Synthetic Rubber that is composed of styrene and butadiene to enhance abrasion resistance.
+ true
+
+
+
+
+
+
+
+
+ nitrile butadiene rubber
+ Nitrile Butadiene Rubber is a Synthetic Rubber that is formulated from acrylonitrile and butadiene to provide resistance to oils and chemicals.
+ true
+
+
+
+
+
+
+
+
+ ethylene propylene diene monomer
+ Ethylene Propylene Diene Monomer is a Synthetic Rubber produced from ethylene, propylene, and a diene monomer to offer excellent weather resistance.
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ biodegradable polymers
+ Biodegradable Polymers are Polymers that can be decomposed by biological organisms into environmentally benign substances.
+ true
+ https://github.com/materialdigital/core-ontology/issues/126
+
+
+
+
+
+
+
+
+ polylactic acid
+ Polylactic Acid is a Biodegradable Polymer produced from renewable resources such as corn starch.
+ true
+
+
+
+
+
+
+
+
+ polyhydroxyalkanoates
+ Polyhydroxyalkanoates are Biodegradable Polymers that are biosynthesized by microorganisms from sugars or lipids.
+ true
+
+
+
+
+
+
+
+
+ polybutylene succinate
+ Polybutylene Succinate is a Biodegradable Polymer that is a thermoplastic polyester recognized for its compostability.
+ true
+
+
+
+
+
+
+
+
+ natural ceramics
+ Natural Ceramics (Traditional Ceramics) are Ceramics that are produced using conventional methods with natural raw materials such as clay and silica.
+ true
+
+
+
+
+
+
+
+
+ silicate ceramics
+ Silicate Ceramics are Traditional Ceramics that are composed primarily of silicate minerals.
+ true
+
+
+
+
+
+
+
+
+ clay-based ceramics
+ Clay-Based Ceramics are Silicate Ceramics that are formed from natural clays.
+ true
+
+
+
+
+
+
+
+
+ earthenware
+ Earthenware is a Clay-Based Ceramic that is formed at relatively low temperatures, resulting in a porous, rustic material.
+ true
+
+
+
+
+
+
+
+
+ stoneware
+ Stoneware is a Clay-Based Ceramic that is fired at higher temperatures than earthenware to yield a denser, more durable material.
+ true
+
+
+
+
+
+
+
+
+ porcelain
+ Porcelain is a Clay-Based Ceramic that is distinguished by its translucency, strength, and refined appearance.
+ true
+
+
+
+
+
+
+
+
+ aluminosilicates
+ Aluminosilicates are Silicate Ceramics that consist of aluminum and silicon oxides.
+ true
+
+
+
+
+
+
+
+
+ mullite
+ Mullite is an Aluminosilicate that is a Silicate Ceramic known for its excellent high-temperature stability.
+ true
+
+
+
+
+
+
+
+
+ kaolinite
+ Kaolinite is an Aluminosilicate that is a Silicate Ceramic based on the mineral kaolinite, valued for its fine particle size and plasticity.
+ true
+
+
+
+
+
+
+
+
+ non-clay ceramics
+ Non-Clay Ceramics are Traditional Ceramics that are formed from raw materials other than clay.
+ true
+
+
+
+
+
+
+
+
+
+ glass-ceramics
+ Glass-Ceramics are Non-Clay Ceramics that are produced by controlled crystallization of glass, combining properties of both glass and ceramics.
+ true
+
+
+
+
+
+
+
+
+ leucite-based glass-ceramics
+ Leucite-Based Glass-Ceramics are Glass-Ceramics that are Non-Clay Ceramics containing leucite crystals to enhance thermal and mechanical properties.
+ true
+
+
+
+
+
+
+
+
+ fritted ceramics
+ Fritted Ceramics are Non-Clay Ceramics that are manufactured by fusing and subsequently grinding glass materials.
+ true
+
+
+
+
+
+
+
+
+ technical ceramics
+ Technical Ceramics (Advanced Ceramics) are Ceramics that are engineered for high-performance applications.
+ true
+
+
+
+
+
+
+
+
+ oxide ceramics
+ Oxide Ceramics are Advanced Ceramics that are composed primarily of metal oxides.
+ true
+
+
+
+
+
+
+
+
+ alumina
+ Alumina is an Oxide Ceramic that is an Advanced Ceramic composed of aluminum oxide, renowned for its hardness and insulation properties.
+ true
+ Al₂O₃
+
+
+
+
+
+
+
+
+ zirconia
+ Zirconia is an Oxide Ceramic that is an Advanced Ceramic composed of zirconium dioxide, noted for its high strength and toughness.
+ true
+ ZrO₂
+
+
+
+
+
+
+
+
+ yttria-stabilized zirconia
+ Yttria-Stabilized Zirconia is a Zirconia that is an Oxide Ceramic stabilized with yttria to enhance its thermal and mechanical performance.
+ true
+ YSZ
+
+
+
+
+
+
+
+
+ magnesia-stabilized zirconia
+ Magnesia-Stabilized Zirconia is a Zirconia that is an Oxide Ceramic stabilized with magnesia to improve its thermal stability.
+ true
+ MSZ
+
+
+
+
+
+
+
+
+ titania
+ Titania is an Oxide Ceramic that is an Advanced Ceramic composed of titanium dioxide, used for its photocatalytic and pigment properties.
+ true
+ TiO₂
+
+
+
+
+
+
+
+
+ beryllia
+ Beryllia is an Oxide Ceramic that is an Advanced Ceramic composed of beryllium oxide, valued for its high thermal conductivity and electrical insulation.
+ true
+ BeO
+
+
+
+
+
+
+
+
+ non-oxide ceramics
+ Non-Oxide Ceramics are Advanced Ceramics that are composed of compounds other than metal oxides.
+ true
+
+
+
+
+
+
+
+
+ carbide ceramics
+ Carbide Ceramics are Non-Oxide Ceramics that consist of metal carbides.
+ true
+
+
+
+
+
+
+
+
+ silicon carbide
+ Silicon Carbide is a Carbide Ceramic that is a Non-Oxide Ceramic composed of silicon and carbon, celebrated for its high hardness and thermal conductivity.
+ true
+ SiC
+
+
+
+
+
+
+
+
+ tungsten carbide
+ Tungsten Carbide is a Carbide Ceramic that is a Non-Oxide Ceramic composed of tungsten and carbon, recognized for its exceptional wear resistance.
+ true
+ WC
+
+
+
+
+
+
+
+
+ boron carbide
+ Boron Carbide is a Carbide Ceramic that is a Non-Oxide Ceramic composed of boron and carbon, known for its remarkable hardness and low density.
+ true
+ B₄C
+
+
+
+
+
+
+
+
+ nitride ceramics
+ Nitride Ceramics are Non-Oxide Ceramics that are composed of metal nitrides.
+ true
+
+
+
+
+
+
+
+
+ silicon nitride
+ Silicon Nitride is a Nitride Ceramic that is a Non-Oxide Ceramic composed of silicon and nitrogen, offering high fracture toughness.
+ true
+ Si₃N₄
+
+
+
+
+
+
+
+
+ aluminum nitride
+ Aluminum Nitride is a Nitride Ceramic that is a Non-Oxide Ceramic composed of aluminum and nitrogen, prized for its high thermal conductivity.
+ true
+ AlN
+
+
+
+
+
+
+
+
+ boron nitride
+ Boron Nitride is a Nitride Ceramic that is a Non-Oxide Ceramic composed of boron and nitrogen, with a structure analogous to graphite.
+ true
+ BN
+
+
+
+
+
+
+
+
+ boride ceramics
+ Boride Ceramics are Non-Oxide Ceramics that consist of metal borides.
+ true
+
+
+
+
+
+
+
+
+ titanium diboride
+ Titanium Diboride is a Boride Ceramic that is a Non-Oxide Ceramic composed of titanium and boron, valued for its high hardness and melting point.
+ true
+ TiB₂
+
+
+
+
+
+
+
+
+ zirconium diboride
+ Zirconium Diboride is a Boride Ceramic that is a Non-Oxide Ceramic composed of zirconium and boron, known for its excellent thermal conductivity and stability.
+ true
+ ZrB₂
+
+
+
+
+
+
+
+
+ composite ceramics
+ Composite Ceramics are Advanced Ceramics that are produced by combining two or more ceramic phases to enhance overall performance.
+ true
+
+
+
+
+
+
+
+
+ oxide-oxide composites
+ Oxide-Oxide Composites are Composite Ceramics that consist entirely of oxide ceramic phases.
+ true
+
+
+
+
+
+
+
+
+ alumina matrix composites
+ Alumina Matrix Composites are Oxide-Oxide Composites that use alumina as the primary matrix reinforced by secondary oxide phases.
+ true
+
+
+
+
+
+
+
+
+ zirconia matrix composites
+ Zirconia Matrix Composites are Oxide-Oxide Composites that use zirconia as the primary matrix reinforced by additional oxide phases.
+ true
+
+
+
+
+
+
+
+
+ non-oxide composites
+ Non-Oxide Composites are Composite Ceramics that are formed by combining ceramic phases other than oxides.
+ true
+
+
+
+
+
+
+
+
+ silicon carbide matrix composites
+ SiC Matrix Composites are Non-Oxide Composites that are built with silicon carbide as the primary matrix reinforced by other ceramic phases.
+ true
+
+
+
+
+
+
+
+
+ carbon-silicon carbide composites (carbon-silicon carbide)
+ C-SiC Composites are Non-Oxide Composites that consist of a carbon matrix reinforced with silicon carbide, enhancing high-temperature performance.
+ true
+
+
+
+
+
+
+
+
+ electroceramics
+ Electroceramics are Ceramics that are specifically engineered for electrical, magnetic, or superconducting applications.
+ true
+
+
+
+
+
+
+
+
+ dielectric ceramics
+ Dielectric Ceramics are Electroceramics that serve primarily as electrical insulators due to their high dielectric constants.
+ true
+
+
+
+
+
+
+
+
+ barium titanate
+ Barium Titanate is a Dielectric Ceramic that is an Electroceramic composed of barium, titanium, and oxygen, noted for its ferroelectric properties.
+ true
+ BaTiO₃
+
+
+
+
+
+
+
+
+ lead zirconate titanate
+ Lead Zirconate Titanate is a Dielectric Ceramic that is an Electroceramic composed of lead, zirconium, and titanium, renowned for its piezoelectric behavior.
+ true
+ PZT
+
+
+
+
+
+
+
+
+ magnetic ceramics (ferrites)
+ Magnetic Ceramics are Electroceramics that exhibit magnetic properties, typically based on iron oxides combined with other metal oxides.
+ true
+
+
+
+
+
+
+
+
+ soft ferrites
+ Soft Ferrites are Magnetic Ceramics that are characterized by low coercivity and high permeability, making them ideal for transformer cores.
+ true
+
+
+
+
+
+
+
+
+ hard ferrites
+ Hard Ferrites are Magnetic Ceramics that are characterized by high coercivity, making them suitable for permanent magnets.
+ true
+
+
+
+
+
+
+
+
+ superconducting ceramics
+ Superconducting Ceramics are Electroceramics that exhibit zero electrical resistance below a critical temperature.
+ true
+
+
+
+
+
+
+
+
+ yttrium barium copper oxide
+ Yttrium Barium Copper Oxide is a Superconducting Ceramic that is composed of yttrium, barium, copper, and oxygen, notable for its high critical temperature.
+ true
+
+
+
+
+
+
+
+
+ bismuth strontium calcium copper oxide
+ Bismuth Strontium Calcium Copper Oxide is a Superconducting Ceramic that is composed of bismuth, strontium, calcium, copper, and oxygen, featuring a layered crystal structure.
+ true
+
+
+
+
+
+
+
+
+ bioceramics
+ Bioceramics are Ceramics that are engineered to be compatible with biological systems.
+ true
+
+
+
+
+
+
+
+
+ bioinert ceramics
+ Bioinert Ceramics are Bioceramics that are designed to remain inert in biological environments to minimize adverse reactions.
+ true
+
+
+
+
+
+
+
+
+ alumina-based ceramics
+ Alumina-Based Ceramics are Bioinert Ceramics that are composed primarily of alumina, valued for their biocompatibility.
+ true
+
+
+
+
+
+
+
+
+ zirconia-based ceramics
+ Zirconia-Based Ceramics are Bioinert Ceramics that are composed primarily of zirconia, offering high strength and inertness.
+ true
+
+
+
+
+
+
+
+
+ bioactive ceramics
+ Bioactive Ceramics are Bioceramics that interact with biological tissues to promote bonding or regeneration.
+ true
+
+
+
+
+
+
+
+
+ hydroxyapatite
+ Hydroxyapatite is a Bioactive Ceramic that is composed of calcium phosphate and closely resembles the mineral component of bone.
+ true
+
+
+
+
+
+
+
+
+ bioglass
+ Bioglass is a Bioactive Ceramic that is a silicate-based glass formulated to bond with and stimulate biological tissues.
+ true
+
+
+
+
+
+
+
+
+ bioresorbable ceramics
+ Bioresorbable Ceramics are Bioceramics that are designed to gradually be resorbed and replaced by natural tissue.
+ true
+
+
+
+
+
+
+
+
+ tricalcium phosphate
+ Tricalcium Phosphate is a Bioresorbable Ceramic that is composed of calcium phosphate, commonly used in bone grafting applications.
+ true
+
+
+
+
+
+
+
+
+ calcium sulfate
+ Calcium Sulfate is a Bioresorbable Ceramic that is composed of calcium sulfate, known for its solubility in biological environments.
+ true
+
+
+
+
+
+
+
+
+ silicate glasses
+ Silicate Glasses are Glasses that are composed primarily of silica.
+ true
+
+
+
+
+
+
+
+
+ soda-lime glass
+ Soda-Lime Glass is a Silicate Glass that is formulated from silica, soda, and lime and is widely used in windows and containers.
+ true
+
+
+
+
+
+
+
+
+ clear float glass
+ Clear Float Glass is a form of Soda-Lime Glass that is known for its clarity and uniform thickness.
+ true
+
+
+
+
+
+
+
+
+ patterned glass
+ Patterned Glass is a form of Soda-Lime Glass that is modified with surface textures for decorative purposes.
+ true
+
+
+
+
+
+
+
+
+ tinted glass
+ Tinted Glass is a form of Soda-Lime Glass that is treated with coloring agents to alter its light transmission.
+ true
+
+
+
+
+
+
+
+
+ borosilicate glass
+ Borosilicate Glass is a Silicate Glass that is formulated with boron oxide to improve thermal resistance.
+ true
+
+
+
+
+
+
+
+
+ pyrex-type glass
+ Pyrex-Type Glass is a form of Borosilicate Glass that is renowned for its high resistance to thermal shock.
+ true
+
+
+
+
+
+
+
+
+ aluminosilicate glass
+ Aluminosilicate Glass is a form of Silicate Glass that is specifically formulated to resist high temperatures.
+ true
+
+
+
+
+
+
+
+
+ lead glass
+ Lead Glass is a Silicate Glass that is formulated with lead oxide to increase brilliance and refractive index.
+ true
+
+
+
+
+
+
+
+
+ potash lead glass
+ Potash Lead Glass is a form of Lead Glass that utilizes potash as a flux in addition to lead oxide.
+ true
+
+
+
+
+
+
+
+
+ barium glass
+ Barium Glass is a form of Lead Glass that is modified with barium oxide to alter its optical properties.
+ true
+
+
+
+
+
+
+
+
+ high-temperature resistant glass
+ High-Temperature Resistant Glass is an Aluminosilicate Glass that is engineered to maintain stability at elevated temperatures.
+ true
+
+
+
+
+
+
+
+
+ non-silicate glasses
+ Non-Silicate Glasses are Glasses that are not primarily composed of silica.
+ true
+
+
+
+
+
+
+
+
+ phosphate glass
+ Phosphate Glass is a Non-Silicate Glass that is composed mainly of phosphate compounds, offering distinct optical properties.
+ true
+
+
+
+
+
+
+
+
+ borate glass
+ Borate Glass is a Non-Silicate Glass that is composed mainly of boron oxide and is known for its low melting point.
+ true
+
+
+
+
+
+
+
+
+ germanate glass
+ Germanate Glass is a Non-Silicate Glass that is composed primarily of germanium oxide, noted for its infrared transmission.
+ true
+
+
+
+
+
+
+
+
+ optical glass
+ Optical Glass is Functional Glass that is formulated for high-precision light transmission and refractive performance.
+ true
+
+
+
+
+
+
+
+
+ fused silica glass
+ Fused Silica Glass is an Optical Glass that is made from pure silica, prized for its high transparency and thermal stability.
+ true
+
+
+
+
+
+
+
+
+ crown glass
+ Crown Glass is an Optical Glass that is characterized by its low dispersion and high clarity.
+ true
+
+
+
+
+
+
+
+
+ flint glass
+ Flint Glass is an Optical Glass that is distinguished by its high refractive index and dispersion.
+ true
+
+
+
+
+
+
+
+
+ specialty glasses
+ Specialty Glasses are Advanced Glasses that are engineered for specific functional roles.
+ true
+
+
+
+
+
+
+
+
+ chemically strengthened glass
+ Chemically Strengthened Glass is a Specialty Glass that is treated via chemical processes to enhance its strength.
+ true
+
+
+
+
+
+
+
+
+ ion-exchanged glass
+ Ion-Exchanged Glass is a form of Chemically Strengthened Glass that is produced by exchanging ions to improve durability.
+ true
+
+
+
+
+
+
+
+
+
+ aluminosilicate gorilla glass
+ Aluminosilicate Gorilla Glass is a Chemically Strengthened Glass that is enhanced with an aluminosilicate composition for superior scratch resistance.
+ true
+
+
+
+
+
+
+
+
+ toughened (tempered) glass
+ Toughened Glass is a Specialty Glass that is mechanically treated to increase its strength and safety.
+ true
+
+
+
+
+
+
+
+
+ laminated glass
+ Laminated Glass is a Specialty Glass that is composed of multiple bonded layers to improve safety and acoustic performance.
+ true
+
+
+
+
+
+
+
+
+ electrochromic glass
+ Electrochromic Glass is a Specialty Glass that can reversibly change its light transmission properties when an electrical voltage is applied.
+ true
+
+
+
+
+
+
+
+
+ photochromic glass
+ Photochromic Glass is a Specialty Glass that alters its optical properties in response to exposure to light.
+ true
+
+
+
+
+
+
+
+
+ thermochromic glass
+ Thermochromic Glass is a Specialty Glass that changes its optical properties as a function of temperature.
+ true
+
+
+
+
+
+
+
+
+ lithium disilicate glass-ceramics
+ Lithium Disilicate Glass-Ceramics are Glass-Ceramics that contain lithium disilicate crystals to provide high strength and aesthetic appeal.
+ true
+
+
+
+
+
+
+
+
+ transparent glass-ceramics
+ Transparent Glass-Ceramics are Glass-Ceramics that are engineered to maintain optical transparency despite partial crystallization.
+ true
+
+
+
+
+
+
+
+
+ functional glass
+ Functional Glass is Advanced Glass that is designed to perform specific roles beyond conventional optical applications.
+ true
+
+
+
+
+
+
+
+
+ conductive glass
+ Conductive Glass is Functional Glass that has been modified to exhibit electrical conductivity.
+ true
+
+
+
+
+
+
+
+
+ indium tin oxide coated glass
+ Indium Tin Oxide Coated Glass is a form of Conductive Glass that is coated with a thin film of indium tin oxide to enable electrical conduction.
+ true
+
+
+
+
+
+
+
+
+ fluorine-doped tin oxide glass
+ Fluorine-Doped Tin Oxide Glass is a form of Conductive Glass that is coated with tin oxide doped with fluorine for enhanced conductivity.
+ true
+
+
+
+
+
+
+
+
+ magnetic glass
+ Magnetic Glass is Functional Glass that is modified to exhibit magnetic properties.
+ true
+
+
+
+
+
+
+
+
+ iron-borosilicate glass
+ Iron-Borosilicate Glass is a Magnetic Glass that incorporates iron and borosilicate compounds to display magnetic behavior.
+ true
+
+
+
+
+
+
+
+
+ cobalt-borosilicate glass
+ Cobalt-Borosilicate Glass is a Magnetic Glass that is formulated with cobalt to enhance its magnetic properties.
+ true
+
+
+
+
+
+
+
+
+ nonlinear optical glass
+ Nonlinear Optical Glass is Functional Glass that is engineered to display nonlinear optical responses under intense light.
+ true
+
+
+
+
+
+
+
+
+ chalcogenide glass
+ Chalcogenide Glass is a Nonlinear Optical Glass that is composed of chalcogen elements, offering infrared transmission and nonlinear optical behavior.
+ true
+
+
+
+
+
+
+
+
+ tellurite glass
+ Tellurite Glass is a Nonlinear Optical Glass that is formulated with tellurium oxide to achieve a high refractive index and nonlinear properties.
+ true
+
+
+
+
+
+
+
+
+ bioactive glass
+ Bioactive Glass is Advanced Glass that is designed to interact beneficially with biological tissues.
+ true
+
+
+
+
+
+
+
+
+ silicate-based bioactive glass
+ Silicate-Based Bioactive Glass is a Bioactive Glass that is composed primarily of silicate compounds to facilitate bonding with biological tissue.
+ true
+
+
+
+
+
+
+
+
+ 45S5 bioglass
+ 45S5 Bioglass is a Silicate-Based Bioactive Glass with a specific composition known for its ability to bond with bone.
+ true
+
+
+
+
+
+
+
+
+ S53P4 bioglass
+ S53P4 Bioglass is a Silicate-Based Bioactive Glass formulated with a distinct composition for enhanced bioactivity.
+ true
+
+
+
+
+
+
+
+
+ phosphate-based bioactive glass
+ Phosphate-Based Bioactive Glass is a Bioactive Glass that is composed predominantly of phosphate compounds.
+ true
+
+
+
+
+
+
+
+
+ borate-based bioactive glass
+ Borate-Based Bioactive Glass is a Bioactive Glass that is formulated with borate compounds to promote biological interaction.
+ true
+
+
+
+
+
+
+
+
+ amorphous metal glass
+ Amorphous Metal Glass is Glass that is characterized by a disordered, non-crystalline atomic structure, resembling a frozen liquid.
+ true
+
+
+
+
+
+
+
+
+ iron-based metallic glass
+ Iron-Based Metallic Glass is an Amorphous Metal Glass that is predominantly composed of iron.
+ true
+
+
+
+
+
+
+
+
+ magnesium-based metallic glass
+ Magnesium-Based Metallic Glass is an Amorphous Metal Glass that is primarily composed of magnesium, noted for its low density.
+ true
+
+
+
+
+
+
+
+
+ zirconium-based metallic glass
+ Zirconium-Based Metallic Glass is an Amorphous Metal Glass that is composed mainly of zirconium, valued for its corrosion resistance and strength.
+ true
+
+
+
+
+
+
+
+
+ http://purl.obolibrary.org/obo/OBI_0000938
+ categorical measurement datum
+ A measurement datum that is reported on a categorical scale.
+ true
+
+
+
+
+
+
+
+
+ device specification
+ A directive information entity that outlines the technical requirements, features, constraints, and performance criteria of a specific device, guiding its design, manufacturing, operation, or maintenance.
+ true
+
+
+
+
+
+
+
+
+ material specification
+ A directive information entity that defines the composition, properties, performance criteria, and acceptable standards for a material, guiding its selection, processing, and application in a specific context.
+ true
+
+
+
+
+
+
+
+
+ recipe
+ A plan specification that outlines the ingredients, proportions, and procedural steps required to prepare a specific product, typically in cooking, manufacturing, or chemical processes.
+
+
+
+
+
+
+
+
+ specification datum
+ A data item that provides specification for entities
+ true
+
+
+
+
+
+
+
+
+ European Commission: Directorate-General for Research and Innovation, Biodegradability of plastics in the open environment, Publications Office of the European Union, 2021, https://data.europa.eu/doi/10.2777/690248
+ Biologische Abbaubarkeit
+ biodegradabilty
+ "[Biodegradabilty] [...] is understood as the microbial conversion of all its organic constituents to carbon dioxide (or carbon dioxide and methane in conditions where oxygen is not present), new microbial biomass and mineral salts, within a timescale short enough not to lead to lasting harm or accumulation in the open environment."
+ "[Biologische Abbaubarkeit] [...] beschreibt die mikrobielle Umwandlung all seiner organischen Bestandteile in Kohlendioxid oder – unter sauerstofffreien Bedingungen – in Kohlendioxid und Methan, neue mikrobielle Biomasse und Mineralsalze verstanden, und zwar innerhalb eines Zeitraums, der so kurz ist, dass es nicht zu dauerhaften Schäden oder Anreicherungen in der offenen Umwelt kommt."
+ https://github.com/materialdigital/core-ontology/issues/126
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IndustrialInventory
+ industrial inventory
+ material product, material component, raw material, or material artifact that is ready to be sold or used and is stored in a storage facility or on factory floor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IndustrialInventoryRole
+ industrial inventory role
+ role held by some material entity when it is stored by a bussiness organization and it is intended to be supplied to a customer or to be used or consumed in some product production process
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ConsigningProcess
+ consigning process
+ business process that results in placing a material entity in the possession of some agent without changing the ownership until the material entity is sold
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwardingProcess
+ freight forwarding process
+ business process of planning and coordinating the transportation of material products on behalf of a shipper
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturer identifier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ product identifier
+
+
+
+
+
+
+
+
+ batch identifier
+ denotes all material artifact generated by one distinguishable manufacturing process run
+
+
+
+
+
+
+
+
+
+ agreement
+ understanding between two or more parties that contains a set of commitments on the part of the parties
+
+
+
+
+
+
+
+
+
+ commercial service agreement
+ agreement between a customer and service provider that is about some commercial service to be provided by the service provider in exchange for compensation from the customer
+
+
+
+
+
+
+
+
+
+ bill of lading
+ agreement between a shipper and a carrier that prescribes some consigning process
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/core/Core/EquipmentRole
+ transport equipment role
+ role held by a material artifact when it is planned to be involved in or is involved in carrying out some part of a planned transportation process and that is not consumed in that planned process
+
+
+
+
+
+
+
+
+
+ purchase order
+ agreement between a buyer and a vendor (supplier) that that contains a set of commitments on the buyer and the vendeor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ lot number
+ identifier that uniquely denotes a particular quantity of material entities that have shared production or transformation history
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ organization identifier
+ identifier that identifies an organization
+
+
+
+
+
+
+
+
+
+ part number
+ identifier that uniquely identifies an artifact (material artifact) and that is created according to some part numbering system
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ physical location identifier
+ identifier that identifies a physical location (site)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ global location number
+ identifer that uniquely identifies a business organization or a geospatial location and complies with GS1 GLN coding scheme
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LocationIdentificationScheme
+ location identification scheme
+ identification scheme that prescribes how unique identifiers of physical locations are formulated
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ customer
+ person or organization which has a customer role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/iof/ontology/core/Core/Agent
+ agent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ buyer
+ person or organization which has a buyer role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ consignee
+ person or business organization that receives some shipment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ consignor
+ shipper
+ person or business organization that prepares and sends shipments for transport
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ distributor
+ person or business organization when it purchases products from manufacturers and resells them to wholesalers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ freight forwarder
+ person or business organization when it arranges the transportation of shipments on behalf of the shipper (consignor) or consignee
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturer
+ organization which has a manufacturer role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ retailer
+ person or business organization who buys products from wholesalers and manufacturers and resells them to end users
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Shipper
+ shipper
+ person or business organization that prepares and sends shipments for transport
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supplier
+ person or organization which has a supplier role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ carrier
+ person or business organization who provides transportation services
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ service provider
+ person or organization which has a service provider role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supply chain agent
+ person or business organization who supplies material products or commercial services to other agents in a supply chain
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ wholesaler
+ person or business organization that buys products from distributors and resells them to retailers or other business organizations
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ cargo
+ material entity that is transported using a transport equipment by a carrier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Load
+ load
+ collection of material entities which share the same transportation and transfer history
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ maintainable material item
+ material artifact or engineered system which has the maintainable material item role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material component
+ material entity which has the material component role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material product
+ material entity which has the material product role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material resource
+ material entity which has the material resource role
+
+
+
+
+
+
+
+
+ department
+ object aggregate that is part of an organisation and consists of persons that are members of the same organisation
+ true
+
+
+
+
+
+
+
+
+
+ facility
+ engineered system that consists of buildings, structures, roads, machines, and equipment desgined to provide certain capabilities
+
+
+
+
+
+
+
+
+ “Laboratory.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/laboratory. Accessed 24 Nov. 2022.
+ laboratory
+ A place equipped for experimental study in a science or for testing and analysis.
+ true
+
+
+
+
+
+
+
+
+
+ storage facility
+ facility that is designed to store materials or goods
+
+
+
+
+
+
+
+
+
+ distribution center
+ storage facility designed to store manufactured products that are to be distributed to resellers and wholesalers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LogisticUnit
+ logistic unit
+ material entities packaged together for transport or storage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Lot
+ lot
+ quantity of material entities produced together and sharing the same production history and specifications
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supply chain system
+ engineered system composed of agents, facilties, machines, and information systems that is designed to deliver products and services to end customers through an engineered flow of information, material, and cash
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturing supply chain system
+ supply chain system that is formed to manufacture one or more products
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ service supply chain system
+ supply chain system that is formed to deliver some commercial services
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ piece of transport equipment
+ piece of equipment that has the function of holding, protecting, and securing a number of material entites for transportation purposes
+
+
+
+
+
+
+
+
+
+ container
+ piece of transport equipment that is designed to contain some material entities
+
+
+
+
+
+
+
+
+
+ trailer
+ piece of transport equipment that is unpowered and is pulled by a powered vehicle
+
+
+
+
+
+
+
+
+
+ wagon
+ piece of transport equipment in a rail transport system used for carrying cargo or passengers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IntegratedCarrierBusinessOrganization
+ integrated carrier business organization
+ business organization that is created for the purpose of providing different types of transportation and freight forwarding services
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/core/Core/BusinessOrganization
+ business organization
+ organization engaging in or planning to engage in any activity of buying and selling goods or services for a profit
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ organization
+ An organization is an immaterial entity that has the organisation role and there exists some sort of legal framework that recognises the entity and its continued existence.
+ true
+ issue: https://github.com/materialdigital/core-ontology/issues/101
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Shipment
+ shipment
+ collection of material entities delivered to a receiver's location that have undergone the same dispatch and receipt processes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ freight forwarding business function
+ business function that is realized in a freight forwarding service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/TransportationBusinessFunction
+ transportation business function
+ business function that is realized in a transportation service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ agent role
+ role that someone or something has when they act on behalf of a person, engineered system or a group of agents
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ buyer role
+ agent role held by a person or organization when it buys a product or a service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ consignee role
+ role held by a person or business organization when it receives a shipment from a carrier and owns the shipment after the receipt
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ consignor role
+ role held by a business organization or person when it prepares, initiates, and consigns a shipment it owns
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ customer role
+ agent role held by a person or organization when it utilizes the product or receives the service or subscribes to the commercial service agreement
+
+
+
+
+
+
+
+
+
+ service consumer role
+ customer role held by a person or business organization when it receives and consumes a service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ distributor role
+ role held by a person or business organization when it buys some material products from a manufacturer and resells them to a wholesaler
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturer role
+ agent role held by an organization when it produces material products
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ retailer role
+ role held by a person or business organization when it buys products (material product) from manufacturers or wholesalers and offers them for sale to customers who are the end users of the product
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supplier role
+ agent role held by a person or organization when it offers to sell or provide products or services
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ service provider role
+ supplier role held by a person or organization when it offers to sell or provide a commercial service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ logistics service provider role
+ service provider role that is held by a business organization or person when it provides a logistics service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturing service provider role
+ service provider role that is held by a person or business organization when it provides a manufacturing service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwarderRole
+ freight forwarder role
+ A freight forwarder, or forwarding agent, is a person or company that organizes shipments for individuals or corporations to get goods from the manufacturer or producer to a market, customer or final point of distribution.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PackagingServiceProviderRole
+ packaging service provider role
+ logisitics service provider role held by a business organization or person when it provides a packaging service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/StorageServiceProviderRole
+ storage service provider role
+ logisitics service provider role that is held by a person or business organization when it provides a storage service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ transportation service provider role
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainAgentRole
+ supply chain agent role
+ role held by an agent that is a part of a supply chain system when it supplies material products or commercial services to other agents in the supply chain system
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ wholesaler role
+ role held by a person or business organization when it buys some product from a distributor and resells them to retailers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ cargo role
+ role held by a material entity when it is being transported or is planned to be transported by a carrier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ship from location role
+ location role held by a geospatial site when it is the location at which some dispatch process occures
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ship to location role
+ location role held by a geospatial site when it is the location at which some receiving process occures
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainNodeRole
+ supply chain node role
+ location role held by a geospatial site when it is the site some supply chain process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material product role
+ role held by a material entity that is intended to be sold, or has been bought, or has been supplied
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ raw material role
+ role held by a material entity when it is acquired by an organizational entity with some plan to transform or modify it into intermediate-level components or substances or into a product
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ lot role
+ traceable resource unit role held by material entities that have a shared production or transformation history
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ shipment role
+ traceable resource unit role held by material entities when they undergo the same dispatch and receipt processes as prescribed by a bill of lading
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ load role
+ traceable resource unit role held by a number of material entities that have been transferred or transported together
+
+
+
+
+
+
+
+
+
+ logistic unit role
+ traceable resource unit role held by a number of material entities that are packaged together for transport or storage
+
+
+
+
+
+
+
+
+
+ traceable resource unit role
+ role held by a number of uniquely identified material entities when they participate in some supply chain processes or production processes while some agent observes them and collects information about them for future retrieval
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ location role
+ role held by a geospatial site when it is the location of some material entity at some time or the site of some process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ShipFromLocation
+ ship from location
+ geospatial location at which some dispatch process occurs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ShipToLocation
+ ship to location
+ geospatial location in which some receiving process occurs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainNode
+ supply chain node
+ geospatial location that is the site of some supply chain process
+
+
+
+
+
+
+
+
+
+ business function
+ function of an organization to partake in for profit activities as prescribed by the objectives specified by that organization
+
+
+
+
+
+
+
+
+
+ commercial service specification
+ plan specification that prescribes a commercial service
+
+
+
+
+
+
+
+
+
+ packaging plan specification
+ plan specification that prescribes a packaging process
+
+
+
+
+
+
+
+
+
+ shipment plan specification
+ plan specification that prescribes a shipment preparation process and a transportation process
+
+
+
+
+
+
+
+
+
+ supply chain plan specification
+ plan specification that has one or more supply chain objective specifications as parts and that prescribes a supply chain process
+
+
+
+
+
+
+
+
+
+ warehousing plan specification
+ plan specification that prescribes a warehousing process
+
+
+
+
+
+
+
+
+
+ airway
+ three-dimensional spatial region that connects one specified location (navigation point) to another at a specified altitude, along which an aircraft may be flown
+
+
+
+
+
+
+
+
+
+ seaway
+ three-dimensional spatial region that connects one specified location to another on a body of water along which a watercraft may travel
+
+
+
+
+
+
+
+
+
+ shipping route
+ way (three-dimensional spatial region) that connects two or more supply chain nodes along which some shipment travels during a transport process
+
+
+
+
+
+
+
+
+
+ raw material
+ material entity which has the raw material role
+
+
+
+
+
+
+
+
+
+ traceable resource unit
+ material entity that is uniquely identified and there may be a need to retrieve information about its history, application, or location as it moves through a supply chain
+
+
+
+
+
+
+
+
+
+ maintainable material item role
+ role played by an asset (engineered system or material artifact) when there is a maintenance strategy prescribing its maintenance process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material component role
+ role held by a material entity when it is a proper part of another material entity or is planned to be a proper part of another material entity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material resource role
+ role played by a material entity that consists in it being available to a person or group of agents or engineered system
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ buying business process
+ business process wherein a financial instrument is used by an agent (buyer) to acquire ownership of a product or commercial service from another agent (seller) for the buyer itself or for another agent (customer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ commercial service
+ business process that consists of a service provisioning process and a consumption process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ logistics service
+ commercial service that consists of at least one transport process, packaging process, freight forwarding, or storage process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwardingService
+ freight forwarding service
+ logistics service that consists of at least one freight forwarding process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PackagingService
+ packaging service
+ logistics service that consists of at lest one packaging process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/StorageService
+ storage service
+ logistics service that consists of at least one storage process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/TransportationService
+ transportation service
+ business process that results in placing a material entity in the possession of some agent without changing the ownership until the material entity is sold
+ logistics service that consists of at least one transport process
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ManufacturingService
+ manufacturing service
+ commercial service that consists of at least one manufacturing process
+
+
+
+
+
+
+
+
+
+ inventory management process
+ business process that consists of the activities required for controlling, tracking, recording, and planning inventories
+
+
+
+
+
+
+
+
+
+ logistics process
+ business process that consists of a combination of one or more transport, shipment preparation, storage or receiving processes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/PackagingProcess
+ packaging process
+ business process of putting some products or some portion of material into a package according to a packaging plan specification
+
+
+
+
+
+
+
+
+
+ procuring business process
+ business process that consists of buying and ensuring the supply of products or services
+
+
+
+
+
+
+
+
+
+ product production process
+ business process that consists of at least one manufacturing process through which raw materials and components are transformed or modified to create a material product
+
+
+
+
+
+
+
+
+
+ receiving process
+ planned process in which an agent receives some material entity from another agent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supply chain process
+ planned process in which a supply chain plan specification is realized by a number of supply chain agents
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/core/Core/SellingBusinessProcess
+ selling business process
+ business process wherein a product or commercial service is offered by an agent (seller) for another agent (buyer) to acquire ownership via a financial instrument
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ShipmentPreparationProcess
+ shipment preparation process
+ business process in which some material entities are prepared to be transported together to a receiver’s location
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ supplying business process
+ business process wherein a product or service is supplied
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/WarehousingProcess
+ warehousing process
+ business process of storing products (material products) in a storage facility for future use
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ business process
+ planned process which is prescribed by a plan specification with one or more objectives specified by a business organization
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ manufacturing process
+ planned process that consists of a structured set of operations through which input material is transformed or modified
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ assembly process
+ manufacturing process in which a number of material components are physically connected to each other to form an assembly
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ measurement process
+ planned process to determine the value of an attribute (specifically dependent continuant or temporal region or process characteristic) of an entity of interest
+
+
+
+
+
+
+
+
+
+ appraisal process
+ measurement process that involves evaluating, assessing, estimating, or judging the nature, value, importance, condition, or quality of some entity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ material location change process
+ planned process that results in a material entity moving from one physical location to another
+
+
+
+
+
+
+
+
+
+ arrival process
+ material location change process that consists of the participating entity reaching its destination such that the travel or transport process which it is a part of is completed
+
+
+
+
+
+
+
+
+
+ departure process
+ material location change process that consists of the participating entity leaving its starting location such that the travel or transport process it is a part of is initiated
+
+
+
+
+
+
+
+
+
+ transport process
+ material location change process involving the movement of material entities by some piece of transport equipment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ storage process
+ planned process of putting and keeping material entities in a specified location for future use
+
+
+
+
+
+
+
+
+
+ travel process
+ material location change process wherein one or more persons move between geographical locations
+
+
+
+
+
+
+
+
+
+
+
+
+ example to be eventually removed
+
+
+
+
+
+
+
+ The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job
+ failed exploratory term
+
+
+
+
+
+
+
+ Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.
+ metadata complete
+
+
+
+
+
+
+
+ Term created to ease viewing/sort terms for development purpose, and will not be included in a release
+ organizational term
+
+
+
+
+
+
+
+ Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking "ready_for_release" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed "ready_for_release" will also derived from a chain of ancestor classes that are also "ready_for_release."
+ ready for release
+
+
+
+
+
+
+
+ Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.
+ metadata incomplete
+
+
+
+
+
+
+
+ Nothing done yet beyond assigning a unique class ID and proposing a preferred term.
+ uncurated
+
+
+
+
+
+
+
+ All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.
+ pending final vetting
+
+
+
+
+
+
+
+ placeholder removed
+
+
+
+
+
+
+
+ An editor note should explain what were the merged terms and the reason for the merge.
+ terms merged
+
+
+
+
+
+
+
+ This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.
+ term imported
+
+
+
+
+
+
+
+ This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.
+ term split
+
+
+
+
+
+
+
+ Hard to give a definition for. Intuitively a "natural kind" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.
+ A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf
+ universal
+
+
+
+
+
+
+
+ A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal
+ "definitions", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.
+ defined class
+
+
+
+
+
+
+
+ A named class expression is a logical expression that is given a name. The name can be used in place of the expression.
+ named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions
+ named class expression
+
+
+
+
+
+
+
+ Terms with this status should eventually replaced with a term from another ontology.
+ group:OBI
+ to be replaced with external ontology term
+
+
+
+
+
+
+
+ A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.
+ group:OBI
+ requires discussion
+
+
+
+
+
+
+
+ The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.
+ This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.
+ out of scope
+
+
+
+
+
+
+
+ bravais lattice triclinic primitve
+ true
+
+
+
+
+
+
+
+ bravais lattice monoclinic primitive
+ true
+
+
+
+
+
+
+
+ bravais lattice monoclinic base-centered
+ true
+
+
+
+
+
+
+
+ bravais lattice orthorombic primitive
+ true
+
+
+
+
+
+
+
+ bravais lattice orthorhombic base-centered
+ true
+
+
+
+
+
+
+
+ bravais lattice orthorhombic body-centered
+ true
+
+
+
+
+
+
+
+ bravais lattice orthorhombic face-centered
+ true
+
+
+
+
+
+
+
+ bravais lattice tetragonal primitive
+ true
+
+
+
+
+
+
+
+ bravais lattice tetragonal body-centered
+ true
+
+
+
+
+
+
+
+ bravais lattice hexagonal rhombohedral primitive
+ true
+
+
+
+
+
+
+
+ bravais lattice hexagonal hexagonal primitive
+ true
+
+
+
+
+
+
+
+ bravais lattice cubic primitive
+ true
+
+
+
+
+
+
+
+ bravais lattice cubic body-centered
+ true
+
+
+
+
+
+
+
+ bravais lattice cubic face-centered
+ true
+
+
+
+
+
+
+
+ bainite
+ true
+
+
+
+
+
+
+
+ austenite
+ true
+
+
+
+
+
+
+
+ ferrite
+ true
+
+
+
+
+
+
+
+ ledeburite
+ true
+
+
+
+
+
+
+
+ pearlite
+ true
+
+
+
+
+
+
+
+ widmanstatten structure
+ true
+
+
+
+
+
+
+
+ martensite
+ true
+
+
+
+
+
+
+
+ aggregate state solid
+ A state where the bonds between entites trasmit shear forces.
+ true
+
+
+
+
+
+
+
+ aggregate state liquid
+ A state where the bonds of the entites transmit no shear force.
+ true
+
+
+
+
+
+
+
+ aggregate state gasous
+ A state where the entities have no bonding.
+ true
+
+
+
+
+
+
+
+ aggregate state plasma
+ An aggregate state where the entites are atom nuclei and have no bonds.
+ true
+
+
+
+
+
+
+
+ aggregate state atom gas
+ A gaseous state where the gas entities are atoms.
+ true
+
+
+
+
+
+
+
+ aggregate state supercritical fluid
+ A state with strong bindings between entites that do not transmit shear force.
+ true
+
+
+
+
+
+
+
+ aggregate state mesomorphic
+ A state where some bonds transmit shear stresses and some do not.
+ true
+
+
+
+
+
+
+
+ aggregate state suprafluid
+ A state with frictionless binding that transmits no shear force between entites.
+ true
+
+
+
+
+
+
+
+ aggregate state suprasolid
+ A state that exhibits suprafluid and solid properties.
+ true
+
+
+
+
+
+
+
+
+ https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/GLNScheme
+ https://www.gs1.org/standards/id-keys/gln
+ GS1 GLN Specifications
+ identification scheme that specifies constraints on the structure of a GLN (global location number)
+
+
+
+
+
+
+
+ dc:license
+
+
+ Martin Glauer
+
+
+ Jörg Waitelonis
+
+
+ Fabian Neuhaus
+
+
+ Hossein Beygi Nasrabadi
+
+
+ Bernd Bayerlein
+
+
+ Markus Schilling
+
+
+ Lars Vogt
+
+
+ Henk Birkholz
+
+
+ Simon Stier
+
+
+ Thomas Hanke
+
+
+ Kostiantyn Hubaiev
+
+
+ Philipp von Hartrott
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/log-full.ttl b/log-full.ttl
new file mode 100644
index 0000000..b50cce0
--- /dev/null
+++ b/log-full.ttl
@@ -0,0 +1,14368 @@
+@prefix : .
+@prefix co: .
+@prefix dce: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix rdfs: .
+@prefix skos: .
+@prefix swrl: .
+@prefix swrlb: .
+@prefix dcterms: .
+@prefix logistics: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:versionIRI ;
+ dcterms:bibliographicCitation "Platform Material Digital Application Ontology for Logistics and Supplychain (log) 1.0.0, https://w3id.org/pmd/log/" ;
+ dcterms:created "2025-11-20" ;
+ dcterms:creator ;
+ dcterms:description "This is an alignment of the IOF Supply Chain Ontologies Library to the Platform Material Digital Core Ontology. It contains ontologies to be used in the domain of supply chain and logistics." ;
+ dcterms:license "http://opensource.org/licenses/MIT" ;
+ dcterms:title "Platform Material Digital Application Ontology for Logistics and supplychain (log)"@en ;
+ rdfs:comment "The logistics application ontology for use with PMD Core Ontology (PMDco). The scope of this module is the description of material science and engineering related logistics and general organization. Its is adopted from the IOF SupplyChain Module https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/"@en ;
+ owl:versionInfo "1.0.0" .
+
+#################################################################
+# Annotation properties
+#################################################################
+
+### http://purl.obolibrary.org/obo/IAO_0000112
+obo:IAO_0000112 rdf:type owl:AnnotationProperty ;
+ obo:IAO_0000115 "A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold."@en ;
+ obo:IAO_0000119 "GROUP:OBI:"@en ;
+ rdfs:label "example of usage"@en ,
+ "example of usage" .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000114
+obo:IAO_0000114 rdf:type owl:AnnotationProperty .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000115
+obo:IAO_0000115 rdf:type owl:AnnotationProperty ;
+ obo:IAO_0000115 "The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions."@en ;
+ obo:IAO_0000116 """2012-04-05:
+Barry Smith
+
+The official OBI definition, explaining the meaning of a class or property: 'Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions' is terrible.
+
+Can you fix to something like:
+
+A statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.
+
+Alan Ruttenberg
+
+Your proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can't be evaluated by those criteria.
+
+On the specifics of the proposed definition:
+
+We don't have definitions of 'meaning' or 'expression' or 'property'. For 'reference' in the intended sense I think we use the term 'denotation'. For 'expression', I think we you mean symbol, or identifier. For 'meaning' it differs for class and property. For class we want documentation that let's the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let's the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The 'intended reader' part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition.
+
+Personally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable.
+
+We also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with."""@en ,
+ """2012-04-05:
+Barry Smith
+
+The official OBI definition, explaining the meaning of a class or property: 'Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions' is terrible.
+
+Can you fix to something like:
+
+A statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.
+
+Alan Ruttenberg
+
+Your proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can't be evaluated by those criteria.
+
+On the specifics of the proposed definition:
+
+We don't have definitions of 'meaning' or 'expression' or 'property'. For 'reference' in the intended sense I think we use the term 'denotation'. For 'expression', I think we you mean symbol, or identifier. For 'meaning' it differs for class and property. For class we want documentation that let's the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let's the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The 'intended reader' part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition.
+
+Personally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable.
+
+We also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. """@en ;
+ obo:IAO_0000119 "GROUP:OBI:"@en ;
+ rdfs:label "definition"@en ,
+ "definition" .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000116
+obo:IAO_0000116 rdf:type owl:AnnotationProperty ;
+ obo:IAO_0000115 "An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology."@en ;
+ obo:IAO_0000119 "GROUP:OBI:"@en ;
+ rdfs:label "editor note"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000119
+obo:IAO_0000119 rdf:type owl:AnnotationProperty ;
+ obo:IAO_0000115 "Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007"@en ,
+ "formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007"@en ;
+ obo:IAO_0000119 "Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w"@en ,
+ "GROUP:OBI:"@en ,
+ "Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w" ;
+ rdfs:label "definition source"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000412
+obo:IAO_0000412 rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/elements/1.1/source
+dce:source rdf:type owl:AnnotationProperty ;
+ rdfs:label "Source" .
+
+
+### http://purl.org/dc/terms/bibliographicCitation
+dcterms:bibliographicCitation rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/contributor
+dcterms:contributor rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/created
+dcterms:created rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/creator
+dcterms:creator rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/description
+dcterms:description rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/license
+dcterms:license rdf:type owl:AnnotationProperty ;
+ rdfs:label "dcterms:license" .
+
+
+### http://purl.org/dc/terms/source
+dcterms:source rdf:type owl:AnnotationProperty .
+
+
+### http://purl.org/dc/terms/title
+dcterms:title rdf:type owl:AnnotationProperty .
+
+
+### http://www.w3.org/2000/01/rdf-schema#label
+rdfs:label rdf:type owl:AnnotationProperty ;
+ rdfs:label "label"@en ,
+ "label" .
+
+
+### http://www.w3.org/2004/02/skos/core#altLabel
+skos:altLabel rdf:type owl:AnnotationProperty .
+
+
+### http://www.w3.org/2004/02/skos/core#definition
+skos:definition rdf:type owl:AnnotationProperty .
+
+
+### http://www.w3.org/2004/02/skos/core#example
+skos:example rdf:type owl:AnnotationProperty .
+
+
+### https://w3id.org/pmd/co/PMD_0000060
+co:PMD_0000060 rdf:type owl:AnnotationProperty ;
+ rdfs:comment "Indicates whether the ontology element is part of the minimal profile of the ontology. Useful for modularization, simplified views, or lightweight implementations."@en ;
+ rdfs:label "isInMinimalProfile"@en ;
+ co:PMD_0001032 "https://github.com/materialdigital/core-ontology/issues/121" ;
+ rdfs:range xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000064
+co:PMD_0000064 rdf:type owl:AnnotationProperty ;
+ rdfs:comment "An editor note referring to a pattern which shows the usage of this class or property." ;
+ rdfs:label "pattern example"@en ;
+ rdfs:subPropertyOf obo:IAO_0000116 .
+
+
+### https://w3id.org/pmd/co/PMD_0001032
+co:PMD_0001032 rdf:type owl:AnnotationProperty ;
+ obo:IAO_0000115 "A term tracker annotation is an editor note used to track the history of an entity. For each change, it records the related GitHub issue and pull request."@en ;
+ obo:IAO_0000116 "hijacked from http://openenergy-platform.org/ontology/oeo/OEO_00020426"@en ;
+ rdfs:label "term tracker annotation"@en ;
+ rdfs:subPropertyOf obo:IAO_0000116 .
+
+
+### https://w3id.org/pmd/co/PMD_0050117
+co:PMD_0050117 rdf:type owl:AnnotationProperty ;
+ rdfs:label "abbreviation"@en ;
+ skos:definition "A textual annotation used to specify a commonly accepted abbreviation, acronym, or shortened form of a class label. This property is intended to support concise referencing of ontology classes, especially when standard abbreviations are widely used in practice."@en ;
+ skos:example "\"DNA\" for \"Deoxyribonucleic Acid\""@en ;
+ rdfs:subPropertyOf skos:altLabel .
+
+
+### https://w3id.org/pmd/co/logistics/PMD_0000060
+logistics:PMD_0000060 rdf:type owl:AnnotationProperty .
+
+
+### https://w3id.org/pmd/co/logistics/PMD_0001032
+logistics:PMD_0001032 rdf:type owl:AnnotationProperty .
+
+
+#################################################################
+# Object Properties
+#################################################################
+
+### http://purl.obolibrary.org/obo/BFO_0000050
+obo:BFO_0000050 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:BFO_0000051 ;
+ rdf:type owl:TransitiveProperty ;
+ obo:IAO_0000112 "my brain is part of my body (continuant parthood, two material entities)"@en ,
+ "my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"@en ,
+ "this day is part of this year (occurrent parthood)"@en ;
+ obo:IAO_0000115 "a core relation that holds between a part and its whole"@en ;
+ obo:IAO_0000116 "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."@en ,
+ "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"@en ,
+ """Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)
+
+A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'."""@en ;
+ rdfs:label "part of"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000051
+obo:BFO_0000051 rdf:type owl:ObjectProperty ,
+ owl:TransitiveProperty ;
+ obo:IAO_0000112 "my body has part my brain (continuant parthood, two material entities)"@en ,
+ "my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"@en ,
+ "this year has part this day (occurrent parthood)"@en ;
+ obo:IAO_0000115 "a core relation that holds between a whole and its part"@en ;
+ obo:IAO_0000116 "Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."@en ,
+ "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"@en ,
+ """Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)
+
+A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'."""@en ;
+ rdfs:label "has part"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000054
+obo:BFO_0000054 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:BFO_0000055 ;
+ rdfs:domain obo:BFO_0000017 ;
+ rdfs:range obo:BFO_0000015 ;
+ rdfs:label "has realization"@en ;
+ skos:definition "b has realization c =Def c realizes b"@en ;
+ skos:example "As for realizes"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000055
+obo:BFO_0000055 rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000017 ;
+ rdfs:label "realizes"@en ;
+ skos:definition "(Elucidation) realizes is a relation between a process b and realizable entity c such that c inheres in some d & for all t, if b has participant d then c exists & the type instantiated by b is correlated with the type instantiated by c"@en ;
+ skos:example "A balding process realizes a disposition to go bald; a studying process realizes a student role; a process of pumping blood realizes the pumping function of a heart"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000062
+obo:BFO_0000062 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:BFO_0000063 ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000003 ;
+ rdfs:label "preceded by"@en ;
+ skos:definition "b preceded by c =Def b precedes c"@en ;
+ skos:example "The temporal region occupied by the second half of the match is preceded by the temporal region occupied by the first half of the match"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000063
+obo:BFO_0000063 rdf:type owl:ObjectProperty ,
+ owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000003 ;
+ rdfs:label "precedes"@en ;
+ skos:definition "(Elucidation) precedes is a relation between occurrents o, o' such that if t is the temporal extent of o & t' is the temporal extent of o' then either the last instant of o is before the first instant of o' or the last instant of o is the first instant of o' & neither o nor o' are temporal instants"@en ;
+ skos:example "The temporal region occupied by Mary's birth precedes the temporal region occupied by Mary's death."@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000066
+obo:BFO_0000066 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:BFO_0000183 ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000015
+ obo:BFO_0000035
+ )
+ ] ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000029
+ obo:BFO_0000040
+ )
+ ] ;
+ rdfs:label "occurs in"@en ;
+ skos:definition "b occurs in c =Def b is a process or a process boundary & c is a material entity or site & there exists a spatiotemporal region r & b occupies spatiotemporal region r & for all time t, if b exists at t then c exists at t & there exist spatial regions s and s' where b spatially projects onto s at t & c occupies spatial region s' at t & s is a continuant part of s' at t"@en ;
+ skos:example "A process of digestion occurs in the interior of an organism; a process of loading artillery rounds into a tank cannon occurs in the interior of the tank"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000108
+obo:BFO_0000108 rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000001 ;
+ rdfs:range obo:BFO_0000008 ;
+ rdfs:label "exists at"@en ;
+ skos:definition "(Elucidation) exists at is a relation between a particular and some temporal region at which the particular exists"@en ;
+ skos:example "First World War exists at 1914-1916; Mexico exists at January 1, 2000"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000117
+obo:BFO_0000117 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000051 ;
+ owl:inverseOf obo:BFO_0000132 ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000003 ;
+ rdfs:label "has occurrent part"@en ;
+ skos:definition "b has occurrent part c =Def c occurrent part of b"@en ;
+ skos:example "Mary's life has occurrent part Mary's 5th birthday"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000118
+obo:BFO_0000118 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000117 ;
+ owl:inverseOf obo:BFO_0000138 ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000003 ;
+ rdfs:label "has proper occurrent part"@en ;
+ skos:definition "b has proper occurrent part c =Def b has occurrent part c & b and c are not identical"@en ;
+ skos:example "As for has occurrent part."@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000121
+obo:BFO_0000121 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000117 ;
+ owl:inverseOf obo:BFO_0000139 ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000003 ;
+ rdfs:label "has temporal part"@en ;
+ skos:definition "b has temporal part c =Def c temporal part of b"@en ;
+ skos:example "Your life has temporal part the first year of your life"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000132
+obo:BFO_0000132 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000050 ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000003 ;
+ rdfs:label "occurrent part of"@en ;
+ skos:definition "(Elucidation) occurrent part of is a relation between occurrents b and c when b is part of c"@en ;
+ skos:example "Mary's 5th birthday is an occurrent part of Mary's life; the first set of the tennis match is an occurrent part of the tennis match"@en .
+
+[ rdf:type owl:Axiom ;
+ owl:annotatedSource obo:BFO_0000132 ;
+ owl:annotatedProperty rdfs:subPropertyOf ;
+ owl:annotatedTarget obo:BFO_0000050 ;
+ rdfs:comment "\"occurrent part of\" is not a BFO2020 temporalized relation. It just restricts the domain and range to \"occurrent\". That's why is should be OK to make it sub property of RO \"part of\""
+ ] .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000136
+obo:BFO_0000136 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000139 ;
+ owl:inverseOf obo:BFO_0000181 ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000003 ;
+ rdfs:label "proper temporal part of"@en ;
+ skos:definition "b proper temporal part of c =Def b temporal part of c & not (b = c)"@en ;
+ skos:example "As for temporal part of."@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000138
+obo:BFO_0000138 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000132 ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000003 ;
+ rdfs:label "proper occurrent part of"@en ;
+ skos:definition "b proper occurrent part of c =Def b occurrent part of c & b and c are not identical"@en ;
+ skos:example "As for occurrent part of."@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000139
+obo:BFO_0000139 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000132 ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000003 ;
+ rdfs:label "temporal part of"@en ;
+ skos:definition "b temporal part of c =Def b occurrent part of c & (b and c are temporal regions) or (b and c are spatiotemporal regions & b temporally projects onto an occurrent part of the temporal region that c temporally projects onto) or (b and c are processes or process boundaries & b occupies a temporal region that is an occurrent part of the temporal region that c occupies)"@en ;
+ skos:example "Your heart beating from 4pm to 5pm today is a temporal part of the process of your heart beating; the 4th year of your life is a temporal part of your life, as is the process boundary which separates the 3rd and 4th years of your life; the first quarter of a game of football is a temporal part of the whole game"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000153
+obo:BFO_0000153 rdf:type owl:ObjectProperty ,
+ owl:FunctionalProperty ;
+ rdfs:domain obo:BFO_0000011 ;
+ rdfs:range obo:BFO_0000008 ;
+ rdfs:label "temporally projects onto"@en ;
+ skos:definition "(Elucidation) temporally projects onto is a relation between a spatiotemporal region s and some temporal region which is the temporal extent of s"@en ;
+ skos:example "The world line of a particle temporally projects onto the temporal region extending from the beginning to the end of the existence of the particle"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000181
+obo:BFO_0000181 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000121 ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000003 ;
+ rdfs:label "has proper temporal part"@en ;
+ skos:definition "b has proper temporal part c =Def c proper temporal part of b"@en ;
+ skos:example "As for has temporal part."@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000183
+obo:BFO_0000183 rdf:type owl:ObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000029
+ obo:BFO_0000040
+ )
+ ] ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000015
+ obo:BFO_0000035
+ )
+ ] ;
+ rdfs:label "environs"@en ;
+ skos:definition "b environs c =Def c occurs in b"@en ;
+ skos:example "Mouth environs process of mastication; city environs traffic"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000184
+obo:BFO_0000184 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:BFO_0000185 ;
+ rdf:type owl:FunctionalProperty ,
+ owl:InverseFunctionalProperty ;
+ rdfs:domain obo:BFO_0000182 ;
+ rdfs:range obo:BFO_0000040 ;
+ rdfs:label "history of"@en ;
+ skos:definition "(Elucidation) history of is a relation between history b and material entity c such that b is the unique history of c"@en ;
+ skos:example "This life is the history of this organism"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000185
+obo:BFO_0000185 rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000040 ;
+ rdfs:range obo:BFO_0000182 ;
+ rdfs:label "has history"@en ;
+ skos:definition "b has history c =Def c history of b"@en ;
+ skos:example "This organism has history this life"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000194
+obo:BFO_0000194 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:BFO_0000195 ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000020
+ [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Class ;
+ owl:complementOf obo:BFO_0000006
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ )
+ ] ;
+ rdfs:range obo:BFO_0000020 ;
+ rdfs:label "specifically depended on by"@en ;
+ skos:definition "b specifically depended on by c =Def c specifically depends on b"@en ;
+ skos:example "Coloured object specifically depended on by colour"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000195
+obo:BFO_0000195 rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000020 ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000020
+ [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Class ;
+ owl:complementOf obo:BFO_0000006
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ )
+ ] ;
+ rdfs:label "specifically depends on"@en ;
+ skos:definition "(Elucidation) specifically depends on is a relation between a specifically dependent continuant b and specifically dependent continuant or independent continuant that is not a spatial region c such that b and c share no parts in common & b is of a nature such that at all times t it cannot exist unless c exists & b is not a boundary of c"@en ;
+ skos:example "A shape specifically depends on the shaped object; hue, saturation and brightness of a colour sample specifically depends on each other"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000196
+obo:BFO_0000196 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000194 ;
+ owl:inverseOf obo:BFO_0000197 ;
+ rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Class ;
+ owl:complementOf obo:BFO_0000006
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:range obo:BFO_0000020 ;
+ rdfs:label "bearer of"@en ;
+ skos:definition "b bearer of c =Def c inheres in b"@en ;
+ skos:example "A patch of ink is the bearer of a colour quality; an organism is the bearer of a temperature quality"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000197
+obo:BFO_0000197 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000195 ;
+ rdfs:domain obo:BFO_0000020 ;
+ rdfs:range [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Class ;
+ owl:complementOf obo:BFO_0000006
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:label "inheres in"@en ;
+ skos:definition "b inheres in c =Def b is a specifically dependent continuant & c is an independent continuant that is not a spatial region & b specifically depends on c"@en ;
+ skos:example "A shape inheres in a shaped object; a mass inheres in a material entity"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000199
+obo:BFO_0000199 rdf:type owl:ObjectProperty ,
+ owl:FunctionalProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000015
+ obo:BFO_0000035
+ )
+ ] ;
+ rdfs:range obo:BFO_0000008 ;
+ rdfs:label "occupies temporal region"@en ;
+ skos:definition "p occupies temporal region t =Def p is a process or process boundary & the spatiotemporal region occupied by p temporally projects onto t"@en ;
+ skos:example "The Second World War occupies the temporal region September 1, 1939 - September 2, 1945"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000200
+obo:BFO_0000200 rdf:type owl:ObjectProperty ,
+ owl:FunctionalProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000015
+ obo:BFO_0000035
+ )
+ ] ;
+ rdfs:range obo:BFO_0000011 ;
+ rdfs:label "occupies spatiotemporal region"@en ;
+ skos:definition "(Elucidation) occupies spatiotemporal region is a relation between a process or process boundary p and the spatiotemporal region s which is its spatiotemporal extent"@en ;
+ skos:example "A particle emitted by a nuclear reactor occupies the spatiotemporal region which is its trajectory"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000221
+obo:BFO_0000221 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:BFO_0000222 ;
+ rdfs:domain obo:BFO_0000203 ;
+ rdfs:range obo:BFO_0000008 ;
+ rdfs:label "first instant of"@en ;
+ skos:definition "t first instant of t' =Def t is a temporal instant & t' is a temporal region t' & t precedes all temporal parts of t' other than t"@en ;
+ skos:example "An hour starting at midnight yesterday has first instant midnight yesterday"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000222
+obo:BFO_0000222 rdf:type owl:ObjectProperty ,
+ owl:FunctionalProperty ;
+ rdfs:domain obo:BFO_0000008 ;
+ rdfs:range obo:BFO_0000203 ;
+ rdfs:label "has first instant"@en ;
+ skos:definition "t has first instant t' =Def t' first instant of t"@en ;
+ skos:example "The first hour of a year has first instant midnight on December 31"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000223
+obo:BFO_0000223 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:BFO_0000224 ;
+ rdfs:domain obo:BFO_0000203 ;
+ rdfs:range obo:BFO_0000008 ;
+ rdfs:label "last instant of"@en ;
+ skos:definition "t last instant of t' =Def t is a temporal instant & t' is a temporal region & all temporal parts of t' other than t precede t"@en ;
+ skos:example "Last midnight is the last instant of yesterday"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000224
+obo:BFO_0000224 rdf:type owl:ObjectProperty ,
+ owl:FunctionalProperty ;
+ rdfs:domain obo:BFO_0000008 ;
+ rdfs:range obo:BFO_0000203 ;
+ rdfs:label "has last instant"@en ;
+ skos:definition "t has last instant t' =Def t' last instant of t"@en ;
+ skos:example "The last hour of a year has last instant midnight December 31"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000039
+obo:IAO_0000039 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000051 ;
+ rdf:type owl:FunctionalProperty ;
+ rdfs:range obo:IAO_0000003 ;
+ rdfs:label "has measurement unit label"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000136
+obo:IAO_0000136 rdf:type owl:ObjectProperty ;
+ owl:inverseOf co:PMD_0000004 ;
+ rdfs:domain obo:IAO_0000030 ;
+ obo:IAO_0000112 "This document is about information artifacts and their representations"@en ;
+ obo:IAO_0000115 "A (currently) primitive relation that relates an information artifact to an entity."@en ;
+ obo:IAO_0000116 """7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \"mentions\" relation. Weaken the is_about relationship to be primitive.
+
+We will try to build it back up by elaborating the various subproperties that are more precisely defined.
+
+Some currently missing phenomena that should be considered \"about\" are predications - \"The only person who knows the answer is sitting beside me\" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic."""@en ;
+ obo:IAO_0000119 "Smith, Ceusters, Ruttenberg, 2000 years of philosophy"@en ;
+ rdfs:label "is about"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000219
+obo:IAO_0000219 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:IAO_0000136 ;
+ owl:inverseOf obo:IAO_0000235 ;
+ rdfs:domain obo:IAO_0000030 ;
+ rdfs:range obo:BFO_0000001 ;
+ obo:IAO_0000112 "A person's name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \"Alan\" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \"Alan\" and the person that is being named."@en ;
+ obo:IAO_0000115 "A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to 'pick out' the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically"@en ;
+ obo:IAO_0000116 """2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have 'specifically denotes', which would have been primitive, so make this relation primitive.
+g denotes r =def
+r is a portion of reality
+there is some c that is a concretization of g
+every c that is a concretization of g specifically denotes r"""@en ;
+ obo:IAO_0000119 "Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan"@en ;
+ rdfs:label "denotes"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000221
+obo:IAO_0000221 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:IAO_0000136 ;
+ owl:inverseOf obo:IAO_0000417 ;
+ rdfs:domain obo:IAO_0000109 ;
+ rdfs:range obo:BFO_0000019 ;
+ obo:IAO_0000115 "m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q"@en ;
+ obo:IAO_0000116 "8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later"@en ,
+ """From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]
+
+This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \"measuring\" the bearer = referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.
+
+Werner suggests a solution based on \"Magnitudes\" a proposal for which we are awaiting details.
+--
+From the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]
+
+unit of measure is a quality, e.g. the length of a ruler.
+
+[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]
+
+[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]
+
+a represents b means either a denotes b or a describes
+
+describe:
+a describes b means a is about b and a allows an inference of at least one quality of b
+
+We have had a long discussion about denotes versus describes."""@en ,
+ """From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.
+
+a is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality."""@en ,
+ """From the second meeting on IAO:
+
+An attempt at defining assay using Barry's \"reliability\" wording
+
+assay:
+process and has_input some material entity
+and has_output some information content entity
+and which is such that instances of this process type reliably generate
+outputs that describes the input."""@en ,
+ """This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \"measuring\" the bearer = referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.
+
+Werner suggests a solution based on \"Magnitudes\" a proposal for which we are awaiting details."""@en ;
+ rdfs:label "is quality measurement of"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000235
+obo:IAO_0000235 rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000001 ;
+ rdfs:range obo:IAO_0000030 ;
+ obo:IAO_0000115 "inverse of the relation 'denotes'"@en ;
+ rdfs:label "denoted by"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000413
+obo:IAO_0000413 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:IAO_0000136 ;
+ rdfs:domain obo:IAO_0000416 ;
+ rdfs:range obo:BFO_0000015 ;
+ obo:IAO_0000115 "relates a process to a time-measurement-datum that represents the duration of the process"@en ;
+ rdfs:label "is duration of"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000417
+obo:IAO_0000417 rdf:type owl:ObjectProperty ;
+ obo:IAO_0000115 "inverse of the relation of is quality measurement of"@en ;
+ obo:IAO_0000116 "2009/10/19 Alan Ruttenberg. Named 'junk' relation useful in restrictions, but not a real instance relationship"@en ;
+ rdfs:label "is quality measured as"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000418
+obo:IAO_0000418 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:IAO_0000136 ;
+ owl:inverseOf obo:IAO_0000419 ;
+ obo:IAO_0000115 "A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality."@en ;
+ rdfs:label "is quality specification of"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000419
+obo:IAO_0000419 rdf:type owl:ObjectProperty ;
+ obo:IAO_0000115 "inverse of the relation of is quality specification of"@en ;
+ obo:IAO_0000116 "2009/10/19 Alan Ruttenberg. Named 'junk' relation useful in restrictions, but not a real instance relationship"@en ;
+ rdfs:label "quality is specified as"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000293
+obo:OBI_0000293 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000057 ;
+ owl:inverseOf obo:OBI_0000295 ;
+ rdfs:domain obo:OBI_0000011 ;
+ obo:IAO_0000112 "see is_input_of example_of_usage"@en ;
+ obo:IAO_0000115 "The inverse property of is specified input of"@en ;
+ obo:IAO_0000116 "8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how 'has participant' works." ;
+ rdfs:label "has specified input"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000295
+obo:OBI_0000295 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000056 ;
+ rdfs:range obo:OBI_0000011 ;
+ obo:IAO_0000112 "some Autologous EBV(Epstein-Barr virus)-transformed B-LCL (B lymphocyte cell line) is_input_for instance of Chromum Release Assay described at https://wiki.cbil.upenn.edu/obiwiki/index.php/Chromium_Release_assay"@en ;
+ obo:IAO_0000115 "A relation between a planned process and a continuant participating in that process that is not created during the process. The presence of the continuant during the process is explicitly specified in the plan specification which the process realizes the concretization of."@en ;
+ rdfs:label "is specified input of"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000299
+obo:OBI_0000299 rdf:type owl:ObjectProperty ;
+ owl:equivalentProperty [ owl:inverseOf obo:OBI_0000312
+ ] ;
+ rdfs:subPropertyOf obo:RO_0000057 ;
+ owl:inverseOf obo:OBI_0000312 ;
+ rdfs:domain obo:OBI_0000011 ;
+ obo:IAO_0000115 "The inverse property of is specified output of"@en ,
+ "The inverse property of is_specified_output_of"@en ;
+ rdfs:label "has specified output"@en ,
+ "has_specified_output"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000312
+obo:OBI_0000312 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000056 ;
+ rdfs:range obo:OBI_0000011 ;
+ obo:IAO_0000115 "A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of."@en ;
+ rdfs:label "is specified output of"@en ,
+ "is_specified_output_of"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000417
+obo:OBI_0000417 rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:OBI_0000011 ;
+ rdfs:range obo:IAO_0000005 ;
+ obo:IAO_0000112 "A cell sorting process achieves the objective specification 'material separation objective'" ;
+ obo:IAO_0000115 "This relation obtains between a planned process and a objective specification when the criteria specified in the objective specification are met at the end of the planned process."@en ;
+ obo:IAO_0000119 "PPPB branch derived" ;
+ rdfs:label "achieves_planned_objective" ;
+ co:PMD_0000064 "https://github.com/search?q=repo%3Amaterialdigital%2Fcore-ontology+path%3A%2F%5Epatterns%5C%2F%2F+OBI_0000417&type=code" .
+
+
+### http://purl.obolibrary.org/obo/OBI_0001927
+obo:OBI_0001927 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:IAO_0000136 ;
+ rdfs:domain obo:OBI_0001933 ;
+ obo:IAO_0000115 "A relation between a value specification and an entity which the specification is about."@en ;
+ rdfs:label "specifies value of" .
+
+
+### http://purl.obolibrary.org/obo/OBI_0001938
+obo:OBI_0001938 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000051 ;
+ rdfs:domain obo:IAO_0000030 ;
+ rdfs:range obo:OBI_0001933 ;
+ obo:IAO_0000115 "A relation between an information content entity and a value specification that specifies its value."@en ;
+ obo:IAO_0000119 "OBI" ;
+ rdfs:label "has value specification" .
+
+
+### http://purl.obolibrary.org/obo/RO_0000052
+obo:RO_0000052 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:RO_0000053 ;
+ rdf:type owl:FunctionalProperty ;
+ obo:IAO_0000112 "this fragility is a characteristic of this vase"@en ,
+ "this red color is a characteristic of this apple"@en ;
+ obo:IAO_0000115 "a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."@en ;
+ rdfs:label "characteristic of"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000053
+obo:RO_0000053 rdf:type owl:ObjectProperty ,
+ owl:InverseFunctionalProperty ;
+ rdfs:range obo:BFO_0000020 ;
+ obo:IAO_0000112 "this apple is bearer of this red color"@en ,
+ "this vase is bearer of this fragility"@en ;
+ obo:IAO_0000115 "Inverse of characteristic_of"@en ;
+ obo:IAO_0000116 "A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."@en ;
+ rdfs:label "has characteristic"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000056
+obo:RO_0000056 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:RO_0000057 ;
+ rdfs:domain obo:BFO_0000002 ;
+ rdfs:range obo:BFO_0000003 ;
+ obo:IAO_0000112 "this blood clot participates in this blood coagulation"@en ,
+ "this input material (or this output material) participates in this process"@en ,
+ "this investigator participates in this investigation"@en ;
+ obo:IAO_0000115 "a relation between a continuant and a process, in which the continuant is somehow involved in the process"@en ;
+ rdfs:label "participates in"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000057
+obo:RO_0000057 rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000002 ;
+ owl:propertyChainAxiom ( obo:BFO_0000051
+ obo:RO_0000057
+ ) ;
+ obo:IAO_0000112 "this blood coagulation has participant this blood clot"@en ,
+ "this investigation has participant this investigator"@en ,
+ "this process has participant this input material (or this output material)"@en ;
+ obo:IAO_0000115 "a relation between a process and a continuant, in which the continuant is somehow involved in the process"@en ;
+ obo:IAO_0000116 "Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."@en ;
+ rdfs:label "has participant"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000058
+obo:RO_0000058 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:RO_0000059 ;
+ rdfs:domain obo:BFO_0000031 ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000015
+ obo:BFO_0000020
+ )
+ ] ;
+ obo:IAO_0000112 "A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."@en ,
+ "An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."@en ;
+ obo:IAO_0000115 "A relationship between a generically dependent continuant and a specifically dependent continuant or process, in which the generically dependent continuant depends on some independent continuant or process in virtue of the fact that the specifically dependent continuant or process also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants or processes."@en ;
+ rdfs:label "is concretized as"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000059
+obo:RO_0000059 rdf:type owl:ObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000015
+ obo:BFO_0000020
+ )
+ ] ;
+ rdfs:range obo:BFO_0000031 ;
+ obo:IAO_0000112 "A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."@en ,
+ "An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."@en ;
+ obo:IAO_0000115 "A relationship between a specifically dependent continuant or process and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant or process also depends on that same independent continuant. Multiple specifically dependent continuants or processes can concretize the same generically dependent continuant."@en ;
+ rdfs:label "concretizes"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000079
+obo:RO_0000079 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000052 ;
+ owl:inverseOf obo:RO_0000085 ;
+ rdfs:domain obo:BFO_0000034 ;
+ obo:IAO_0000112 "this catalysis function is a function of this enzyme"@en ;
+ obo:IAO_0000115 "a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"@en ;
+ obo:IAO_0000116 "A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."@en ;
+ rdfs:label "function of"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000080
+obo:RO_0000080 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000052 ;
+ owl:inverseOf obo:RO_0000086 ;
+ obo:IAO_0000112 "this red color is a quality of this apple"@en ;
+ obo:IAO_0000115 "a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"@en ;
+ obo:IAO_0000116 "A quality inheres in its bearer at all times for which the quality exists."@en ;
+ rdfs:label "quality of"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000081
+obo:RO_0000081 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000052 ;
+ owl:inverseOf obo:RO_0000087 ;
+ obo:IAO_0000112 "this investigator role is a role of this person"@en ;
+ obo:IAO_0000115 "a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"@en ;
+ obo:IAO_0000116 "A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."@en ;
+ rdfs:label "role of"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000085
+obo:RO_0000085 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000053 ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000034 ;
+ obo:IAO_0000112 "this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)"@en ;
+ obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"@en ;
+ obo:IAO_0000116 "A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."@en ;
+ rdfs:label "has function"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000086
+obo:RO_0000086 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000053 ;
+ rdfs:range obo:BFO_0000019 ;
+ obo:IAO_0000112 "this apple has quality this red color"@en ;
+ obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"@en ;
+ obo:IAO_0000116 "A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."@en ;
+ rdfs:label "has quality"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000087
+obo:RO_0000087 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000053 ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000023 ;
+ obo:IAO_0000112 "this person has role this investigator role (more colloquially: this person has this role of investigator)"@en ;
+ obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"@en ;
+ obo:IAO_0000116 "A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."@en ;
+ rdfs:label "has role"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000091
+obo:RO_0000091 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000053 ;
+ owl:inverseOf obo:RO_0000092 ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000016 ;
+ obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"@en ;
+ rdfs:label "has disposition"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0000092
+obo:RO_0000092 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000052 ;
+ obo:IAO_0000115 "inverse of has disposition" ;
+ rdfs:label "disposition of"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0001000
+obo:RO_0001000 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:RO_0001001 ;
+ obo:IAO_0000112 "this cell derives from this parent cell (cell division)"@en ,
+ "this nucleus derives from this parent nucleus (nuclear division)"@en ;
+ obo:IAO_0000115 "a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"@en ;
+ obo:IAO_0000116 "This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops from'."@en ;
+ rdfs:label "derives from"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0001001
+obo:RO_0001001 rdf:type owl:ObjectProperty ;
+ obo:IAO_0000112 "this parent cell derives into this cell (cell division)"@en ,
+ "this parent nucleus derives into this nucleus (nuclear division)"@en ;
+ obo:IAO_0000115 "a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"@en ;
+ obo:IAO_0000116 "This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops into'. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking 'derives from' rather than the forward-looking 'derives into'."@en ;
+ rdfs:label "derives into"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0001015
+obo:RO_0001015 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:RO_0001025 ;
+ rdf:type owl:TransitiveProperty ;
+ obo:IAO_0000112 "my head is the location of my brain"@en ,
+ "this cage is the location of this rat"@en ;
+ obo:IAO_0000115 "a relation between two independent continuants, the location and the target, in which the target is entirely within the location"@en ;
+ obo:IAO_0000116 "Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"@en ;
+ rdfs:label "location of"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0001025
+obo:RO_0001025 rdf:type owl:ObjectProperty ,
+ owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000004 ,
+ [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Class ;
+ owl:complementOf obo:BFO_0000006
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:range obo:BFO_0000004 ,
+ [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Class ;
+ owl:complementOf obo:BFO_0000006
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ owl:propertyChainAxiom ( obo:RO_0001025
+ obo:BFO_0000050
+ ) ;
+ obo:IAO_0000112 "my brain is located in my head"@en ,
+ "this rat is located in this cage"@en ;
+ obo:IAO_0000115 "a relation between two independent continuants, the target and the location, in which the target is entirely within the location"@en ;
+ obo:IAO_0000116 "Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus"@en ,
+ "Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"@en ;
+ rdfs:label "located in"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002082
+obo:RO_0002082 rdf:type owl:ObjectProperty ,
+ owl:SymmetricProperty ,
+ owl:TransitiveProperty ;
+ obo:IAO_0000115 "x simultaneous with y iff ω(x) = ω(y) and ω(α ) = ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and '=' indicates the same instance in time." ;
+ rdfs:label "simultaneous with"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002223
+obo:RO_0002223 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000050 ;
+ owl:inverseOf obo:RO_0002224 ;
+ obo:IAO_0000115 "inverse of starts with" ;
+ obo:IAO_0000119 "Allen" ;
+ rdfs:label "starts"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002224
+obo:RO_0002224 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000051 ;
+ rdf:type owl:TransitiveProperty ;
+ obo:IAO_0000112 "Every insulin receptor signaling pathway starts with the binding of a ligand to the insulin receptor" ;
+ obo:IAO_0000115 "x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) = α(x) ∧ ω(y) < ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." ;
+ rdfs:label "starts with"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002229
+obo:RO_0002229 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000050 ;
+ owl:inverseOf obo:RO_0002230 ;
+ obo:IAO_0000115 "inverse of ends with" ;
+ rdfs:label "ends"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002230
+obo:RO_0002230 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000051 ;
+ rdf:type owl:TransitiveProperty ;
+ obo:IAO_0000115 "x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) > α(x) ∧ ω(y) = ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." ;
+ rdfs:label "ends with"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002233
+obo:RO_0002233 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000057 ;
+ owl:inverseOf obo:RO_0002352 ;
+ rdfs:domain obo:BFO_0000015 ;
+ owl:propertyChainAxiom ( obo:RO_0002224
+ obo:RO_0002233
+ ) ;
+ obo:IAO_0000115 "p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p." ;
+ rdfs:label "has input"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002234
+obo:RO_0002234 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000057 ;
+ owl:inverseOf obo:RO_0002353 ;
+ owl:propertyChainAxiom ( obo:RO_0002230
+ obo:RO_0002234
+ ) ;
+ obo:IAO_0000115 "p has output c iff c is a participant in p, c is present at the end of p, and c is not present in the same state at the beginning of p." ;
+ rdfs:label "has output"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002351
+obo:RO_0002351 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000051 ;
+ rdf:type owl:IrreflexiveProperty ;
+ obo:IAO_0000115 "has member is a mereological relation between a collection and an item." ;
+ obo:IAO_0000119 "SIO" ;
+ rdfs:label "has member"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002352
+obo:RO_0002352 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000056 ;
+ obo:IAO_0000115 "inverse of has input" ;
+ rdfs:label "input of"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002353
+obo:RO_0002353 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:RO_0000056 ;
+ obo:IAO_0000115 "inverse of has output" ;
+ rdfs:label "is output of"@en ,
+ "output of"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0002502
+obo:RO_0002502 rdf:type owl:ObjectProperty .
+
+
+### http://purl.obolibrary.org/obo/RO_0009006
+obo:RO_0009006 rdf:type owl:ObjectProperty ;
+ owl:inverseOf obo:RO_0009007 ;
+ rdfs:range obo:BFO_0000020 ;
+ obo:IAO_0000112 "A mass measurement assay measures an material's mass characteristic. A radioactivity detection assay measures the amount of radiation (alpha, beta or gamma ray emmissions) coming from a material."@en ;
+ obo:IAO_0000115 "A relation between an assay and a characteristic, in which the assay generates a data item which is a measure of a characteristic."@en ;
+ rdfs:label "assay measures characteristic"@en .
+
+
+### http://purl.obolibrary.org/obo/RO_0009007
+obo:RO_0009007 rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000020 ;
+ obo:IAO_0000115 "Inverse of 'assay measures characteristic'"@en ;
+ rdfs:label "characteristic measured by assay"@en .
+
+
+### http://purl.obolibrary.org/obo/STATO_0000102
+obo:STATO_0000102 rdf:type owl:ObjectProperty ;
+ owl:propertyChainAxiom ( obo:BFO_0000055
+ obo:RO_0000059
+ ) ;
+ obo:IAO_0000115 "relationship between a planned process and the plan specification that it carries out; it is defined as equivalent to the composed relationship (realizes o concretizes)"@en ;
+ obo:IAO_0000119 "AGB" ;
+ rdfs:label "executes" .
+
+
+### https://w3id.org/pmd/co/PMD_0000004
+co:PMD_0000004 rdf:type owl:ObjectProperty ;
+ rdfs:label "is subject of"@en ;
+ skos:definition "Inverse of 'is about'."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000009
+co:PMD_0000009 rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range co:PMD_0000008 ;
+ rdfs:label "has process attribute"@de ;
+ rdfs:seeAlso "has process attribute from OEO https://openenergyplatform.org/ontology/oeo/OEO_00000500"@en ;
+ skos:definition "A relation between a process and a process attribute that depends on it."@en ;
+ skos:example "Tensile testing process has process attribute tensile rate"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000069
+co:PMD_0000069 rdf:type owl:ObjectProperty ;
+ owl:inverseOf co:PMD_0000070 ;
+ rdf:type owl:InverseFunctionalProperty ;
+ rdfs:domain [ owl:intersectionOf ( obo:BFO_0000002
+ [ rdf:type owl:Class ;
+ owl:complementOf co:PMD_0000068
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:range co:PMD_0000068 ;
+ rdfs:label "has state"@en ;
+ skos:definition "relates a temporally qualified continuant to the unique anchor continuant that it is a temporal phase of"@en ;
+ co:PMD_0001032 "https://github.com/materialdigital/core-ontology/issues/185" .
+
+
+### https://w3id.org/pmd/co/PMD_0000070
+co:PMD_0000070 rdf:type owl:ObjectProperty ,
+ owl:FunctionalProperty ;
+ rdfs:label "is state of"@en ;
+ skos:definition "relates a temporally qualified continuant to the unique anchor continuant that it is a temporal phase of" .
+
+
+### https://w3id.org/pmd/co/PMD_0001026
+co:PMD_0001026 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf co:PMD_0000004 ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:IAO_0000030 ;
+ rdfs:label "complies with"@en ,
+ "entspricht"@de ;
+ skos:definition "complies with is a relation between an independent continuant and an information content entity (e.g., specification or objective) that it conforms to."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001028
+co:PMD_0001028 rdf:type owl:ObjectProperty ;
+ owl:inverseOf co:PMD_0001029 ;
+ rdfs:label "in response to"@en ;
+ skos:definition "inverse of responds with"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001029
+co:PMD_0001029 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf owl:topObjectProperty ;
+ rdfs:domain obo:BFO_0000017 ;
+ rdfs:range co:PMD_0000915 ;
+ rdfs:label "responds with"@en ;
+ skos:definition "The realizable entity must be \"stimulated\" by some Stimulus in order to respond with the Response. The bearer of the realizable entity must participate in Stimulation as well as in Response." .
+
+
+### https://w3id.org/pmd/co/PMD_0001030
+co:PMD_0001030 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000054 ;
+ rdfs:range co:PMD_0000950 ;
+ rdfs:label "stimulated by"@en ;
+ skos:definition "inverse of stimulates"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001031
+co:PMD_0001031 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000055 ;
+ rdfs:domain co:PMD_0000950 ;
+ rdfs:range co:PMD_0000005 ;
+ rdfs:label "stimulates"@en ;
+ skos:definition "A relation between a stimulating process and material property, where there is some material entity that is bearer of the material property and participates in the stimulating process, and the material property comes to be realized in the course of the stimulating process."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020005
+co:PMD_0020005 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000051 ;
+ rdfs:label "consists of"@en ;
+ skos:definition "A continuant part property that relates Material Entity Aggregates in the direction of smaller length-scale."@en ;
+ skos:example "A portion of steel consists of a portion of carbon and a portion of iron."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020020
+co:PMD_0020020 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf owl:topObjectProperty ;
+ rdf:type owl:SymmetricProperty ;
+ rdfs:domain obo:BFO_0000040 ;
+ rdfs:range obo:BFO_0000040 ;
+ rdfs:label "interacts with"@en ;
+ skos:definition "A relation between participants of a process indicating that some of the participants SDCs are affected during the process due to the interaction of the participants."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020021
+co:PMD_0020021 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf co:PMD_0020020 ;
+ rdfs:domain [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom co:PMD_0020134
+ ] ;
+ rdfs:range [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom co:PMD_0020135
+ ] ;
+ rdfs:label "causally influences"@en ;
+ skos:definition "An entity (that is bearer of some stimulation role) causally influences another entity (that is bearer of the stimulation target role) in a process iff the target objects qualites (and/or realizable entities?) are altered in a manner that is significant in the given context/domain of discourse.."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020022
+co:PMD_0020022 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf owl:topObjectProperty ;
+ owl:propertyChainAxiom ( co:PMD_0020005
+ obo:BFO_0000196
+ ) ;
+ rdfs:comment """TODO: check if we should force the 'o' to be a portion of matter' through:
+http://ontologydesignpatterns.org/wiki/Submissions:N-Ary_Relation_Pattern_%28OWL_2%29
+or
+https://www.w3.org/TR/swbp-n-aryRelations/"""@en ;
+ rdfs:label "intensive bearer of"@en ;
+ skos:definition "Intensive bearer of is a chain that allows to connect objects to intensive properties through \"the matter they consist of\"."@en ;
+ skos:example "This piece of metal intensive bearer of some temperature."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020127
+co:PMD_0020127 rdf:type owl:ObjectProperty ;
+ rdfs:domain co:PMD_0000008 ;
+ rdfs:range obo:BFO_0000020 ;
+ rdfs:comment """Despite has characteristic from RO does not have any domain constraints, it is still not possible to directly connect an instance of a process with an instance of a SDC.
+
+First, SDC is dependent on a IC. As RO does not have \"bearer of\" object property, the \"has characteristic\" implies that the domain should be an IC.
+
+Second, characteristic of is a functional property. Thus, two triples SDC_1 characteristc of IC_1 and SDC_2 characteristc of Process_1 (where IC_1 participates in Process_1), cannot exist simultaneously.
+An example of such case can be \"Temperature of during the annealing process was 1000°C\". Temperature is an SDC of some participant of the annealing, however it is not clear whether it is an SDC of an oven or of a sample in the oven. If we assert triple Annealing--> has characteristic --> Temperature 1000°C, then the correct triple connecting temperature SDC with either oven or specimen cannot exist."""@en ;
+ rdfs:label "refers to"@en ;
+ skos:definition "a relation between a process attribute and an SDC of some participant in a process"@en ;
+ skos:example "a relation to between a process attribute an a SDC of some participant in a process."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020141
+co:PMD_0020141 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:BFO_0000196 ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000027
+ obo:BFO_0000030
+ )
+ ] ;
+ rdfs:range obo:BFO_0000020 ;
+ rdfs:label "integral bearer of"@en ;
+ skos:definition """Integral bearer of is a property chain linking an object or object aggregate O that consits of a portion of matter PM to a SDC Q that inheres in 'portions of matter' only:
+O -consists of-> PM -bearer of-> Q"""@en ;
+ skos:example "Talking colloquially about Intensive thermodynamic properties of an object requires this property."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0040121
+co:PMD_0040121 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf obo:IAO_0000136 ;
+ owl:inverseOf co:PMD_0040122 ;
+ rdfs:domain obo:IAO_0000030 ;
+ rdfs:range obo:BFO_0000023 ;
+ rdfs:label "specifies role"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0040122
+co:PMD_0040122 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf co:PMD_0000004 ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:IAO_0000030 ;
+ rdfs:label "role specified by"@en .
+
+
+### https://w3id.org/pmd/log/LOG_1900001
+:LOG_1900001 rdf:type owl:ObjectProperty ;
+ rdfs:domain [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Class ;
+ owl:complementOf obo:BFO_0000024
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ [ owl:intersectionOf ( obo:BFO_0000027
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0002351 ;
+ owl:someValuesFrom co:PMD_0000881
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ )
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ActsOnBehalfOfAtSomeTime" ;
+ rdfs:label "acts on behalf of"@en ;
+ skos:definition "relation from a material entity to a person or a group of agents or engineered system that holds when the material entity participates in some planned process in order to fulfill an objective for the person or group of agents or engineered system" .
+
+
+### https://w3id.org/pmd/log/LOG_1900002
+:LOG_1900002 rdf:type owl:ObjectProperty ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/OwnedBy" ;
+ rdfs:label "owned by"@en ;
+ skos:definition "relationship from a material entity to a person or business organization when the material entity is held by the person or business organization as legal property" .
+
+
+### https://w3id.org/pmd/log/LOG_1900003
+:LOG_1900003 rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf owl:topObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000047
+ )
+ ] ;
+ rdfs:range obo:BFO_0000004 ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/owns" ;
+ rdfs:label "owns"@en ;
+ skos:definition "relationship from a person or business organization to an independent continuant when the agent holds the independent continuant as legal property" .
+
+
+#################################################################
+# Data properties
+#################################################################
+
+### http://purl.obolibrary.org/obo/IAO_0000004
+obo:IAO_0000004 rdf:type owl:DatatypeProperty ,
+ owl:FunctionalProperty ;
+ rdfs:range xsd:double ;
+ rdfs:label "has measurement value"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0001937
+obo:OBI_0001937 rdf:type owl:DatatypeProperty ;
+ rdfs:subPropertyOf obo:OBI_0002135 ;
+ rdfs:domain obo:OBI_0001933 ;
+ obo:IAO_0000115 "A relation between a value specification and a number that quantifies it."@en ;
+ obo:IAO_0000116 "A range of 'real' might be better than 'float'. For now we follow 'has measurement value' until we can consider technical issues with SPARQL queries and reasoning." ;
+ obo:IAO_0000119 "OBI" ;
+ rdfs:label "has specified numeric value" .
+
+
+### http://purl.obolibrary.org/obo/OBI_0002135
+obo:OBI_0002135 rdf:type owl:DatatypeProperty ;
+ rdfs:domain obo:OBI_0001933 ;
+ obo:IAO_0000115 "A relation between a value specification and a literal."@en ;
+ obo:IAO_0000116 "This is not an RDF/OWL object property. It is intended to link a value found in e.g. a database column of 'M' (the literal) to an instance of a value specification class, which can then be linked to indicate that this is about the biological gender of a human subject." ;
+ obo:IAO_0000119 "OBI" ;
+ rdfs:label "has specified value"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000006
+co:PMD_0000006 rdf:type owl:DatatypeProperty ;
+ rdfs:domain obo:IAO_0000030 ;
+ rdfs:label "has value"@en ;
+ skos:definition "data property that relates an information content entity to a literal"@en .
+
+
+#################################################################
+# Classes
+#################################################################
+
+### http://purl.obolibrary.org/obo/BFO_0000001
+obo:BFO_0000001 rdf:type owl:Class ;
+ obo:IAO_0000112 "Julius Caesar"@en ,
+ "Verdi’s Requiem"@en ,
+ "the Second World War"@en ,
+ "your body mass index"@en ;
+ obo:IAO_0000116 "BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81"@en ;
+ rdfs:label "entity"@en ;
+ skos:definition "(Elucidation) An entity is anything that exists or has existed or will exist"@en ;
+ skos:example "Julius Caesar; the Second World War; your body mass index; Verdi's Requiem"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000002
+obo:BFO_0000002 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000001 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:allValuesFrom obo:BFO_0000002
+ ] ;
+ owl:disjointWith obo:BFO_0000003 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:someValuesFrom obo:BFO_0000003
+ ] ;
+ obo:IAO_0000115 "An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."@en ;
+ obo:IAO_0000116 "BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240"@en ;
+ rdfs:label "continuant"@en ;
+ skos:definition "(Elucidation) A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity"@en ;
+ skos:example "A human being; a tennis ball; a cave; a region of space; someone's temperature"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000003
+obo:BFO_0000003 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000001 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:allValuesFrom obo:BFO_0000003
+ ] ;
+ owl:disjointWith [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:someValuesFrom obo:BFO_0000002
+ ] ;
+ obo:IAO_0000115 "An entity that has temporal parts and that happens, unfolds or develops through time."@en ;
+ obo:IAO_0000116 "BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region"@en ,
+ "BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."@en ;
+ obo:IAO_0000412 ;
+ rdfs:label "occurrent"@en ;
+ skos:definition "(Elucidation) An occurrent is an entity that unfolds itself in time or it is the start or end of such an entity or it is a temporal or spatiotemporal region"@en ;
+ skos:example "As for process, history, process boundary, spatiotemporal region, zero-dimensional temporal region, one-dimensional temporal region, temporal interval, temporal instant."@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000004
+obo:BFO_0000004 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000002 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:allValuesFrom obo:BFO_0000004
+ ] ;
+ owl:disjointWith obo:BFO_0000020 ,
+ obo:BFO_0000031 ;
+ obo:IAO_0000112 "a chair"@en ,
+ "a heart"@en ,
+ "a leg"@en ,
+ "a molecule"@en ,
+ "a spatial region"@en ,
+ "an atom"@en ,
+ "an orchestra."@en ,
+ "an organism"@en ,
+ "the bottom right portion of a human torso"@en ,
+ "the interior of your mouth"@en ;
+ obo:IAO_0000115 "b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])"@en ;
+ rdfs:label "independent continuant"@en ;
+ skos:definition "b is an independent continuant =Def b is a continuant & there is no c such that b specifically depends on c or b generically depends on c"@en ;
+ skos:example "An atom; a molecule; an organism; a heart; a chair; the bottom right portion of a human torso; a leg; the interior of your mouth; a spatial region; an orchestra"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000006
+obo:BFO_0000006 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000141 ;
+ rdfs:label "spatial region"@en ;
+ skos:definition "(Elucidation) A spatial region is a continuant entity that is a continuant part of the spatial projection of a portion of spacetime at a given time"@en ;
+ skos:example "As for zero-dimensional spatial region, one-dimensional spatial region, two-dimensional spatial region, three-dimensional spatial region"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000008
+obo:BFO_0000008 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000003 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000132 ;
+ owl:allValuesFrom obo:BFO_0000008
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000139 ;
+ owl:allValuesFrom obo:BFO_0000008
+ ] ;
+ rdfs:label "temporal region"@en ;
+ skos:definition "(Elucidation) A temporal region is an occurrent over which processes can unfold"@en ;
+ skos:example "As for zero-dimensional temporal region and one-dimensional temporal region"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000009
+obo:BFO_0000009 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000006 ;
+ rdfs:label "two-dimensional spatial region"@en ;
+ skos:definition "(Elucidation) A two-dimensional spatial region is a spatial region that is a whole consisting of a surface together with zero or more surfaces which may have spatial regions of lower dimension as parts"@en ;
+ skos:example "The surface of a sphere-shaped part of space; an infinitely thin plane in space"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000011
+obo:BFO_0000011 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000003 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000132 ;
+ owl:allValuesFrom obo:BFO_0000011
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000139 ;
+ owl:allValuesFrom obo:BFO_0000011
+ ] ;
+ rdfs:label "spatiotemporal region"@en ;
+ skos:definition "(Elucidation) A spatiotemporal region is an occurrent that is an occurrent part of spacetime"@en ;
+ skos:example "The spatiotemporal region occupied by the development of a cancer tumour; the spatiotemporal region occupied by an orbiting satellite"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000015
+obo:BFO_0000015 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000003 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:allValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000015
+ obo:BFO_0000035
+ )
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000132 ;
+ owl:allValuesFrom obo:BFO_0000015
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000139 ;
+ owl:allValuesFrom obo:BFO_0000015
+ ] ;
+ obo:IAO_0000112 "a process of cell-division, \\ a beating of the heart"@en ,
+ "a process of meiosis"@en ,
+ "a process of sleeping"@en ,
+ "the course of a disease"@en ,
+ "the flight of a bird"@en ,
+ "the life of an organism"@en ,
+ "your process of aging."@en ;
+ obo:IAO_0000115 "p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])"@en ;
+ obo:IAO_0000116 "BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)"@en ;
+ obo:IAO_0000412 ;
+ rdfs:label "process"@en ;
+ skos:definition "(Elucidation) p is a process means p is an occurrent that has some temporal proper part and for some time t, p has some material entity as participant"@en ;
+ skos:example "An act of selling; the life of an organism; a process of sleeping; a process of cell-division; a beating of the heart; a process of meiosis; the taxiing of an aircraft; the programming of a computer"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000016
+obo:BFO_0000016 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000017 ;
+ owl:disjointWith obo:BFO_0000023 ;
+ obo:IAO_0000112 "an atom of element X has the disposition to decay to an atom of element Y"@en ,
+ "certain people have a predisposition to colon cancer"@en ,
+ "children are innately disposed to categorize objects in certain ways."@en ,
+ "the cell wall is disposed to filter chemicals in endocytosis and exocytosis"@en ;
+ obo:IAO_0000116 "BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type."@en ;
+ rdfs:label "disposition"@en ;
+ skos:definition "(Elucidation) A disposition b is a realizable entity such that if b ceases to exist then its bearer is physically changed & b's realization occurs when and because this bearer is in some special physical circumstances & this realization occurs in virtue of the bearer's physical make-up"@en ;
+ skos:example "An atom of element X has the disposition to decay to an atom of element Y; the cell wall is disposed to transport cellular material through endocytosis and exocytosis; certain people have a predisposition to colon cancer; children are innately disposed to categorize objects in certain ways"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000017
+obo:BFO_0000017 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000020 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:allValuesFrom obo:BFO_0000017
+ ] ;
+ owl:disjointWith obo:BFO_0000019 ;
+ obo:IAO_0000112 "the disposition of this piece of metal to conduct electricity."@en ,
+ "the disposition of your blood to coagulate"@en ,
+ "the function of your reproductive organs"@en ,
+ "the role of being a doctor"@en ,
+ "the role of this boundary to delineate where Utah and Colorado meet"@en ;
+ obo:IAO_0000115 "A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."@en ;
+ rdfs:label "realizable entity"@en ;
+ skos:definition "(Elucidation) A realizable entity is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region & which is of a type some instances of which are realized in processes of a correlated type"@en ;
+ skos:example "The role of being a doctor; the role of this boundary to delineate where Utah and Colorado meet; the function of your reproductive organs; the disposition of your blood to coagulate; the disposition of this piece of metal to conduct electricity"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000018
+obo:BFO_0000018 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000006 ;
+ rdfs:label "zero-dimensional spatial region"@en ;
+ skos:definition "(Elucidation) A zero-dimensional spatial region is one or a collection of more than one spatially disjoint points in space"@en ;
+ skos:example "The spatial region occupied at some time instant by the North Pole"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000019
+obo:BFO_0000019 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000020 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:allValuesFrom obo:BFO_0000019
+ ] ;
+ obo:IAO_0000112 "the ambient temperature of this portion of air"@en ,
+ "the color of a tomato"@en ,
+ "the length of the circumference of your waist"@en ,
+ "the mass of this piece of gold."@en ,
+ "the shape of your nose"@en ,
+ "the shape of your nostril"@en ;
+ rdfs:label "quality"@en ;
+ skos:definition "(Elucidation) A quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized"@en ;
+ skos:example "The colour of a tomato; the ambient temperature of this portion of air; the length of the circumference of your waist; the shape of your nose; the shape of your nostril; the mass of this piece of gold"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000020
+obo:BFO_0000020 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000002 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:allValuesFrom obo:BFO_0000020
+ ] ;
+ owl:disjointWith obo:BFO_0000031 ;
+ obo:IAO_0000112 "Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key"@en ,
+ "of one-sided specifically dependent continuants: the mass of this tomato"@en ,
+ "of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates."@en ,
+ "the disposition of this fish to decay"@en ,
+ "the function of this heart: to pump blood"@en ,
+ "the mutual dependence of proton donors and acceptors in chemical reactions [79"@en ,
+ "the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction"@en ,
+ "the pink color of a medium rare piece of grilled filet mignon at its center"@en ,
+ "the role of being a doctor"@en ,
+ "the shape of this hole."@en ,
+ "the smell of this portion of mozzarella"@en ;
+ obo:IAO_0000115 "b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])"@en ;
+ rdfs:label "specifically dependent continuant"@en ;
+ skos:definition "b is a specifically dependent continuant =Def b is a continuant & there is some independent continuant c which is not a spatial region & which is such that b specifically depends on c"@en ;
+ skos:example "(with multiple bearers) John's love for Mary; the ownership relation between John and this statue; the relation of authority between John and his subordinates"@en ,
+ "(with one bearer) The mass of this tomato; the pink colour of a medium rare piece of grilled filet mignon at its centre; the smell of this portion of mozzarella; the disposition of this fish to decay; the role of being a doctor; the function of this heart to pump blood; the shape of this hole"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000023
+obo:BFO_0000023 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000017 ;
+ obo:IAO_0000112 "John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married."@en ,
+ "the priest role"@en ,
+ "the role of a boundary to demarcate two neighboring administrative territories"@en ,
+ "the role of a building in serving as a military target"@en ,
+ "the role of a stone in marking a property boundary"@en ,
+ "the role of subject in a clinical trial"@en ,
+ "the student role"@en ;
+ obo:IAO_0000115 "A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."@en ;
+ obo:IAO_0000116 "BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives."@en ;
+ obo:IAO_0000412 obo:BFO_0000023 ;
+ rdfs:label "role"@en ;
+ skos:definition "(Elucidation) A role b is a realizable entity such that b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be & b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed"@en ;
+ skos:example "The priest role; the student role; the role of subject in a clinical trial; the role of a stone in marking a property boundary; the role of a boundary to demarcate two neighbouring administrative territories; the role of a building in serving as a military target"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000024
+obo:BFO_0000024 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ rdfs:label "fiat object part"@en ;
+ skos:definition "(Elucidation) A fiat object part b is a material entity & such that if b exists then it is continuant part of some object c & demarcated from the remainder of c by one or more fiat surfaces"@en ;
+ skos:example "The upper and lower lobes of the left lung; the dorsal and ventral surfaces of the body; the Western hemisphere of the Earth; the FMA:regional parts of an intact human body"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000026
+obo:BFO_0000026 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000006 ;
+ rdfs:label "one-dimensional spatial region"@en ;
+ skos:definition "(Elucidation) A one-dimensional spatial region is a whole consisting of a line together with zero or more lines which may have points as parts"@en ;
+ skos:example "An edge of a cube-shaped portion of space; a line connecting two points; two parallel lines extended in space"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000027
+obo:BFO_0000027 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ obo:IAO_0000412 ;
+ rdfs:label "object aggregate"@en ;
+ skos:definition "(Elucidation) An object aggregate is a material entity consisting exactly of a plurality (≥1) of objects as member parts which together form a unit"@en ;
+ skos:example "The aggregate of the musicians in a symphony orchestra and their instruments; the aggregate of bearings in a constant velocity axle joint; the nitrogen atoms in the atmosphere; a collection of cells in a blood biobank"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000028
+obo:BFO_0000028 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000006 ;
+ obo:IAO_0000412 obo:BFO_0000028 ;
+ rdfs:label "three-dimensional spatial region"@en ;
+ skos:definition "(Elucidation) A three-dimensional spatial region is a whole consisting of a spatial volume together with zero or more spatial volumes which may have spatial regions of lower dimension as parts"@en ;
+ skos:example "A cube-shaped region of space; a sphere-shaped region of space; the region of space occupied by all and only the planets in the solar system at some point in time"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000029
+obo:BFO_0000029 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000141 ;
+ obo:IAO_0000412 obo:BFO_0000029 ;
+ rdfs:label "site"@en ;
+ skos:definition "(Elucidation) A site is a three-dimensional immaterial entity whose boundaries either (partially or wholly) coincide with the boundaries of one or more material entities or have locations determined in relation to some material entity"@en ;
+ skos:example "A hole in a portion of cheese; a rabbit hole; the Grand Canyon; the Piazza San Marco; the kangaroo-joey-containing hole of a kangaroo pouch; your left nostril (a fiat part - the opening - of your left nasal cavity); the lumen of your gut; the hold of a ship; the interior of the trunk of your car; hole in an engineered floor joist"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000030
+obo:BFO_0000030 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ rdfs:label "object"@en ;
+ skos:definition "(Elucidation) An object is a material entity which manifests causal unity & is of a type instances of which are maximal relative to the sort of causal unity manifested"@en ;
+ skos:example "An organism; a fish tank; a planet; a laptop; a valve; a block of marble; an ice cube"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000031
+obo:BFO_0000031 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000002 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:allValuesFrom obo:BFO_0000031
+ ] ;
+ obo:IAO_0000112 "The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity."@en ,
+ "the pdf file on your laptop, the pdf file that is a copy thereof on my laptop"@en ,
+ "the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule."@en ;
+ obo:IAO_0000115 "b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])"@en ;
+ rdfs:label "generically dependent continuant"@en ;
+ skos:definition "(Elucidation) A generically dependent continuant is an entity that exists in virtue of the fact that there is at least one of what may be multiple copies which is the content or the pattern that multiple copies would share"@en ;
+ skos:example "The pdf file on your laptop; the pdf file that is a copy thereof on my laptop; the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule; the content that is shared by a string of dots and dashes written on a page and the transmitted Morse code signal; the content of a sentence; an engineering blueprint"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000034
+obo:BFO_0000034 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000016 ;
+ obo:IAO_0000112 "the function of a hammer to drive in nails"@en ,
+ "the function of a heart pacemaker to regulate the beating of a heart through electricity"@en ,
+ "the function of amylase in saliva to break down starch into sugar"@en ;
+ obo:IAO_0000116 "BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc."@en ;
+ obo:IAO_0000412 obo:BFO_0000034 ;
+ rdfs:label "function"@en ;
+ skos:definition "(Elucidation) A function is a disposition that exists in virtue of its bearer's physical make-up & this physical make-up is something the bearer possesses because it came into being either through evolution (in the case of natural biological entities) or through intentional design (in the case of artefacts) in order to realize processes of a certain sort"@en ;
+ skos:example "The function of a hammer to drive in nails; the function of a heart pacemaker to regulate the beating of a heart through electricity"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000035
+obo:BFO_0000035 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000003 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000117 ;
+ owl:allValuesFrom obo:BFO_0000035
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000121 ;
+ owl:allValuesFrom obo:BFO_0000035
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000132 ;
+ owl:allValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000015
+ obo:BFO_0000035
+ )
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000139 ;
+ owl:allValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000015
+ obo:BFO_0000035
+ )
+ ]
+ ] ;
+ rdfs:label "process boundary"@en ;
+ skos:definition "p is a process boundary =Def p is a temporal part of a process & p has no proper temporal parts"@en ;
+ skos:example "The boundary between the 2nd and 3rd year of your life"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000038
+obo:BFO_0000038 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000008 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000121 ;
+ owl:allValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000038
+ obo:BFO_0000148
+ )
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000139 ;
+ owl:allValuesFrom obo:BFO_0000038
+ ] ;
+ owl:disjointWith obo:BFO_0000148 ;
+ rdfs:label "one-dimensional temporal region"@en ;
+ skos:definition "(Elucidation) A one-dimensional temporal region is a temporal region that is a whole that has a temporal interval and zero or more temporal intervals and temporal instants as parts"@en ;
+ skos:example "The temporal region during which a process occurs"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000040
+obo:BFO_0000040 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000004 ;
+ owl:disjointWith obo:BFO_0000141 ;
+ obo:IAO_0000115 "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."@en ;
+ obo:IAO_0000116 "Elucidation: An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."@en ;
+ obo:IAO_0000412 obo:BFO_0000040 ;
+ rdfs:label "material entity"@en ;
+ skos:definition "(Elucidation) A material entity is an independent continuant has some portion of matter as continuant part"@en ;
+ skos:example "A human being; the undetached arm of a human being; an aggregate of human beings"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000140
+obo:BFO_0000140 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000141 ;
+ rdfs:label "continuant fiat boundary"@en ;
+ skos:definition "(Elucidation) A continuant fiat boundary b is an immaterial entity that is of zero, one or two dimensions & such that there is no time t when b has a spatial region as continuant part & whose location is determined in relation to some material entity"@en ;
+ skos:example "As for fiat point, fiat line, fiat surface"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000141
+obo:BFO_0000141 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000004 ;
+ rdfs:label "immaterial entity"@en ;
+ skos:definition "b is an immaterial entity =Def b is an independent continuant which is such that there is no time t when it has a material entity as continuant part"@en ;
+ skos:example "As for fiat point, fiat line, fiat surface, site"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000142
+obo:BFO_0000142 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000140 ;
+ rdfs:label "fiat line"@en ;
+ skos:definition "(Elucidation) A fiat line is a one-dimensional continuant fiat boundary that is continuous"@en ;
+ skos:example "The Equator; all geopolitical boundaries; all lines of latitude and longitude; the median sulcus of your tongue; the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000145
+obo:BFO_0000145 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ rdfs:label "relational quality"@en ;
+ skos:definition "b is a relational quality =Def b is a quality & there exists c and d such that c and d are not identical & b specifically depends on c & b specifically depends on d"@en ;
+ skos:example "A marriage bond; an instance of love; an obligation between one person and another"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000146
+obo:BFO_0000146 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000140 ;
+ rdfs:label "fiat surface"@en ;
+ skos:definition "(Elucidation) A fiat surface is a two-dimensional continuant fiat boundary that is self-connected"@en ;
+ skos:example "The surface of the Earth; the plane separating the smoking from the non-smoking zone in a restaurant"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000147
+obo:BFO_0000147 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000140 ;
+ rdfs:label "fiat point"@en ;
+ skos:definition "(Elucidation) A fiat point is a zero-dimensional continuant fiat boundary that consists of a single point"@en ;
+ skos:example "The geographic North Pole; the quadripoint where the boundaries of Colorado, Utah, New Mexico and Arizona meet; the point of origin of some spatial coordinate system"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000148
+obo:BFO_0000148 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000008 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000121 ;
+ owl:allValuesFrom obo:BFO_0000148
+ ] ;
+ rdfs:label "zero-dimensional temporal region"@en ;
+ skos:definition "(Elucidation) A zero-dimensional temporal region is a temporal region that is a whole consisting of one or more separated temporal instants as parts"@en ;
+ skos:example "A temporal region that is occupied by a process boundary; the moment at which a finger is detached in an industrial accident"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000182
+obo:BFO_0000182 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "history"@en ;
+ skos:definition "(Elucidation) A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by the material part of a material entity"@en ;
+ skos:example "The life of an organism from the beginning to the end of its existence"@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000202
+obo:BFO_0000202 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ;
+ rdfs:label "temporal interval"@en ;
+ skos:definition "(Elucidation) A temporal interval is a one-dimensional temporal region that is continuous, thus without gaps or breaks"@en ;
+ skos:example "The year 2018."@en .
+
+
+### http://purl.obolibrary.org/obo/BFO_0000203
+obo:BFO_0000203 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000148 ;
+ rdfs:label "temporal instant"@en ;
+ skos:definition "(Elucidation) A temporal instant is a zero-dimensional temporal region that has no proper temporal part"@en ;
+ skos:example "The millennium"@en .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_137980
+obo:CHEBI_137980 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33250 ;
+ obo:IAO_0000115 "An atom of an element that exhibits properties that are between those of metals and nonmetals, or that has a mixture of them. The term generally includes boron, silicon, germanium, arsenic, antimony, and tellurium, while carbon, aluminium, selenium, polonium, and astatine are less commonly included." ;
+ rdfs:label "metalloid atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_18248
+obo:CHEBI_18248 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "An iron group element atom that has atomic number 26." ;
+ rdfs:label "iron atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_18291
+obo:CHEBI_18291 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "manganese atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_194531
+obo:CHEBI_194531 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A carbon group element atom with a symbol Fl and atomic number 114." ;
+ rdfs:label "flerovium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_194533
+obo:CHEBI_194533 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A boron group element atom with a symbol Nh and atomic number 113." ;
+ rdfs:label "nihonium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_194535
+obo:CHEBI_194535 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A pnictogen atom with a symbol Mc and atomic number 115." ;
+ rdfs:label "moscovium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_194537
+obo:CHEBI_194537 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33250 ;
+ obo:IAO_0000115 "A chalcogen atom with a symbol Lv and atomic number 116." ;
+ rdfs:label "livermorium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_194539
+obo:CHEBI_194539 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ obo:IAO_0000115 "A halogen atom with a symbol Ts and atomic number 117." ;
+ rdfs:label "tennessine atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_194541
+obo:CHEBI_194541 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_23367 ,
+ obo:CHEBI_25585 ;
+ obo:IAO_0000115 "A p-block element atom with a symbol Og and atomic number 118." ;
+ rdfs:label "oganesson atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_22927
+obo:CHEBI_22927 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ rdfs:label "bromine atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_22977
+obo:CHEBI_22977 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "cadmium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_22984
+obo:CHEBI_22984 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "calcium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_23116
+obo:CHEBI_23116 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ rdfs:label "chlorine atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_23367
+obo:CHEBI_23367 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_24431 ;
+ obo:IAO_0000115 "Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity." ;
+ obo:IAO_0000116 "We are assuming that every molecular entity has to be completely connected by chemical bonds. This excludes protein complexes, which are comprised of minimally two separate molecular entities. We will follow up with Chebi to ensure this is their understanding as well"@en ;
+ rdfs:label "molecular entity" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_24061
+obo:CHEBI_24061 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ rdfs:label "fluorine atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_24431
+obo:CHEBI_24431 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ obo:IAO_0000115 "A chemical entity is a physical entity of interest in chemistry including molecular entities, parts thereof, and chemical substances." ;
+ rdfs:label "chemical entity" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_24433
+obo:CHEBI_24433 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_24431 ;
+ obo:IAO_0000115 "A defined linked collection of atoms or a single atom within a molecular entity." ;
+ rdfs:label "group" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_24859
+obo:CHEBI_24859 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ obo:IAO_0000115 "Chemical element with atomic number 53." ;
+ rdfs:label "iodine atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_25016
+obo:CHEBI_25016 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "lead atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_25107
+obo:CHEBI_25107 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "magnesium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_25195
+obo:CHEBI_25195 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "mercury atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_25555
+obo:CHEBI_25555 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ rdfs:label "nitrogen atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_25585
+obo:CHEBI_25585 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33250 ;
+ rdfs:label "nonmetal atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_25805
+obo:CHEBI_25805 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ rdfs:label "oxygen atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_26216
+obo:CHEBI_26216 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "potassium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_26708
+obo:CHEBI_26708 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "sodium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_26833
+obo:CHEBI_26833 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ rdfs:label "sulfur atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27007
+obo:CHEBI_27007 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "tin atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27214
+obo:CHEBI_27214 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "uranium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27363
+obo:CHEBI_27363 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "zinc atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27560
+obo:CHEBI_27560 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_137980 ,
+ obo:CHEBI_25585 ;
+ rdfs:label "boron atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27563
+obo:CHEBI_27563 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_137980 ;
+ rdfs:label "arsenic atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27568
+obo:CHEBI_27568 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ rdfs:label "selenium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27573
+obo:CHEBI_27573 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_137980 ,
+ obo:CHEBI_25585 ;
+ rdfs:label "silicon atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27594
+obo:CHEBI_27594 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ rdfs:label "carbon atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27638
+obo:CHEBI_27638 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A cobalt group element atom that has atomic number 27." ;
+ rdfs:label "cobalt atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27698
+obo:CHEBI_27698 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "vanadium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_27998
+obo:CHEBI_27998 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "tungsten" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_28073
+obo:CHEBI_28073 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A chromium group element atom that has atomic number 24." ;
+ rdfs:label "chromium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_28112
+obo:CHEBI_28112 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "Chemical element (nickel group element atom) with atomic number 28." ;
+ rdfs:label "nickel atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_28659
+obo:CHEBI_28659 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ rdfs:label "phosphorus atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_28685
+obo:CHEBI_28685 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "molybdenum atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_28694
+obo:CHEBI_28694 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "copper atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_28984
+obo:CHEBI_28984 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "aluminium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_29287
+obo:CHEBI_29287 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "gold atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_29362
+obo:CHEBI_29362 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_24433 ;
+ rdfs:label "ethylene group" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30145
+obo:CHEBI_30145 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "lithium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30217
+obo:CHEBI_30217 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_23367 ,
+ obo:CHEBI_25585 ;
+ rdfs:label "helium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30415
+obo:CHEBI_30415 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_25585 ;
+ rdfs:label "astatine atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30430
+obo:CHEBI_30430 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A metallic element first identified and named from the brilliant indigo (Latin indicum) blue line in its flame spectrum." ;
+ rdfs:label "indium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30440
+obo:CHEBI_30440 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A metallic element first identified and named from the brilliant green line in its flame spectrum (from Greek θαλλοσ, a green shoot)." ;
+ rdfs:label "thallium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30441
+obo:CHEBI_30441 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_137980 ,
+ obo:CHEBI_25585 ;
+ rdfs:label "germanium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30452
+obo:CHEBI_30452 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_137980 ;
+ rdfs:label "tellurium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30501
+obo:CHEBI_30501 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "Alkaline earth metal atom with atomic number 4." ;
+ rdfs:label "beryllium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30512
+obo:CHEBI_30512 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "silver atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30513
+obo:CHEBI_30513 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_137980 ;
+ rdfs:label "antimony atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30514
+obo:CHEBI_30514 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "caesium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30682
+obo:CHEBI_30682 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "ruthenium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_30687
+obo:CHEBI_30687 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "osmium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_32594
+obo:CHEBI_32594 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "barium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_32999
+obo:CHEBI_32999 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "europium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33250
+obo:CHEBI_33250 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_24431 ;
+ obo:IAO_0000115 "A chemical entity constituting the smallest component of an element having the chemical properties of the element." ;
+ rdfs:label "atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33301
+obo:CHEBI_33301 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "bismuth atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33310
+obo:CHEBI_33310 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_23367 ,
+ obo:CHEBI_25585 ;
+ rdfs:label "neon atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33313
+obo:CHEBI_33313 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A radioactive metallic element discovered in 1898 by Marie Sklodowska Curie and named after her home country, Poland (Latin Polonia)." ;
+ rdfs:label "polonium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33314
+obo:CHEBI_33314 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_23367 ,
+ obo:CHEBI_25585 ;
+ rdfs:label "radon atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33319
+obo:CHEBI_33319 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "lanthanoid atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33322
+obo:CHEBI_33322 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "rubidium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33323
+obo:CHEBI_33323 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "francium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33324
+obo:CHEBI_33324 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "strontium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33325
+obo:CHEBI_33325 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "radium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33330
+obo:CHEBI_33330 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "scandium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33331
+obo:CHEBI_33331 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "yttrium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33337
+obo:CHEBI_33337 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "actinium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33341
+obo:CHEBI_33341 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "titanium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33342
+obo:CHEBI_33342 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "zirconium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33343
+obo:CHEBI_33343 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "hafnium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33344
+obo:CHEBI_33344 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "niobium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33346
+obo:CHEBI_33346 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "rutherfordium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33348
+obo:CHEBI_33348 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "tantalum atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33349
+obo:CHEBI_33349 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "dubnium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33351
+obo:CHEBI_33351 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "seaborgium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33353
+obo:CHEBI_33353 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "technetium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33355
+obo:CHEBI_33355 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "bohrium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33357
+obo:CHEBI_33357 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "hassium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33359
+obo:CHEBI_33359 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A cobalt group element atom of atomic number 45." ;
+ rdfs:label "rhodium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33361
+obo:CHEBI_33361 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "meitnerium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33363
+obo:CHEBI_33363 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "Chemical element (nickel group element atom) with atomic number 46." ;
+ rdfs:label "palladium" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33364
+obo:CHEBI_33364 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "platinum" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33367
+obo:CHEBI_33367 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "darmstadtium" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33368
+obo:CHEBI_33368 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A copper group element atom with atomic number 111. The the ninth member of the 6d series of transition metals, it is an extremely radioactive, synthetic element. Average mass is around 281." ;
+ rdfs:label "roentgenium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33369
+obo:CHEBI_33369 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "cerium" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33372
+obo:CHEBI_33372 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "neodymium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33373
+obo:CHEBI_33373 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "promethium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33374
+obo:CHEBI_33374 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "samarium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33375
+obo:CHEBI_33375 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "gadolinium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33376
+obo:CHEBI_33376 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "terbium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33377
+obo:CHEBI_33377 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "dysprosium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33379
+obo:CHEBI_33379 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "erbium" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33380
+obo:CHEBI_33380 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "thulium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33381
+obo:CHEBI_33381 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "ytterbium" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33382
+obo:CHEBI_33382 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "lutetium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33385
+obo:CHEBI_33385 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "thorium" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33386
+obo:CHEBI_33386 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "protactinium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33387
+obo:CHEBI_33387 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "neptunium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33388
+obo:CHEBI_33388 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "plutonium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33389
+obo:CHEBI_33389 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "americium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33390
+obo:CHEBI_33390 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "curium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33391
+obo:CHEBI_33391 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "berkelium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33392
+obo:CHEBI_33392 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "californium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33393
+obo:CHEBI_33393 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "einsteinium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33394
+obo:CHEBI_33394 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "fermium" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33395
+obo:CHEBI_33395 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "mendelevium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33396
+obo:CHEBI_33396 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "nobelium" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33397
+obo:CHEBI_33397 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "lawrencium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33517
+obo:CHEBI_33517 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A zinc group element atom with a symbol Cn and atomic number 112. All its isotopes are intensely radioactive. Prior to its discovery, it had the placeholder name ununbium (in accordance with IUPAC recommendations). Following its discovery (in Darmstadt, 1996) and subsequent confirmation, the name copernicium was adopted in 2010." ;
+ rdfs:label "copernicium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_33521
+obo:CHEBI_33521 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33250 ;
+ obo:IAO_0000115 "An atom of an element that exhibits typical metallic properties, being typically shiny, with high electrical and thermal conductivity." ;
+ rdfs:label "metal atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_49475
+obo:CHEBI_49475 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_23367 ,
+ obo:CHEBI_25585 ;
+ rdfs:label "argon atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_49631
+obo:CHEBI_49631 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ obo:IAO_0000115 "A metallic element predicted as eka-aluminium by Mendeleev in 1870 and discovered by Paul-Emile Lecoq de Boisbaudran in 1875. Named in honour of France (Latin Gallia) and perhaps also from the Latin gallus cock, a translation of Lecoq." ;
+ rdfs:label "gallium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_49637
+obo:CHEBI_49637 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_23367 ,
+ obo:CHEBI_25585 ;
+ rdfs:label "hydrogen atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_49648
+obo:CHEBI_49648 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "holmium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_49666
+obo:CHEBI_49666 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "iridium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_49696
+obo:CHEBI_49696 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_23367 ,
+ obo:CHEBI_25585 ;
+ rdfs:label "krypton atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_49828
+obo:CHEBI_49828 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33319 ;
+ rdfs:label "praseodymium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_49882
+obo:CHEBI_49882 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_33521 ;
+ rdfs:label "rhenium atom" .
+
+
+### http://purl.obolibrary.org/obo/CHEBI_49957
+obo:CHEBI_49957 rdf:type owl:Class ;
+ rdfs:subClassOf obo:CHEBI_23367 ,
+ obo:CHEBI_25585 ;
+ rdfs:label "xenon atom" .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000003
+obo:IAO_0000003 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000009 ;
+ obo:IAO_0000112 "Examples of measurement unit labels are liters, inches, weight per volume."@en ;
+ obo:IAO_0000115 "A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure."@en ;
+ obo:IAO_0000116 """2009-03-16: provenance: a term measurement unit was
+proposed for OBI (OBI_0000176) , edited by Chris Stoeckert and
+Cristian Cocos, and subsequently moved to IAO where the objective for
+which the original term was defined was satisfied with the definition
+of this, different, term."""@en ,
+ "2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."@en ;
+ rdfs:label "measurement unit label"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000005
+obo:IAO_0000005 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000033 ;
+ obo:IAO_0000112 "In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction."@en ;
+ obo:IAO_0000115 "A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved."@en ;
+ obo:IAO_0000116 "2009-03-16: original definition when imported from OBI read: \"objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\""@en ,
+ "2014-03-31: In the example of usage (\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that."@en ,
+ "Answers the question, why did you do this experiment?"@en ;
+ obo:IAO_0000119 "OBI Plan and Planned Process/Roles Branch"@en ,
+ "OBI_0000217"@en ;
+ rdfs:label "objective specification"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000007
+obo:IAO_0000007 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000033 ;
+ obo:IAO_0000112 "Pour the contents of flask 1 into flask 2"@en ;
+ obo:IAO_0000115 "A directive information entity that describes an action the bearer will take."@en ;
+ obo:IAO_0000119 "OBI Plan and Planned Process branch"@en ;
+ rdfs:label "action specification"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000009
+obo:IAO_0000009 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ obo:IAO_0000115 "A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label"@en ;
+ obo:IAO_0000116 "http://www.golovchenko.org/cgi-bin/wnsearch?q=label#4n"@en ;
+ rdfs:label "datum label"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000027
+obo:IAO_0000027 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ obo:IAO_0000112 "Data items include counts of things, analyte concentrations, and statistical summaries."@en ;
+ obo:IAO_0000115 "An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements."@en ;
+ obo:IAO_0000116 "2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers."@en ,
+ "2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum."@en ,
+ "2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym."@en ,
+ """JAR: datum -- well, this will be very tricky to define, but maybe some
+information-like stuff that might be put into a computer and that is
+meant, by someone, to denote and/or to be interpreted by some
+process... I would include lists, tables, sentences... I think I might
+defer to Barry, or to Brian Cantwell Smith
+
+JAR: A data item is an approximately justified approximately true approximate belief"""@en ,
+ "2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/" ;
+ rdfs:label "data item"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000028
+obo:IAO_0000028 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ obo:IAO_0000112 "a serial number such as \"12324X\""@en ,
+ "a stop sign"@en ,
+ "a written proper name such as \"OBI\""@en ;
+ obo:IAO_0000115 "An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity."@en ;
+ obo:IAO_0000116 "20091104, MC: this needs work and will most probably change"@en ,
+ "2014-03-31: We would like to have a deeper analysis of 'mark' and 'sign' in the future (see https://github.com/information-artifact-ontology/IAO/issues/154)."@en ;
+ obo:IAO_0000119 "based on Oxford English Dictionary"@en ;
+ rdfs:label "symbol"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000030
+obo:IAO_0000030 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000031 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000136 ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ obo:IAO_0000112 "Examples of information content entites include journal articles, data, graphical layouts, and graphs."@en ;
+ obo:IAO_0000115 "A generically dependent continuant that is about some thing."@en ;
+ obo:IAO_0000116 "2014-03-10: The use of \"thing\" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ)."@en ,
+ """information_content_entity 'is_encoded_in' some digital_entity in obi before split (040907). information_content_entity 'is_encoded_in' some physical_document in obi before split (040907).
+
+Previous. An information content entity is a non-realizable information entity that 'is encoded in' some digital or physical entity."""@en ;
+ obo:IAO_0000119 "OBI_0000142"@en ;
+ rdfs:label "information content entity"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000032
+obo:IAO_0000032 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0001938 ;
+ owl:someValuesFrom obo:OBI_0001931
+ ] ;
+ obo:IAO_0000112 "10 feet. 3 ml."@en ;
+ obo:IAO_0000115 "A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label."@en ;
+ obo:IAO_0000116 """2009-03-16: we decided to keep datum singular in scalar measurement datum, as in
+this case we explicitly refer to the singular form"""@en ,
+ "Would write this as: has_part some 'measurement unit label' and has_part some numeral and has_part exactly 2, except for the fact that this won't let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them."@en ;
+ rdfs:label "scalar measurement datum"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000033
+obo:IAO_0000033 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000136 ;
+ owl:someValuesFrom obo:BFO_0000017
+ ] ;
+ obo:IAO_0000115 "An information content entity whose concretizations indicate to their bearer how to realize them in a process."@en ;
+ obo:IAO_0000116 "2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \"is the specification of a process that can be concretized and realized by an actor\" with alternative term \"instruction\".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term."@en ,
+ "2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it."@en ,
+ "8/6/2009 Alan Ruttenberg: Changed label from \"information entity about a realizable\" after discussions at ICBO"@en ,
+ "Werner pushed back on calling it realizable information entity as it isn't realizable. However this name isn't right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn't about the plan, it, once concretized, *is* the plan. -Alan"@en ;
+ rdfs:label "directive information entity"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000078
+obo:IAO_0000078 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Class ;
+ owl:oneOf ( obo:IAO_0000002
+ obo:IAO_0000120
+ obo:IAO_0000121
+ obo:IAO_0000122
+ obo:IAO_0000123
+ obo:IAO_0000124
+ obo:IAO_0000125
+ obo:IAO_0000423
+ obo:IAO_0000428
+ )
+ ] ;
+ rdfs:subClassOf obo:IAO_0000102 ;
+ obo:IAO_0000115 "The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."@en ;
+ obo:IAO_0000116 "Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)"@en ;
+ obo:IAO_0000119 "GROUP:OBI:"@en ,
+ "OBI_0000266"@en ;
+ rdfs:label "curation status specification"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000102
+obo:IAO_0000102 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000027 ;
+ obo:IAO_0000115 "Data about an ontology part is a data item about a part of an ontology, for example a term"@en ;
+ rdfs:label "data about an ontology part"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000104
+obo:IAO_0000104 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000033 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000051 ;
+ owl:someValuesFrom obo:IAO_0000005
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000051 ;
+ owl:someValuesFrom obo:IAO_0000007
+ ] ;
+ obo:IAO_0000112 "PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice."@en ;
+ obo:IAO_0000115 "A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified."@en ;
+ obo:IAO_0000116 "2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term."@en ,
+ "2014-03-31: A plan specification can have other parts, such as conditional specifications."@en ,
+ "2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231."@en ,
+ "Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved"@en ;
+ obo:IAO_0000119 "OBI Plan and Planned Process branch"@en ,
+ "OBI_0000344"@en ;
+ obo:IAO_0000412 ;
+ rdfs:label "plan specification"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000109
+obo:IAO_0000109 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000027 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0001938 ;
+ owl:someValuesFrom obo:OBI_0001933
+ ] ;
+ obo:IAO_0000112 "Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\"grams\"}, the recording of an observation of the behavior of the mouse {,process,\"agitated\"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}."@en ;
+ obo:IAO_0000115 "A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device."@en ;
+ obo:IAO_0000116 "2/2/2009 is_specified_output of some assay?"@en ;
+ obo:IAO_0000119 "OBI_0000305"@en ,
+ "group:OBI"@en ;
+ rdfs:label "measurement datum"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000225
+obo:IAO_0000225 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Class ;
+ owl:oneOf ( obo:IAO_0000103
+ obo:IAO_0000226
+ obo:IAO_0000227
+ obo:IAO_0000228
+ obo:IAO_0000229
+ obo:OMO_0001000
+ )
+ ] ;
+ rdfs:subClassOf obo:IAO_0000102 ;
+ obo:IAO_0000115 "The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."@en ;
+ obo:IAO_0000116 "The creation of this class has been inspired in part by Werner Ceusters' paper, Applying evolutionary terminology auditing to the Gene Ontology."@en ;
+ rdfs:label "obsolescence reason specification"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000310
+obo:IAO_0000310 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ obo:IAO_0000112 "A journal article, patent application, laboratory notebook, or a book"@en ;
+ obo:IAO_0000115 "A collection of information content entities intended to be understood together as a whole"@en ;
+ rdfs:label "document"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000311
+obo:IAO_0000311 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:IAO_0000310
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000312 ;
+ owl:allValuesFrom obo:IAO_0000444
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:IAO_0000310 ;
+ obo:IAO_0000112 "journal article, newspaper story, book, etc."@en ;
+ obo:IAO_0000115 "A document that is the output of a publishing process."@en ;
+ rdfs:label "publication"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000409
+obo:IAO_0000409 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Class ;
+ owl:oneOf ( obo:IAO_0000410
+ obo:IAO_0000420
+ obo:IAO_0000421
+ )
+ ] ;
+ rdfs:subClassOf obo:IAO_0000102 ;
+ obo:IAO_0000112 "The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \"natural kinds\" and the latter arbitrary collections of entities."@en ;
+ obo:IAO_0000115 "A denotator type indicates how a term should be interpreted from an ontological perspective."@en ;
+ obo:IAO_0000119 "Barry Smith, Werner Ceusters"@en ;
+ rdfs:label "denotator type"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000416
+obo:IAO_0000416 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000109 ,
+ [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000039 ;
+ owl:allValuesFrom obo:UO_0000003
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000413 ;
+ owl:allValuesFrom obo:BFO_0000015
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000115 "A scalar measurement datum that is the result of measuring a temporal interval"@en ;
+ obo:IAO_0000116 "2009/09/28 Alan Ruttenberg. Fucoidan-use-case"@en ;
+ rdfs:label "time measurement datum"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0000444
+obo:IAO_0000444 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000011 ;
+ obo:IAO_0000115 "A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free."@en ;
+ obo:IAO_0000119 "https://en.wikipedia.org/wiki/Publishing" ;
+ rdfs:label "publishing process"@en .
+
+
+### http://purl.obolibrary.org/obo/IAO_0020000
+obo:IAO_0020000 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:IAO_0000030
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom obo:BFO_0000001
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000312 ;
+ owl:someValuesFrom obo:IAO_0020010
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:IAO_0000030 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000312 ;
+ owl:someValuesFrom obo:IAO_0020010
+ ] ;
+ obo:IAO_0000115 "An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."@en ;
+ obo:IAO_0000412 ;
+ rdfs:label "identifier"@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### http://purl.obolibrary.org/obo/IAO_0020010
+obo:IAO_0020010 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:OBI_0000011
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000299 ;
+ owl:someValuesFrom obo:IAO_0020000
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:OBI_0000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000299 ;
+ owl:someValuesFrom obo:IAO_0020000
+ ] ;
+ obo:IAO_0000115 "A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity."@en ;
+ rdfs:label "identifier creating process"@en .
+
+
+### http://purl.obolibrary.org/obo/NCBITaxon_9606
+obo:NCBITaxon_9606 rdf:type owl:Class ;
+ owl:equivalentClass co:PMD_0000881 ;
+ rdfs:subClassOf obo:BFO_0000030 ;
+ rdfs:label "homo sapiens" .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000011
+obo:OBI_0000011 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom obo:IAO_0000104
+ ]
+ ] ;
+ rdfs:subClassOf obo:BFO_0000015 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom obo:IAO_0000104
+ ]
+ ] ;
+ obo:IAO_0000112 "Injecting mice with a vaccine in order to test its efficacy" ;
+ obo:IAO_0000115 "A process that realizes a plan which is the concretization of a plan specification."@en ;
+ obo:IAO_0000116 "'Plan' includes a future direction sense. That can be problematic if plans are changed during their execution. There are however implicit contingencies for protocols that an agent has in his mind that can be considered part of the plan, even if the agent didn't have them in mind before. Therefore, a planned process can diverge from what the agent would have said the plan was before executing it, by adjusting to problems encountered during execution (e.g. choosing another reagent with equivalent properties, if the originally planned one has run out.)" ,
+ """We are only considering successfully completed planned processes. A plan may be modified, and details added during execution. For a given planned process, the associated realized plan specification is the one encompassing all changes made during execution. This means that all processes in which an agent acts towards achieving some
+objectives is a planned process.""" ;
+ obo:IAO_0000119 "branch derived" ;
+ rdfs:label "planned process"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000067
+obo:OBI_0000067 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000052 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:allValuesFrom obo:OBI_0000070
+ ] ;
+ obo:IAO_0000112 "When a specimen of blood is assayed for glucose concentration, the blood has the evaluant role. When measuring the mass of a mouse, the evaluant is the mouse. When measuring the time of DNA replication, the evaluant is the DNA. When measuring the intensity of light on a surface, the evaluant is the light source."@en ;
+ obo:IAO_0000115 "a role that inheres in a material entity that is realized in an assay in which data is generated about the bearer of the evaluant role"@en ;
+ obo:IAO_0000116 "Role call - 17nov-08: JF and MC think an evaluant role is always specified input of a process. Even in the case where we have an assay taking blood as evaluant and outputting blood, the blood is not the specified output at the end of the assay (the concentration of glucose in the blood is)"@en ,
+ "examples of features that could be described in an evaluant: quality.... e.g. \"contains 10 pg/ml IL2\", or \"no glucose detected\")"@en ;
+ obo:IAO_0000119 "OBI" ;
+ rdfs:label "evaluant role"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000070
+obo:OBI_0000070 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom obo:OBI_0000067
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000293 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom obo:OBI_0000067
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000299 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:IAO_0000027
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000136 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom obo:OBI_0000067
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000417 ;
+ owl:someValuesFrom obo:IAO_0000005
+ ] ;
+ obo:IAO_0000112 "Assay the wavelength of light emitted by excited Neon atoms. Count of geese flying over a house." ;
+ obo:IAO_0000115 "A planned process that has the objective to produce information about a material entity (the evaluant) by examining it."@en ;
+ obo:IAO_0000116 "12/3/12: BP: the reference to the 'physical examination' is included to point out that a prediction is not an assay, as that does not require physical examiniation." ,
+ "Discussion on OBI call 2023-05-01 resulted in an agreement to revise the textual definition of 'assay'. https://github.com/obi-ontology/obi/issues/1683." ;
+ obo:IAO_0000119 "OBI branch derived"@en ;
+ rdfs:label "assay"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000112
+obo:OBI_0000112 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000052 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ] ;
+ obo:IAO_0000112 "liver section; a portion of a culture of cells; a nemotode or other animal once no longer a subject (generally killed); portion of blood from a patient." ;
+ obo:IAO_0000115 "A role borne by a material entity that is obtained during a specimen collection process and that can be realized by performing measurements or observations on the specimen."@en ;
+ obo:IAO_0000116 """blood taken from animal: animal continues in study, whereas blood has role specimen.
+something taken from study subject, leaves the study and becomes the specimen."""@en ,
+ """parasite example
+- when parasite in people we study people, people are subjects and parasites are specimen
+- when parasite extracted, they become subject in the following study
+specimen can later be subject."""@en ,
+ "22Jun09. The definition includes whole organisms, and can include a human. The link between specimen role and study subject role has been removed. A specimen taken as part of a case study is not considered to be a population representative, while a specimen taken as representing a population, e.g. person taken from a cohort, blood specimen taken from an animal) would be considered a population representative and would also bear material sample role." ,
+ "Note: definition is in specimen creation objective which is defined as an objective to obtain and store a material entity for potential use as an input during an investigation." ;
+ obo:IAO_0000119 "OBI" ;
+ rdfs:label "specimen role"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000245
+obo:OBI_0000245 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ obo:IAO_0000112 "PMID: 16353909.AAPS J. 2005 Sep 22;7(2):E274-80. Review. The joint food and agriculture organization of the United Nations/World Health Organization Expert Committee on Food Additives and its role in the evaluation of the safety of veterinary drug residues in foods."@en ;
+ obo:IAO_0000115 "An entity that can bear roles, has members, and has a set of organization rules. Members of organizations are either organizations themselves or individual people. Members can bear specific organization member roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the organization by the organization members."@en ;
+ obo:IAO_0000116 """BP: The definition summarizes long email discussions on the OBI developer, roles, biomaterial and denrie branches. It leaves open if an organization is a material entity or a dependent continuant, as no consensus was reached on that. The current placement as material is therefore temporary, in order to move forward with development. Here is the entire email summary, on which the definition is based:
+
+1) there are organization_member_roles (president, treasurer, branch
+editor), with individual persons as bearers
+
+2) there are organization_roles (employer, owner, vendor, patent holder)
+
+3) an organization has a charter / rules / bylaws, which specify what roles
+there are, how they should be realized, and how to modify the
+charter/rules/bylaws themselves.
+
+It is debatable what the organization itself is (some kind of dependent
+continuant or an aggregate of people). This also determines who/what the
+bearer of organization_roles' are. My personal favorite is still to define
+organization as a kind of 'legal entity', but thinking it through leads to
+all kinds of questions that are clearly outside the scope of OBI.
+
+Interestingly enough, it does not seem to matter much where we place
+organization itself, as long as we can subclass it (University, Corporation,
+Government Agency, Hospital), instantiate it (Affymetrix, NCBI, NIH, ISO,
+W3C, University of Oklahoma), and have it play roles.
+
+This leads to my proposal: We define organization through the statements 1 -
+3 above, but without an 'is a' statement for now. We can leave it in its
+current place in the is_a hierarchy (material entity) or move it up to
+'continuant'. We leave further clarifications to BFO, and close this issue
+for now."""@en ;
+ obo:IAO_0000119 "GROUP: OBI" ;
+ rdfs:label "organization"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000379
+obo:OBI_0000379 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ obo:IAO_0000115 "A mechanical function is a function that is realised via mechanical work (through an certain amount of energy transferred by some force)."@en ;
+ obo:IAO_0000119 "http://en.wikipedia.org/wiki/Mechanical_work"@en ;
+ rdfs:label "mechanical function"@en .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000571
+obo:OBI_0000571 rdf:type owl:Class ;
+ owl:equivalentClass :LOG_1000061 ;
+ rdfs:subClassOf :LOG_1000054 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000052 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( obo:NCBITaxon_9606
+ obo:OBI_0000245
+ )
+ ]
+ ] ;
+ obo:IAO_0000112 "With respect to The Accuri C6 Flow Cytometer System, the organization Accuri bears the role manufacturer role. With respect to a transformed line of tissue culture cells derived by a specific lab, the lab whose personnel isolated the cll line bears the role manufacturer role. With respect to a specific antibody produced by an individual scientist, the scientist who purifies, characterizes and distributes the anitbody bears the role manufacturer role." ;
+ obo:IAO_0000115 "Manufacturer role is a role which inheres in a person or organization and which is realized by a manufacturing process."@en ;
+ obo:IAO_0000119 "OBI" ;
+ rdfs:label "manufacturer role" .
+
+
+### http://purl.obolibrary.org/obo/OBI_0000835
+obo:OBI_0000835 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( obo:NCBITaxon_9606
+ obo:OBI_0000245
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom obo:OBI_0000571
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom obo:OBI_0000571
+ ] ;
+ obo:IAO_0000115 "A person or organization that has a manufacturer role."@en ;
+ rdfs:label "manufacturer" .
+
+
+### http://purl.obolibrary.org/obo/OBI_0001930
+obo:OBI_0001930 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0001933 ;
+ obo:IAO_0000115 "A value specification that is specifies one category out of a fixed number of nominal categories"@en ;
+ rdfs:label "categorical value specification" .
+
+
+### http://purl.obolibrary.org/obo/OBI_0001931
+obo:OBI_0001931 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0001933 ;
+ obo:IAO_0000115 "A value specification that consists of two parts: a numeral and a unit label"@en ;
+ rdfs:label "scalar value specification" .
+
+
+### http://purl.obolibrary.org/obo/OBI_0001933
+obo:OBI_0001933 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ obo:IAO_0000112 "The value of 'positive' in a classification scheme of \"positive or negative\"; the value of '20g' on the quantitative scale of mass." ;
+ obo:IAO_0000115 "An information content entity that specifies a value within a classification scheme or on a quantitative scale."@en ;
+ obo:IAO_0000116 "This term is currently a descendant of 'information content entity', which requires that it 'is about' something. A value specification of '20g' for a measurement data item of the mass of a particular mouse 'is about' the mass of that mouse. However there are cases where a value specification is not clearly about any particular. In the future we may change 'value specification' to remove the 'is about' requirement." ;
+ rdfs:label "value specification" .
+
+
+### http://purl.obolibrary.org/obo/OBI_0100051
+obo:OBI_0100051 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom obo:OBI_0000112
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom obo:OBI_0000112
+ ] ;
+ obo:IAO_0000112 "Biobanking of blood taken and stored in a freezer for potential future investigations stores specimen; collecting a stone from a site."@en ;
+ obo:IAO_0000115 "A material entity that is collected for potential use as an input upon which measurements or observations are performed."@en ;
+ obo:IAO_0000119 "GROUP: OBI Biomaterial Branch"@en ;
+ rdfs:label "specimen"@en .
+
+
+### http://purl.obolibrary.org/obo/UO_0000003
+obo:UO_0000003 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000003 ;
+ rdfs:label "time unit" .
+
+
+### https://w3id.org/pmd/co/PMD_0000000
+co:PMD_0000000 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000001 ;
+ rdfs:comment "Instances of Portions Of Matter whose shape is relevant for their dispostion to participate in a Manufacturing Process may be SemiFinishedProdcuts."@en ,
+ "The sum of portions of matter of the same type form a portion of matter of that type."@en ;
+ rdfs:label "Material"@de ,
+ "material"@en ;
+ skos:altLabel "Portion of Material"@en ;
+ skos:definition "A Material is a Portion Of Matter that may participate in some Manifacturing Process and whose shape is not relevant for its participation in the Manifacuring Process."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000001
+co:PMD_0000001 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ rdfs:comment """It is also representing a distinct physical or conceptual part of a material or substance.
+
+The open energy ontology OEO defines portion of matter as a subclass of object aggregate, which implies countability. Our portion is not (precisely) countable and thus bearer of intensive properties."""@en ,
+ """Lome explanation for portion of matter: \"What is a molecule cluster at the cellular level? Contrary to the molecular level, at the cellular level of granularity the boundary of each molecule is outside of the level of granular focus. What forms a discontinuous cluster of countable individual molecules and thus bona fide objects at the molecular level, is a continuous and non-countable molecular substance at coarser levels of
+granularity. At these coarser levels, the individual molecules cannot be differentiated and demarcated anymore and the cluster as a whole possesses only fiat inner boundaries.\""""@en ;
+ rdfs:label "portion of matter"@en ;
+ skos:definition "A material entity that is not demarcated by any physical discontinuities. At some finer level of granularity it is an object aggregate, at some coarser level of granularity it is a fiat object part,but at this level of granularity it is neither."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000002
+co:PMD_0000002 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000000 ;
+ rdfs:comment "We recognize that some of the materials in the subclasses also occur naturally. However, these are not within the scope of our consideration for technical use."@en ;
+ rdfs:label "engineered material"@en ;
+ skos:definition "An Engineered Material is a Material that is output of a Manufacturing Process."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000005
+co:PMD_0000005 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000017 ,
+ [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000052 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( co:PMD_0000915
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000199 ;
+ owl:someValuesFrom obo:BFO_0000008
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ owl:intersectionOf ( co:PMD_0000950
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000199 ;
+ owl:someValuesFrom obo:BFO_0000008
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001029 ;
+ owl:someValuesFrom co:PMD_0000915
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0000950
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000052 ;
+ owl:allValuesFrom co:PMD_0000000
+ ] ;
+ rdfs:comment """Technical materials are complex object aggregates. The properties that are determined for those object aggregates are intrinsically associated with the methodologies employed in the measurement process. This is in contrast to typical 'physical' properties, which like e.g. mass that can be determined to high accuracy independently of the measurement process.
+As a consequence, the behavoiral material properties in the ontology are differeciated according to their measurement method, e.g. Brinell hardness and Vickers hardness are different types of indentation hardness rather than different measures/quantification (GDC) of the materials property 'indentation hardness'.
+ The 'unit idenifieres' of such properties (e.g. \"HV1\", \"HV10\", \"HBW\") are strictly speaking not units but rather references to the measurement methodology used to determine a numeric value that quantifies the property."""@en ;
+ rdfs:label "behavioral material property"@en ;
+ skos:definition """A property is a material trait in terms of the kind and magnitude of response to a specific imposed stimulus. Generally, definitions of properties are made independent of material shape and size.
+
+(Callister, W.D., Rethwisch, D.G., Materials Science and Engineering, Wiley, 2014)
+
+We only deal with intensive (system-size independent) materrial properties. Extensive properties that depend on the testpiece/specimen/probe size should be found in the respective testing method modules."""@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000007
+co:PMD_0000007 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0001933 ;
+ obo:IAO_0000116 "also see \"The Ontology of Fields\" - Report of a Specialist Meeting Held under the Auspices of the Varenius Project: Donna Peuquet, Barry Smith, and Berit Brogaard; Bar Harbor, Maine 1998"@en ;
+ rdfs:label "vector field specification"@en ;
+ skos:definition "a value specifcation that represents an assignment of a vector to each point in a discretized spacial region"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000008
+co:PMD_0000008 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000003 ;
+ obo:IAO_0000116 "an attribute of a process" ;
+ rdfs:comment """Process attribute for a process has a similar application to specifically dependened continuant (SDC) for an independent continuant (IC). Furthermore, process attribute describes how SDCs of some participants, i.e., ICs, change in a process.
+
+Specific rates, e.g., tensile rate, cooling rate, etc. should be added as subclasses of this class."""@en ;
+ rdfs:label "process attribute"@en ;
+ rdfs:seeAlso "process attribute from OEO https://openenergyplatform.org/ontology/oeo/OEO_00030019"@en ;
+ owl:versionInfo "Renamed to avoid confusion with has characteristic object property"@en ;
+ skos:altLabel "process characteristic"@en ;
+ skos:definition "a process attribute is a dependent occurrent that existentially depends on a process."@en ;
+ skos:example "Tensile rate in a tensile testing process. Cooling rate in a quenching process"@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000014
+co:PMD_0000014 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000017 ;
+ rdfs:isDefinedBy "http://purl.obolibrary.org/obo/OBI_0000260" ;
+ rdfs:label "plan"@en ;
+ skos:definition "A plan is a realizable entity that is the inheres in a bearer who is committed to realizing it as a planned process." ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000051
+co:PMD_0000051 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( obo:BFO_0000023
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:someValuesFrom co:PMD_0000933
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000081 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom co:PMD_0000933
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ rdfs:label "simulation entity role"@en ;
+ skos:definition "Simulation entity role is a role that inheres in an independent continuant (IC) and is realized in a simulation process. This role enables the IC to participate in the simulation as a proxy, model, or representative of a real or hypothetical entity within the simulated context"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000053
+co:PMD_0000053 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000833 ,
+ [ owl:intersectionOf ( obo:BFO_0000015
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000293 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000299 ;
+ owl:someValuesFrom co:PMD_0020139
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:label "Schmelzprozess"@de ,
+ "melting process"@en ;
+ skos:definition "A melting process is a thermally induced process during which a solid material undergoes a phase transition into a liquid state. It involves the absorption of heat and occurs at or above the material's melting point."@en ,
+ "Ein Schmelzvorgang ist ein thermisch induzierter Prozess, bei dem ein festes Material einen Phasenübergang in einen flüssigen Zustand erfährt. Er beinhaltet die Absorption von Wärme und findet bei oder oberhalb des Schmelzpunkts des Materials statt."@de ;
+ skos:example "The process of melting aluminum ingots in preparation for extrusion."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000054
+co:PMD_0000054 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000969 ;
+ rdfs:label "Heizfunktion"@de ,
+ "heating function"@en ;
+ skos:definition "A heating function is a (realizable) function that, when realized, enables a system or device to increase the thermal energy of a material, typically to reach temperatures required for processing, transformation, or reaction."@en ,
+ "Eine Heizfunktion ist eine (realisierbare) Funktion, die ein System oder Gerät in die Lage versetzt, die Wärmeenergie eines Materials zu erhöhen, um die für die Verarbeitung, Umwandlung oder Reaktion erforderlichen Temperaturen zu erreichen."@de ;
+ skos:example "The function of a resistance heater in a vacuum furnace."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000055
+co:PMD_0000055 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000969 ;
+ rdfs:label "Kühlfunktion"@de ,
+ "cooling function"@en ;
+ skos:definition "A cooling function is a (realizable) function that, when realized, enables a system or device to lower the temperature of a material, often to control solidification or maintain a stable state below a desired thermal threshold."@en ,
+ "Eine Kühlfunktion ist eine (realisierbare) Funktion, die es einem System oder Gerät ermöglicht, die Temperatur eines Materials zu senken, häufig um die Erstarrung zu steuern oder einen stabilen Zustand unterhalb eines gewünschten thermischen Schwellenwerts aufrechtzuerhalten."@de ;
+ skos:example "The function of a water-cooled mold to solidify molten metal in casting."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000056
+co:PMD_0000056 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( co:PMD_0000655
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000085 ;
+ owl:someValuesFrom co:PMD_0000057
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:comment "An electric arc furnace used in steelmaking."@en ;
+ rdfs:label "Schmelzofen"@de ,
+ "melting furnace"@en ;
+ skos:definition "A melting furnace is a device that bears a melting function, typically designed to raise the temperature of a solid material to initiate and sustain its transformation into a melt."@en ,
+ "Ein Schmelzofen ist ein Gerät, das eine Schmelzfunktion hat und in der Regel dazu dient, die Temperatur eines festen Materials zu erhöhen, um seine Umwandlung in eine Schmelze einzuleiten und aufrechtzuerhalten."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000057
+co:PMD_0000057 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000054 ;
+ rdfs:label "Schmelzfunktion"@de ,
+ "melting function"@en ;
+ skos:definition "A melting function is a heating function that, when realized, enables a device or system to initiate or sustain the phase transition of a solid material into a liquid by raising its temperature above the melting point."@en ,
+ "Eine Schmelzfunktion ist eine Heizfunktion, die es einem Gerät oder System ermöglicht, den Phasenübergang eines festen Materials in eine Flüssigkeit einzuleiten oder aufrechtzuerhalten, indem seine Temperatur über den Schmelzpunkt angehoben wird."@de ;
+ skos:example "The function of an induction coil in a furnace to heat metal until it melts."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000066
+co:PMD_0000066 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( obo:BFO_0000035
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:someValuesFrom co:PMD_0000583
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom obo:IAO_0000030
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:label "input assignment"@en ;
+ skos:definition "input assignment is a process boundary which is part of a computing process and which connects a material entity or i.c.e as input to the computing process"@en ;
+ co:PMD_0001032 """https://github.com/materialdigital/core-ontology/issues/184
+
+https://github.com/pyiron/semantikon/pull/278""" .
+
+
+### https://w3id.org/pmd/co/PMD_0000067
+co:PMD_0000067 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( obo:BFO_0000035
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:someValuesFrom co:PMD_0000583
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom obo:IAO_0000030
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:label "output assignment"@en ;
+ skos:definition "output assignment is a process boundary which is part of a computing process and which connects a material entity or i.c.e as output to the computing process"@en ;
+ co:PMD_0001032 """https://github.com/materialdigital/core-ontology/issues/184
+
+https://github.com/pyiron/semantikon/pull/278""" .
+
+
+### https://w3id.org/pmd/co/PMD_0000068
+co:PMD_0000068 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000108 ;
+ owl:someValuesFrom obo:BFO_0000008
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0000070 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Class ;
+ owl:complementOf co:PMD_0000068
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000004 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000108 ;
+ owl:someValuesFrom obo:BFO_0000008
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0000070 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
+ [ rdf:type owl:Class ;
+ owl:complementOf co:PMD_0000068
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000116 "For any temporally qualified continuant x@t, there exists a continuant y such that x@t has_state y, meaning that y is the anchor continuant of which x@t is a temporal phase existing at temporal regions t. The relation has_state is functional and signifies that all such temporally qualified continuants are uniquely associated with their basic anchor continuant."@en ;
+ rdfs:label "temporally qualified continuant"@en ;
+ skos:definition "A temporally qualified continuant is a continuant that, by reference to a determinate temporal region, is such as to possess its properties only for so long as that period obtains, being otherwise in its essentiality unchanged."@en ;
+ co:PMD_0001032 "https://github.com/materialdigital/core-ontology/issues/185" .
+
+
+### https://w3id.org/pmd/co/PMD_0000501
+co:PMD_0000501 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ rdfs:label "1D"@en ;
+ skos:definition "1-D is an information content entity representing a one-dimensional structure or model representing a single linear dimension, often used in material science simulations or analysis."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000502
+co:PMD_0000502 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ rdfs:label "2D"@en ;
+ skos:definition "A two-dimensional information content entity is a representation or analysis, commonly applied in studying planar material properties or surface phenomena."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000503
+co:PMD_0000503 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020131 ;
+ rdfs:label "ASTM grainsize"@en ;
+ skos:definition "The ASTM grain size is a scalar specifically describing the size of grains in a crystalline material as defined by ASTM standards."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000504
+co:PMD_0000504 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000933 ;
+ rdfs:label "Ab Initio MD Simulation"@de ,
+ "ab initio molecular dynamics simulation"@en ;
+ skos:definition "A Simulation Process that uses quantum mechanical calculations to predict the behavior of molecular systems without empirical parameters."@en ,
+ "Ein Simulationsprozess, der quantenmechanische Berechnungen verwendet, um das Verhalten molekularer Systeme ohne empirische Parameter vorherzusagen."@de ;
+ skos:example "Simulating the electronic structure and dynamics of a new alloy to predict its mechanical properties."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000505
+co:PMD_0000505 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000506 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001029 ;
+ owl:someValuesFrom co:PMD_0000627
+ ] ;
+ rdfs:label "accoustic absorption coefficient"@en ;
+ skos:definition "The accoustic absorption coefficient is an accoustic property representing a measure of how much sound energy is absorbed by a material per unit area."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000506
+co:PMD_0000506 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000005 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0000517
+ ] ;
+ rdfs:label "accoustic property"@en ;
+ skos:definition "An accoustic property is a mechanical property representing characteristics of a material that determine its interaction with sound waves, such as absorption, reflection, and transmission."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000507
+co:PMD_0000507 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000070 ;
+ rdfs:label "Akustische Eigenschaften Analyseverfahren"@de ,
+ "acoustical property analyzing process"@en ;
+ skos:definition "An assay, that measures the acoustic properties of materials by analyzing how sound waves interact with the material. This process involves generating sound waves and observing their reflection, transmission, absorption, or scattering to determine properties such as acoustic impedance, absorption coefficient, and sound speed."@en ,
+ "Eine Analyse, die die akustischen Eigenschaften von Materialien misst, indem es analysiert, wie Schallwellen mit dem Material interagieren. Dieser Prozess umfasst die Erzeugung von Schallwellen und die Beobachtung ihrer Reflexion, Übertragung, Absorption oder Streuung, um Eigenschaften wie akustische Impedanz, Absorptionskoeffizient und Schallgeschwindigkeit zu bestimmen."@de ;
+ skos:example "For example, acoustic emission testing (AET) is used to monitor the release of energy from a material under stress, which can indicate the onset of failure or the presence of defects."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000508
+co:PMD_0000508 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Additive Fertigungsgerät"@de ,
+ "additive manufacturing device"@en ;
+ skos:definition "A device used for manufacturing objects layer by layer through additive processes such as 3D printing."@en ,
+ "Ein Gerät zur Herstellung von Objekten Schicht für Schicht durch additive Verfahren wie 3D-Druck."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000509
+co:PMD_0000509 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Adhäsionsprüfverfahren"@de ,
+ "adhesion testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that measures the strength of adhesion between two bonded surfaces, assessing the quality of adhesive joints."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das die Stärke der Haftung zwischen zwei verklebten Oberflächen misst und die Qualität der Klebeverbindungen bewertet."@de ;
+ skos:example "Adhesion testing of epoxy bonds in composite materials to ensure structural integrity in aircraft components."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000510
+co:PMD_0000510 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000603 ;
+ obo:IAO_0000112 "A screwdriver used to adjust a grub screw."@en ;
+ rdfs:label "Einstellungsgeräterolle"@de ,
+ "adjustment device role"@en ;
+ skos:definition "Role of a device that is used to adjust another device (SubjectOfAdjustmentRole). The role is realized in an adjustment process."@en ,
+ "Rolle eines Gerätes, das zum Einstellen eines anderen Gerätes (SubjectOfAdjustmentRole) verwendet wird. Die Rolle wird in einem Einstellungsprozess realisiert."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000511
+co:PMD_0000511 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ owl:disjointWith co:PMD_0000768 ;
+ rdfs:label "age"@en ;
+ owl:deprecated "true"^^xsd:boolean ;
+ skos:definition """The age is a quality denoting the temporal interval since a material entity came into existance.
+
+TODO: should move to \"process characteristic\""""@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000512
+co:PMD_0000512 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+ owl:onClass co:PMD_0020116
+ ] ;
+ rdfs:subClassOf co:PMD_0020131 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom co:PMD_0020116
+ ] ;
+ rdfs:label "aggregate state"@en ;
+ skos:definition "The aggregate state is a morphological quality representing the physical state of a material, such as solid, liquid, or gas."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000513
+co:PMD_0000513 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000833 ;
+ rdfs:label "Alterungsprozess"@de ,
+ "aging process"@en ;
+ skos:definition "Das Aging oder Auslagern ist ein Anlassvorgang, der den Martensit (Härtungsgefüge) wieder duktil und verformbar macht. Dabei wird ein Agingvorgang genutzt, nämlich die Bildung von Ausscheidungen in Form von FeXCY - Carbiden"@de ,
+ "The process of hardening an alloy by a method that causes a constituent to precipitate from solid solution."@en ;
+ skos:example "The Process of austenitizing and quenching a steel alloy to achieve a martensitic microstructure for hardness increase."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000517
+co:PMD_0000517 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000522 ;
+ rdfs:label "application of accoustic wave"@en ;
+ skos:definition "An application of (an) acoustic wave is an application of (a) mechanical load describing the use of sound waves in a material or system for testing or functional purposes."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000518
+co:PMD_0000518 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000522 ;
+ rdfs:label "application of elastic impact"@en ;
+ skos:definition "An application of (an) elastic impact represents an application of (a) mechanical load describing the process of applying a force or impact to a material to observe its elastic response."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000519
+co:PMD_0000519 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "application of electric field"@en ;
+ skos:definition "An application of (an) electric field is the process of subjecting a material to an electric field to observe its behavior or modify its properties."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000520
+co:PMD_0000520 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "application of heat flux"@en ;
+ skos:definition "An application of heat flux describes the process of transferring thermal energy to or from a material, often used in thermal property measurements."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000521
+co:PMD_0000521 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "application of magnetic field"@en ;
+ skos:definition "An application of (a) magnetic field is the process of subjecting a material to a magnetic field to study its magnetic properties or induce magnetization."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000522
+co:PMD_0000522 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "application of mechanical load"@en ;
+ skos:definition "An application of mechanical load is the process of applying force or stress to a material to observe its response or measure its properties."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000523
+co:PMD_0000523 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ obo:IAO_0000119 "Application Of Substance" ;
+ rdfs:label "application of substance"@en ;
+ skos:definition "The application of (a) substance is the process of applying a material or substance to a surface or within a system."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000524
+co:PMD_0000524 rdf:type owl:Class ;
+ owl:equivalentClass :LOG_1000132 ;
+ rdfs:subClassOf co:PMD_0000833 ,
+ :LOG_1000131 ;
+ rdfs:label "Assemblierungsprozess"@de ,
+ "assembling process"@en ;
+ skos:definition "A process to mount or demount a component."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000525
+co:PMD_0000525 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000855 ;
+ rdfs:label "Atomkraftmikroskop"@de ,
+ "atomic force microscope"@en ;
+ skos:definition "An Atomic Force Microscope (AFM) is a Measuring Device that maps the surface topography of materials at the nanoscale by scanning it with a mechanical probe."@en ,
+ "Ein Atomkraftmikroskop (AFM) ist ein Messgerät, das die Oberflächentopographie von Materialien im Nanobereich durch Abtasten mit einer mechanischen Sonde kartiert."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000526
+co:PMD_0000526 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "atomic structure"@en ;
+ skos:definition "The atomic structure is a material structure that describes the arrangement and composition of atoms in a material, influencing its physical and chemical properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000527
+co:PMD_0000527 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000862 ;
+ rdfs:label "Atomistische Monte Carlo Simulation"@de ,
+ "atomistic monte carlo simulation"@en ;
+ skos:definition "A Monte Carlo Simulation process that focuses on the atomic scale, where the properties and behaviors of materials are modeled by considering individual atoms and their interactions."@en ,
+ "Ein Monte Carlo Simulationsprozess, der sich auf die atomare Skala konzentriert, bei dem die Eigenschaften und das Verhalten von Materialien durch die Betrachtung einzelner Atome und ihrer Wechselwirkungen modelliert werden."@de ;
+ skos:example "Simulating the behavior of electrons in a new alloy to predict its electrical conductivity."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000528
+co:PMD_0000528 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000920 ;
+ rdfs:label "Bandsäge"@de ,
+ "bandsaw"@en ;
+ skos:definition "A band saw is a type of saw that uses a continuous, endless saw blade in the form of a band. This blade is usually a narrow, flexible steel blade with teeth along one edge. The band saw is mounted in a closed loop and is guided by two wheels, at least one of which is driven. The operation of the band saw enables precise and efficient cuts to be made in a variety of materials, including wood, metal and plastic."@en ,
+ "Eine Bandsäge ist eine Art von Säge, die ein kontinuierliches, endloses Sägeblatt in Form eines Bands verwendet. Dieses Sägeblatt ist in der Regel eine schmale, flexible Stahlklinge mit Zähnen entlang einer Kante. Die Bandsäge ist in eine geschlossene Schleife montiert und wird über zwei Räder geführt, von denen mindestens eines angetrieben wird. Die Funktionsweise der Bandsäge ermöglicht präzise und effiziente Schnitte in unterschiedlichen Materialien, einschließlich Holz, Metall und Kunststoff."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000529
+co:PMD_0000529 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Biegeversuchmaschine"@de ,
+ "bending testing machine"@en ;
+ skos:definition "A device used to test the bending strength and flexibility of materials by applying a load and measuring deformation."@en ,
+ "Ein Gerät zur Prüfung der Biegefestigkeit und Flexibilität von Materialien durch Anwendung einer Last und Messung der Verformung."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000530
+co:PMD_0000530 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Biegeprüfverfahren"@de ,
+ "bending testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that measures the resistance of a material to bending forces, determining its flexural strength and stiffness."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das den Widerstand eines Materials gegen Biegekräfte misst und seine Biegefestigkeit und Steifigkeit bestimmt."@de ;
+ skos:example "Testing the flexural strength of a plastic beam to ensure it can withstand the required load in an engineering application."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000531
+co:PMD_0000531 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000532 ;
+ rdfs:label "Analyseverfahren der Biokompatibilität"@de ,
+ "biocompatibility analyzing process"@en ;
+ skos:definition "A Biological Property Analyzing Process that evaluates the compatibility of a material with living tissues to ensure it does not provoke an adverse biological response."@en ,
+ "An example of a biocompatibility analyzing process is an in vitro cell culture test, where cells are cultured in the presence of the implant material to observe any cytotoxic effects, such as changes in cell morphology, proliferation rate, or cell viability."@en ,
+ "Ein Biologisches Eigenschaften Analyseverfahren, das die Verträglichkeit eines Materials mit lebenden Geweben bewertet, um sicherzustellen, dass es keine nachteilige biologische Reaktion hervorruft."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000532
+co:PMD_0000532 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000070 ;
+ rdfs:label "Biologische Eigenschaften Analyseverfahren"@de ,
+ "biological property analyzing process"@en ;
+ skos:definition "An assay that examines the interaction of materials with biological systems, including biocompatibility, biodegradability, toxicity, and the effects of materials on living organisms and cells."@en ,
+ "Eine Analyse, die die Wechselwirkung von Materialien mit biologischen Systemen untersucht, einschließlich Biokompatibilität, Abbaubarkeit, Toxizität und der Auswirkungen von Materialien auf lebende Organismen und Zellen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000534
+co:PMD_0000534 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ obo:IAO_0000119 "“Blank.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/blank. Accessed 25 Nov. 2022."@en ;
+ rdfs:label "Rohling-Rolle"@de ,
+ "blank role"@en ;
+ skos:definition "Role of an object, which is realized in a preparation process"@en ;
+ skos:example "Some portion of material, which to be made into something by a further operation."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000535
+co:PMD_0000535 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000882 ;
+ rdfs:label "boiling point"@en ;
+ skos:definition "The boiling point is a phase boundary described by the temperature at which a liquid changes to a gas under standard atmospheric pressure."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000536
+co:PMD_0000536 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000537 ;
+ rdfs:label "Brinell 2.5 62.5 ISO 6506"@en ;
+ skos:definition "A Brinell Hardness measured with 2.5mm diameter ball and a load of 62.5 kgf."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000537
+co:PMD_0000537 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000789 ;
+ rdfs:label "brinell hardness"@en ;
+ skos:definition "The Brinell hardness is a scalar representing a measure of material hardness obtained by indenting the material with a steel or tungsten carbide ball under a specific load."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000538
+co:PMD_0000538 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000024 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:allValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000027
+ obo:BFO_0000030
+ )
+ ]
+ ] ;
+ owl:disjointWith co:PMD_0000965 ;
+ rdfs:label "bulk"@en ;
+ skos:definition "The bulk is a fiat object part that describes the volume or mass of material considered as a whole, often in contrast to surface or interface phenomena."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000539
+co:PMD_0000539 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000618 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000052 ;
+ owl:allValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000027
+ obo:BFO_0000030
+ co:PMD_0000538
+ )
+ ]
+ ] ;
+ rdfs:label "bulk modulus"@en ;
+ skos:definition "The bulk modulus is an elastic modulus representing a measure of a material's resistance to uniform compression."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000540
+co:PMD_0000540 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000550 ;
+ rdfs:label "Brennen"@de ,
+ "burning"@en ;
+ skos:altLabel "Firing"@en ;
+ skos:definition "A changing the properties of material process that involves burning typically refers to the application of high heat, often resulting in combustion or thermal degradation, to alter the physical or chemical properties of a material, leading to changes like hardening, alteration in chemical composition, or reduction in mass,"@en ,
+ "Ein Stoffeigenschaftsänderungsprozess, der das Brennen beinhaltet, bezieht sich in der Regel auf die Anwendung großer Hitze, die oft zu einer Verbrennung oder thermischen Zersetzung führt, um die physikalischen oder chemischen Eigenschaften eines Materials zu verändern, was zu Veränderungen wie Härtung, Änderung der chemischen Zusammensetzung oder Verringerung der Masse führt,"@de ;
+ skos:example "Firing in Pottery"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000541
+co:PMD_0000541 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000648 ;
+ rdfs:label "CNC-Maschine"@de ,
+ "cnc machine"@en ;
+ skos:definition "A CNC Machine is a Forming Machine that uses computer numerical control to precisely control machining tools for cutting, drilling, milling, and other tasks."@en ,
+ "Eine CNC-Maschine ist eine Formmaschine, die zur präzisen Steuerung von Bearbeitungswerkzeugen für Schneid-, Bohr-, Fräs- und andere Aufgaben computergestützte numerische Steuerung verwendet."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000542
+co:PMD_0000542 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000541 ,
+ co:PMD_0001011 ;
+ rdfs:label "CNC-Schweißmaschine"@de ,
+ "cnc welding machine"@en ;
+ skos:definition "A CNC Welding Machine is a Device that performs welding operations controlled by a computer numerical control system."@en ,
+ "Eine CNC-Schweißmaschine ist ein Gerät, das Schweißoperationen durch ein computergesteuertes System ausführt."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000543
+co:PMD_0000543 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000603 ;
+ rdfs:label "Kalibrierungsgeräterolle"@de ,
+ "calibration device role"@en ;
+ skos:definition "Role of a device that is used for calibration of itself or another device, which has the \"Subject Of Calibration Role\". The role is realized in a calibration process."@en ,
+ "Rolle eines Geräts, das zum Kalibirieren sich selbst oder eines anderen Gerätes, das die \"Subject Of Calibration Role\" inne hat, verwendet wird. Die Rolle wird in einem Kalibrierungsprozess realisiert."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000544
+co:PMD_0000544 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ obo:IAO_0000119 "https://www.merriam-webster.com/dictionary/caliper"@en ;
+ rdfs:label "Messschieber"@de ,
+ "caliper"@en ;
+ skos:definition "A measuring device having two usually adjustable arms, legs, or jaws used especially to measure the dimensions of objects, such as diameters or thicknesses"@en ,
+ "Messgerät mit zwei in der Regel verstellbaren Armen, Schenkeln oder Klemmbacken, das vor allem zur Messung der Abmessungen von Gegenständen, wie z. B. des Durchmessers oder der Dicke, verwendet wird"@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000546
+co:PMD_0000546 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000002 ;
+ obo:IAO_0000116 "Classified by morphology."@en ;
+ rdfs:label "ceramic"@en ;
+ skos:definition "Ceramics are engineered materials described as non-metallic, inorganic materials characterized by high hardness, brittleness, and heat resistance, commonly used in engineering applications."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000547
+co:PMD_0000547 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000548 ;
+ rdfs:label "change of aggregate state"@en ;
+ skos:definition "A change of aggregate state is a phase transition (change of phase) involving the collective state of particles in a material, such as melting or condensation."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000548
+co:PMD_0000548 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "change of phase"@en ;
+ skos:definition "A change of phase is a process describing the transition of a material from one state of matter to another, such as from solid to liquid or liquid to gas."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000549
+co:PMD_0000549 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "change of temperature"@en ;
+ skos:definition "A change of temperature is a process describing the variation in thermal energy within a material or system over time or due to external influences."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000550
+co:PMD_0000550 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000833 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 5, 3.1.6 Stoffeigenschaften ändern - Definition"@en ,
+ "Offizielle Definition findet man in: DIN 8580:2003-9 Fertigungsverfahren, Seite 5, 3.1.6 Stoffeigenschaften ändern - Definition"@de ;
+ rdfs:label "Stoffeigenschaft Ändern"@de ,
+ "changing properties of material"@en ;
+ skos:altLabel "Changing Of Material Properties"@en ,
+ "Property Alteration"@en ;
+ skos:definition "A manufacturing process that modifies the characteristics of the material from which a workpiece is made, including by processes at the submicroscopic or atomic scale, such as atomic diffusion, dislocation formation and movement in the atomic lattice or chemical reactions, whereby the resulting shape changes are not characteristic of these processes."@en ,
+ "Ein Herstellungsprozess, der die Merkmale des Materials, aus dem ein Werkstück gefertigt ist, modifiziert, was unter anderem durch Vorgänge im submikroskopischen oder atomaren Bereich erfolgt, wie etwa durch Atomdiffusion, die Versetzungsentstehung und -bewegung im Atomgitter oder durch chemische Reaktionen, wobei die dabei auftretenden Formveränderungen nicht charakteristisch für diese Verfahren sind."@de ;
+ skos:example "Heat Treatment"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000551
+co:PMD_0000551 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020131 ;
+ rdfs:label "chemical composition"@en ;
+ skos:definition "The chemical composition is a morphological quality describing the types and proportions of elements or compounds present in a material."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000552
+co:PMD_0000552 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000957 ;
+ rdfs:label "Analyseverfahren für die chemische Zusammensetzung"@de ,
+ "chemical composition analyzing process"@en ;
+ skos:definition "A Structural Property Analyzing Process that determines the chemical composition of a material by identifying and quantifying its constituent elements and compounds."@en ,
+ "Ein Struktur Eigenschaften Analyseverfahren, das die chemische Zusammensetzung eines Materials bestimmt, indem es dessen Bestandteile und Verbindungen identifiziert und quantifiziert."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000553
+co:PMD_0000553 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020148 ;
+ rdfs:label "chemical potential"@en ;
+ skos:definition "The chemical potential is a thermodynamic quality describing the energy change associated with the addition of a small quantity of a substance to a system at constant temperature and pressure."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000554
+co:PMD_0000554 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000070 ;
+ rdfs:label "Chemische Eigenschaften Analyseverfahren"@de ,
+ "chemical property analyzing process"@en ;
+ skos:definition "An assay that determines the chemical composition, reactivity, and chemical stability of materials, including the identification and quantification of chemical elements and compounds."@en ,
+ "Eine Analyse, die die chemische Zusammensetzung, Reaktivität und chemische Stabilität von Materialien bestimmt, einschließlich der Identifizierung und Quantifizierung chemischer Elemente und Verbindungen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000555
+co:PMD_0000555 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Chromatographiefunktion"@de ,
+ "chromatography function"@en ;
+ skos:definition "A function performed to separate compounds in a mixture based on their distribution between a stationary phase and a mobile phase."@en ,
+ "Eine Funktion, die durchgeführt wird, um Verbindungen in einer Mischung basierend auf ihrer Verteilung zwischen einer stationären Phase und einer mobilen Phase zu trennen."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000556
+co:PMD_0000556 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000957 ;
+ rdfs:label "Chromatographieverfahren"@de ,
+ "chromatography process"@en ;
+ skos:definition "A Structural Property Analyzing Process that enables the separation and analysis of compounds in a mixture by their distribution between a mobile and a stationary phase."@en ,
+ "Ein Struktur Eigenschaften Analyseverfahren, das die Trennung und Analyse von Verbindungen in einem Gemisch durch ihre Verteilung zwischen einer mobilen und einer stationären Phase ermöglicht."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000557
+co:PMD_0000557 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Chromatographiesystem"@de ,
+ "chromatography system"@en ;
+ skos:definition "A device used for separating mixtures into individual components using a chromatographic column and a mobile phase."@en ,
+ "Ein Gerät zur Trennung von Gemischen in einzelne Komponenten unter Verwendung einer chromatographischen Säule und einer mobilen Phase."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000558
+co:PMD_0000558 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000920 ;
+ rdfs:label "Kreissäge"@de ,
+ "circular saw"@en ;
+ skos:definition "Die Kreissäge ist eine elektrische oder motorisierte Säge, die durch ein rundes, kreisförmiges Sägeblatt angetrieben wird. Das Sägeblatt einer Kreissäge ist mit Zähnen entlang seines Randes ausgestattet, die dazu dienen, das Material zu schneiden, wenn es in die Säge eingespeist wird. Kreissägen sind vielseitige Werkzeuge und können für verschiedene Materialien wie Holz, Metall, Kunststoff und sogar Gestein verwendet werden, abhängig vom spezifischen Sägeblatt, das installiert ist."@de ,
+ "The circular saw is an electric or motorized saw that is powered by a round, circular saw blade. The blade of a circular saw is equipped with teeth along its edge that are used to cut the material as it is fed into the saw. Circular saws are versatile tools and can be used for different materials such as wood, metal, plastic and even rock, depending on the specific saw blade that is installed."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000559
+co:PMD_0000559 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000558 ;
+ rdfs:label "Tischkreissäge"@de ,
+ "circular table saw"@en ;
+ skos:definition "A stationary circular saw that is built into a table top. It is often used in workshops for precise wood cuts."@en ,
+ "Eine stationäre Kreissäge, die in eine Tischplatte eingebaut ist. Sie wird oft in Werkstätten für präzise Holzschnitte verwendet."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000560
+co:PMD_0000560 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000927 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8592"@en ,
+ "Offizielle Definition findet man in: DIN 8592"@de ;
+ rdfs:label "Reinigen"@de ,
+ "cleaning"@en ;
+ skos:definition "A Seperating process that involves removing unwanted material from a surface through cleaning methods, which may include processes like blasting, washing, or chemical cleaning."@en ,
+ "Ein Trennprozess, bei dem unerwünschtes Material von einer Oberfläche durch Reinigungsmethoden entfernt wird, die Verfahren wie Strahlen, Waschen oder chemische Reinigung umfassen können."@de ;
+ skos:example "Chemical Cleaning, Mechanical Cleaning"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000561
+co:PMD_0000561 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Reinigungsgerät"@de ,
+ "cleaning device"@en ;
+ skos:definition "A device used for removing contaminants from materials or surfaces."@en ,
+ "Ein Gerät zum Entfernen von Verunreinigungen von Materialien oder Oberflächen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000562
+co:PMD_0000562 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000866 ;
+ rdfs:label "Coarse Grained Simulation"@de ,
+ "coarse grained simulation"@en ;
+ skos:definition "Ein Multiskalensimulation Prozess, der das System vereinfacht, indem Atome oder Moleküle zu größeren Partikeln zusammengefasst werden, wodurch die Rechenkomplexität verringert wird und die Untersuchung größerer Systeme oder längerer Zeitskalen ermöglicht wird."@de ,
+ "multiscale simulation process that simplifies the system by grouping atoms or molecules into larger particles, thereby reducing computational complexity and allowing for the study of larger systems or longer time scales"@en ;
+ skos:example "In materials science, coarse-grained simulations are often used to study the mechanical properties of polymers. For instance, in the simulation of polymer chains, each segment of the chain might represent a group of several monomers, rather than modeling every single atom. This approach allows researchers to investigate the behavior of polymeric materials over larger scales and longer time periods, such as the viscoelastic properties of a polymer melt."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000563
+co:PMD_0000563 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000833 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 5, 3.1.5 Beschichten - Definition"@en ,
+ "Offizielle Definition findet man in: DIN 8580:2003-9 Fertigungsverfahren, Seite 5, 3.1.5 Beschichten - Definition"@de ;
+ rdfs:label "Beschichten"@de ,
+ "coating"@en ;
+ skos:definition "A manufacturing process that aims to deposit a permanently adhering layer of a material without a form onto a workpiece, whereby the immediate state of the coating material directly before application is essential."@en ,
+ "Ein Herstellungsprozess, der darauf abzielt, eine dauerhaft haftende Schicht aus einem Material ohne Form auf ein Werkstück aufzubringen, wobei der unmittelbare Zustand des Beschichtungsmaterials direkt vor dem Auftragen entscheidend ist."@de ;
+ skos:example "Chemical Vapour Deposition, Physical Vapour Deposition"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000564
+co:PMD_0000564 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000575 ;
+ rdfs:label "Beschichtungsanwendungsfunktion"@de ,
+ "coating application function"@en ;
+ skos:definition "A subfunction of coating performed to apply a coating to a surface."@en ,
+ "Eine Unterfunktion der Beschichtung, die durchgeführt wird, um eine Beschichtung auf eine Oberfläche aufzutragen."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000565
+co:PMD_0000565 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000563 ;
+ rdfs:label "Beschichten Durch Löten"@de ,
+ "coating by soldering"@en ;
+ skos:definition "A Coating process that involves applying a coating using soldering techniques."@en ,
+ "Ein Beschichtungsprozess, der das Auftragen einer Beschichtung mittels Löten beinhaltet."@de ;
+ skos:example "Applying a protective solder layer on electronic circuit boards."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000566
+co:PMD_0000566 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000563 ;
+ rdfs:label "Beschichten Durch Schweissen"@de ,
+ "coating by welding"@en ;
+ skos:definition "A Coating process that involves applying a coating using welding techniques."@en ,
+ "Ein Beschichtungsprozess, der das Auftragen einer Beschichtung mittels Schweißen beinhaltet."@de ;
+ skos:example "Cladding a metal surface with a corrosion-resistant alloy using weld overlay."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000567
+co:PMD_0000567 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Beschichtungsgerät"@de ,
+ "coating device"@en ;
+ skos:definition "A device used for applying a coating or layer to materials to enhance their properties or appearance."@en ,
+ "Ein Gerät zum Auftragen einer Beschichtung oder Schicht auf Materialien zur Verbesserung ihrer Eigenschaften oder ihres Aussehens."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000569
+co:PMD_0000569 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000563 ;
+ rdfs:label "Beschichten Aus Dem Gasförmigen Oder Dampfförmigen Zustand"@de ,
+ "coating from the gaseous or vapour state"@en ;
+ skos:altLabel "Vakuumbeschichten"@de ;
+ skos:definition "A Coating process that involves applying a coating from a gaseous or vapor state."@en ,
+ "Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem gasförmigen oder dampfförmigen Zustand beinhaltet."@de ;
+ skos:example "Applying a thin film of material using chemical vapor deposition (CVD)."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000570
+co:PMD_0000570 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000563 ;
+ rdfs:label "Beschichten Aus Dem Körnigen Oder Pulverförmigen Zustand"@de ,
+ "coating from the granular or powdery state"@en ;
+ skos:definition "A Coating process that involves applying a coating from a granular or powdery state."@en ,
+ "Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem körnigen oder pulverförmigen Zustand beinhaltet."@de ;
+ skos:example "Powder coating of metal parts."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000571
+co:PMD_0000571 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000563 ;
+ rdfs:label "Beschichten Aus Dem Ionisierten Zustand"@de ,
+ "coating from the ionized state"@en ;
+ skos:definition "A Coating process that involves applying a coating from an ionized state."@en ,
+ "Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem ionisierten Zustand beinhaltet."@de ;
+ skos:example "Plasma spraying of ceramic coatings."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000572
+co:PMD_0000572 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000563 ;
+ rdfs:label "Beschichten Aus Dem Flüssigen Zustand"@de ,
+ "coating from the liquid state"@en ;
+ skos:definition "A Coating process that involves applying a coating from a liquid state."@en ,
+ "Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem flüssigen Zustand beinhaltet."@de ;
+ skos:example "Electroplating of metals."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000573
+co:PMD_0000573 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000563 ;
+ rdfs:label "Beschichten Aus Dem Plastischen Zustand"@de ,
+ "coating from the plastic state"@en ;
+ skos:definition "A Coating process that involves applying a coating from a plastic state."@en ,
+ "Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem plastischen Zustand beinhaltet."@de ;
+ skos:example "Applying a plastic film through hot melt coating."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000574
+co:PMD_0000574 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000563 ;
+ rdfs:label "Beschichten Aus Dem Breiigen Oder Pastösen Zustand"@de ,
+ "coating from the pulpy or pasty state"@en ;
+ skos:definition "A Coating process that involves applying a coating from a pulpy or pasty state."@en ,
+ "Ein Beschichtungsprozess, der das Auftragen einer Beschichtung aus einem breiigen oder pastösen Zustand beinhaltet."@de ;
+ skos:example "Painting, a protective layer of plaster on walls."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000575
+co:PMD_0000575 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Beschichtungsfunktion"@de ,
+ "coating function"@en ;
+ skos:definition "A function performed to apply a layer or coating to a surface to enhance its properties or appearance."@en ,
+ "Eine Funktion, die ausgeführt wird, um eine Schicht oder Beschichtung auf eine Oberfläche aufzutragen, um deren Eigenschaften oder Aussehen zu verbessern."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000576
+co:PMD_0000576 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Farbmessgerät"@de ,
+ "colorimeter"@en ;
+ skos:definition "A device used to measure the color of a sample, often used in quality control and material analysis."@en ,
+ "Ein Gerät zur Messung der Farbe einer Probe, häufig verwendet in der Qualitätskontrolle und Materialanalyse."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000577
+co:PMD_0000577 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( co:PMD_0000002
+ [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:someValuesFrom [ owl:intersectionOf ( co:PMD_0000002
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom co:PMD_0000845
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:someValuesFrom [ owl:intersectionOf ( co:PMD_0000002
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom co:PMD_0020001
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:label "composite material"@en ;
+ skos:definition "A Composite Material is an Engineered Material that 'consists of' some Material that has a Matrix role and of some Material that has a Filler role."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000578
+co:PMD_0000578 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000806 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8593-1"@en ,
+ "Offizielle Definition findet man in: DIN 8593-1"@de ;
+ rdfs:label "Zusammensetzen"@de ,
+ "compounding"@en ;
+ skos:altLabel "Putting Together"@en ;
+ skos:definition "A joining process that involves assembling various components or sub-assemblies to form a complex unit, commonly used in manufacturing processes where multiple parts are put together to create a final product."@en ,
+ "Ein Füge Prozess, bei dem verschiedene Komponenten oder Unterbaugruppen zu einer komplexen Einheit zusammengefügt werden. Es wird üblicherweise in Fertigungsprozessen verwendet, bei denen mehrere Teile zu einem Endprodukt zusammengefügt werden."@de ;
+ skos:example "Interlocking, Layering"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000579
+co:PMD_0000579 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Compoundiermaschine"@de ,
+ "compounding machine"@en ;
+ skos:definition "A device used for mixing or compounding materials to achieve desired properties."@en ,
+ "Ein Gerät zur Mischung oder Compoundierung von Materialien, um gewünschte Eigenschaften zu erreichen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000580
+co:PMD_0000580 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Druckprüfmaschine"@de ,
+ "compression testing machine"@en ;
+ skos:definition "A device used to test the compressive strength of materials by applying a compressive force."@en ,
+ "Ein Gerät zur Prüfung der Druckfestigkeit von Materialien durch Anwendung einer Druckkraft."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000581
+co:PMD_0000581 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Druckprüfverfahren"@de ,
+ "compression testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Processs that determines a material's behavior under compressive forces, measuring its compressive strength and modulus."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das das Verhalten eines Materials unter Druckkräften bestimmt und seine Druckfestigkeit und seinen Druckmodul misst."@de ;
+ skos:example "Compression testing of concrete samples to ensure they meet the required strength standards for construction."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000582
+co:PMD_0000582 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Computer"@de ,
+ "computing device"@en ;
+ skos:definition """A computing system that provides an execution environment for, e.g., simulation processes or prediction models.
+A computing system can be virtual (e.g., a container or virtual machine) or physical (e.g., a bare-metal servers), uses digital representations of objects as inputs and produces digital measurements, such as simulation results or predictions, as outputs."""@en ,
+ """Ein Rechnersystem, das eine Ausführungsumgebung bspw. für Simulationsprozesse oder Vorhersagemodelle bereitstellt.
+Ein Rechenknoten kann virtuell (bspw. ein Container oder eine virtuelle Maschine) oder physisch (z. B. ein Bare-Metal-Server) ausgestaltet sein und verwendet in der Regel digitale Repräsentationen von Objekten als Eingaben und erzeugt digitale Messungen, wie z.B. Simulationsergebnisse oder Vorhersagen, als Ausgaben."""@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000583
+co:PMD_0000583 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( obo:BFO_0000015
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom co:PMD_0000014
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000116 "The subclass trees of \"Computing Process\" are currently still proposals and serve as a working basis for the discussion round with the simulation/workflow domain experts."@en ;
+ rdfs:label "Datenverarbeitung"@de ,
+ "Rechenprozess"@de ,
+ "computing process"@en ;
+ skos:definition "A process that involves the systematic use of computational methods and tools to perform simulations, analyses, or data transformations to achieve specific scientific or engineering goals."@en ,
+ "Ein Prozess, der die systematische Verwendung von rechnerischen Methoden und Werkzeugen umfasst, um Simulationen, Analysen oder Datenumwandlungen durchzuführen, um spezifische wissenschaftliche oder technische Ziele zu erreichen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000584
+co:PMD_0000584 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000833 ;
+ rdfs:label "Konditionierungsprozess"@de ,
+ "conditioning process"@en ;
+ skos:definition "Diese Aktivität beschreibt den Prozess und die Maßnahmen, die ergriffen werden, um einen materiellen Gegenstand auf vordefinierte Umgebungsbedingungen einzustellen."@de ,
+ "This activity describes the process of and the measures taken to set a tangible object to pre-defined environmental conditions."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000585
+co:PMD_0000585 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000931 ;
+ rdfs:label "continuous simulation"@en ;
+ skos:definition "a simulation approach where changes in a system are modeled continuously over time."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000586
+co:PMD_0000586 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000802 ;
+ rdfs:label "corpuscular irradiation"@en ;
+ skos:definition "The corpuscular irradiation is an irradiation describing the exposure of a material to streams of particles, such as electrons or ions."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000587
+co:PMD_0000587 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000635 ;
+ rdfs:label "crack growth"@en ;
+ skos:definition "The crack growth is an evolution of damage describing the progressive extension of a crack in a material under stress."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000588
+co:PMD_0000588 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Kriechprüfmaschine"@de ,
+ "creep testing machine"@en ;
+ skos:definition "A device used to test the creep behavior of materials under constant stress at high temperatures."@en ,
+ "Ein Gerät zur Prüfung des Kriechverhaltens von Materialien unter konstanter Belastung bei hohen Temperaturen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000589
+co:PMD_0000589 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Kriechprüfverfahren"@de ,
+ "creep testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that evaluates a material's deformation over time under constant stress and temperature, determining its creep behavior."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das die Verformung eines Materials über die Zeit unter konstanter Belastung und Temperatur bewertet und sein Kriechverhalten bestimmt."@de ;
+ skos:example "Creep testing of turbine blades to ensure they can withstand prolonged high temperatures without deforming."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000590
+co:PMD_0000590 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000968 ;
+ rdfs:label "Kryogefrierschrank"@de ,
+ "cryogenic freezer"@en ;
+ skos:definition "A Cryogenic Freezer is a Temperature Change Device that preserves materials at extremely low temperatures, often below -150°C."@en ,
+ "A device used to preserve materials at extremely low temperatures, typically below -150°C."@en ,
+ "Ein Gerät, das verwendet wird, um Materialien bei extrem niedrigen Temperaturen zu konservieren, typischerweise unter -150°C."@de ,
+ "Ein Kryogefrierschrank ist ein Temperaturwechselgerät, das Materialien bei extrem niedrigen Temperaturen konserviert, oft unter -150°C."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000591
+co:PMD_0000591 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+ owl:onClass co:PMD_0020099
+ ] ;
+ rdfs:subClassOf co:PMD_0020131 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000059 ;
+ owl:someValuesFrom co:PMD_0020099
+ ] ;
+ rdfs:label "crystal structure"@en ;
+ skos:definition "The crystal structure is a morphologic quality that describes the periodic geometric arrangement of entities in a crystalline material. The finite set of periodic geometric arrangements is described by the 14 possible Bravais Lattices in three-dimensional space."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000592
+co:PMD_0000592 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Trennen Funktion"@de ,
+ "cut function"@en ;
+ skos:altLabel "Schneidfunktion"@de ;
+ skos:definition "A function performed to separate or divide materials using cutting devices."@en ,
+ "Eine Funktion, die ausgeführt wird, um Materialien mit Schneidgeräten zu trennen oder zu teilen."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000594
+co:PMD_0000594 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000933 ;
+ rdfs:label "Deep Learning"@de ,
+ "deep learning"@en ;
+ skos:definition "A Simulation Process that employs artificial neural networks with many layers to model complex patterns in data."@en ,
+ "Ein Simulationsprozess, der künstliche neuronale Netze mit vielen Schichten verwendet, um komplexe Muster in Daten zu modellieren."@de ;
+ skos:example "Using deep learning to predict the formation of defects in crystalline materials."@en ;
+ co:PMD_0050117 "DL" .
+
+
+### https://w3id.org/pmd/co/PMD_0000595
+co:PMD_0000595 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020131 ;
+ rdfs:label "defect density"@en ;
+ skos:definition "The defect density is a morphological quality describing the number of defects per unit volume or area in a material, which can affect its mechanical and electronic properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000596
+co:PMD_0000596 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "deformation"@en ;
+ skos:definition "The deformation is a process describing a change in the shape, size, or structure of a material under the influence of stress or force."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000597
+co:PMD_0000597 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020131 ;
+ rdfs:label "density"@en ;
+ skos:definition "The density is a universal intensive quality representing the unit mass of a portion of matter per unit volume."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000598
+co:PMD_0000598 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:OBI_0000245
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom co:PMD_0000599
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:OBI_0000245 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom co:PMD_0000599
+ ] ;
+ rdfs:label "Abteilung"@de ,
+ "department"@en ;
+ skos:definition "Organization that it a distinct part of an organization, typically responsible for a specific area of activity, function, or expertise, and organized under a designated leader or head to carry out its duties in alignment with the broader goals and policies of the organization."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000599
+co:PMD_0000599 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:comment "This role is also an indication that an organization is a sub section of another organization."@en ;
+ rdfs:label "department role"@en ;
+ skos:definition "A department role is a role describing a personal function or position within an organization that defines responsibilities or activities in a specified context."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000600
+co:PMD_0000600 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000005 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000054 ;
+ owl:someValuesFrom co:PMD_0000523
+ ] ;
+ rdfs:label "deteriorative property"@en ;
+ skos:definition "The deteriorative property is a material property representing characteristics that describe the susceptibility of a material to degradation over time."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000601
+co:PMD_0000601 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000931 ;
+ rdfs:label "deterministic simulation"@en ;
+ skos:definition "a simulation approach where outcomes are precisely determined through known relationships without random variability."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000602
+co:PMD_0000602 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000030 ;
+ rdfs:label "Gerät"@de ,
+ "device"@en ;
+ skos:definition "A physical or virtual entity used to perform a specific function or task, often involving measurement, manipulation, or analysis of materials."@en ,
+ "Ein physisches oder virtuelles Objekt, das verwendet wird, um eine bestimmte Funktion oder Aufgabe auszuführen, häufig im Zusammenhang mit der Messung, Manipulation oder Analyse von Materialien."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000603
+co:PMD_0000603 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "Rolle eines Gerätes"@de ,
+ "device role"@en ;
+ skos:definition "Rolle, die ein Geräte inne haben kann."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000604
+co:PMD_0000604 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000621 ;
+ owl:disjointWith co:PMD_0000620 ;
+ rdfs:label "dielectric constant"@en ;
+ skos:definition "The dielectric constant is an electrical property representing a measure of a material's ability to store electrical energy in an electric field."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000605
+co:PMD_0000605 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Differential-Scanning-Kalorimeter"@de ,
+ "differential scanning calorimeter"@en ;
+ skos:definition "A device used to measure the heat flow associated with phase transitions in a sample as a function of temperature."@en ,
+ "Ein Gerät zur Messung des Wärmeflusses, der mit Phasenübergängen in einer Probe in Abhängigkeit von der Temperatur verbunden ist."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000606
+co:PMD_0000606 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000982 ;
+ rdfs:label "Dynamische Differenzkalorimetrie-Verfahren"@de ,
+ "differential scanning calorimetry process"@en ;
+ skos:definition "A Thermal Property Analyzing Process that measures the heat flow into or out of a material as it is heated, cooled, or held at a constant temperature, determining its thermal transitions such as melting, crystallization, and glass transitions."@en ,
+ "Ein Thermische Eigenschaften Analyseverfahren, das den Wärmestrom in oder aus einem Material misst, während es erhitzt, gekühlt oder bei konstanter Temperatur gehalten wird, um seine thermischen Übergänge wie Schmelzen, Kristallisation und Glasübergänge zu bestimmen."@de ;
+ skos:example "Differential scanning calorimetry of a polymer to determine its melting temperature and crystallization behavior."@en ;
+ co:PMD_0050117 "DSC"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000607
+co:PMD_0000607 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000982 ;
+ rdfs:label "Differenzthermoanalyse-Verfahren"@de ,
+ "differential thermal analysis process"@en ;
+ skos:definition "A Thermal Property Analyzing Process that measures the temperature difference between a sample and a reference material as they are subjected to a controlled temperature program, identifying phase transitions and reactions."@en ,
+ "Ein Thermische Eigenschaften Analyseverfahren, das die Temperaturdifferenz zwischen einer Probe und einem Referenzmaterial misst, während sie einem kontrollierten Temperaturprogramm unterzogen werden, um Phasenübergänge und Reaktionen zu identifizieren."@de ;
+ skos:example "Differential thermal analysis of a ceramic material to identify its phase transition temperatures and reaction kinetics."@en ;
+ co:PMD_0050117 "DTA"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000608
+co:PMD_0000608 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Differentialthermometer"@de ,
+ "differential thermal analyzer"@en ;
+ skos:definition "A device used to measure the temperature difference between a sample and a reference material as they are heated or cooled."@en ,
+ "Ein Gerät zur Messung des Temperaturunterschieds zwischen einer Probe und einem Referenzmaterial beim Erhitzen oder Abkühlen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000610
+co:PMD_0000610 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000847 ;
+ rdfs:label "Dimensionierungsfunktion"@de ,
+ "dimension measuring function"@en ;
+ skos:definition "A subfunction of measuring performed to determine the dimensions of an object or material."@en ,
+ "Eine Unterfunktion des Messens, die durchgeführt wird, um die Abmessungen eines Objekts oder Materials zu bestimmen."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000611
+co:PMD_0000611 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000957 ;
+ rdfs:label "Dimensions Messprozess"@de ,
+ "dimension measuring process"@en ;
+ skos:definition "A Structural Property Analyzing Process that determines the physical dimensions of a material or object, such as length, width, height, diameter, and thickness, with high accuracy and precision."@en ,
+ "Ein Struktur Eigenschaften Analyseverfahren, das die physikalischen Dimensionen eines Materials oder Objekts, wie Länge, Breite, Höhe, Durchmesser und Dicke, mit hoher Genauigkeit und Präzision bestimmt."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000612
+co:PMD_0000612 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000927 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8591"@en ,
+ "Offizielle Definition findet man in: DIN 8591"@de ;
+ rdfs:label "Zerlegen"@de ,
+ "disassembling"@en ;
+ skos:definition "A Seperating process that involves disassembling a composite or assembled unit into its constituent parts or sections."@en ,
+ "Ein Trennprozess, bei dem eine zusammengesetzte oder montierte Einheit in ihre Einzelteile oder Abschnitte zerlegt wird."@de ;
+ skos:example "Dismantling, Emptying"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000613
+co:PMD_0000613 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000931 ;
+ rdfs:label "discrete-event simulation"@en ;
+ skos:definition "a simulation method where events are processed at distinct points in time, commonly used for modeling systems with discrete state changes."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000614
+co:PMD_0000614 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000927 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8588"@en ,
+ "Offizielle Definition findet man in: DIN 8588"@de ;
+ rdfs:label "Zerteilen"@de ,
+ "dividing"@en ;
+ skos:definition "A Seperating process that involves separating material into distinct parts using techniques like shear cutting, splitting, tearing, or breaking, typically employed in processes where precise control over the cut is less critical."@en ,
+ "Ein Trennprozess, bei dem das Material durch Techniken wie Scherschneiden, Spalten, Reißen oder Brechen in verschiedene Teile zerlegt wird. Es wird in der Regel bei Prozessen eingesetzt, bei denen eine genaue Kontrolle über den Schnitt weniger wichtig ist."@de ;
+ skos:example "Shearing, Cracking"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000615
+co:PMD_0000615 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000648 ;
+ rdfs:label "Bohrmaschine"@de ,
+ "drilling machine"@en ;
+ skos:definition "A Drilling Machine is a Device that creates holes in a workpiece by means of a rotating drill bit."@en ,
+ "Eine Bohrmaschine ist ein Gerät, das Löcher in ein Werkstück durch ein sich drehendes Bohrwerkzeug erzeugt."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000616
+co:PMD_0000616 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Dynamisch-mechanische Analyse-Verfahren"@de ,
+ "dynamic mechanical analysis process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that measures the mechanical properties of a material as a function of temperature, time, frequency, and stress, determining its viscoelastic behavior."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, welcher die mechanischen Eigenschaften eines Materials in Abhängigkeit von Temperatur, Zeit, Frequenz und Spannung misst und dessen viskoelastisches Verhalten bestimmt."@de ;
+ skos:example "Dynamic mechanical analysis of a rubber compound to assess its stiffness and damping properties over a range of temperatures."@en ;
+ co:PMD_0050117 "DMA"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000617
+co:PMD_0000617 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Dynamischer mechanischer Analysator"@de ,
+ "dynamic mechanical analyzer"@en ;
+ skos:definition "A device used to measure the mechanical properties of materials as a function of temperature, frequency, and time."@en ,
+ "Ein Gerät zur Messung der mechanischen Eigenschaften von Materialien als Funktion von Temperatur, Frequenz und Zeit."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000618
+co:PMD_0000618 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000949 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000052 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000027
+ obo:BFO_0000030
+ co:PMD_0000538
+ )
+ ]
+ ] ;
+ rdfs:label "elastic modulus"@en ;
+ skos:definition "An elastic modulus is a measure of a material's stiffness, defined as the ratio of stress to strain in the elastic deformation region."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000619
+co:PMD_0000619 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020148 ;
+ rdfs:label "electric potential"@en ;
+ skos:definition "The electric potential is a thermodynamic quality describing the amount of work needed to move a unit charge from a reference point to a specific location in an electric field."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000620
+co:PMD_0000620 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000621 ;
+ rdfs:label "electrical conductivity"@en ;
+ skos:definition "The electrical conductivity is an electrical property describing the ability of a material to conduct electric current, influenced by its structure and composition."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000621
+co:PMD_0000621 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000005 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0000519
+ ] ;
+ rdfs:label "electrical property"@en ;
+ skos:definition "An electrical property is a material property that represents the characteristics of a material that determine its behavior under the influence of an electric field, such as conductivity, resistivity, and permittivity."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000622
+co:PMD_0000622 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000070 ;
+ rdfs:label "Elektrische Eigenschaften Analyseverfahren"@de ,
+ "electrical property analyzing process"@en ;
+ skos:definition "An assay that determines the electrical properties of materials, including electrical conductivity, resistivity, dielectric strength, and electrical charge storage capabilities."@en ,
+ "Eine Analyse, die die elektrischen Eigenschaften von Materialien bestimmt, einschließlich elektrischer Leitfähigkeit, Widerstand, dielektrischer Festigkeit und elektrischer Ladungsspeicherkapazitäten."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000623
+co:PMD_0000623 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001011 ;
+ rdfs:label "Elektronenstrahlschweißmaschine"@de ,
+ "electron beam welding machine"@en ;
+ skos:definition "An Electron Beam Welding Machine is a Welding Device that uses a high-velocity electron beam to fuse materials together, typically in a vacuum environment."@en ,
+ "Eine Elektronenstrahlschweißmaschine ist ein Schweißgerät, das einen hochgeschwindigen Elektronenstrahl verwendet, um Materialien miteinander zu verschmelzen, typischerweise in einer Vakuumumgebung."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000624
+co:PMD_0000624 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000855 ;
+ obo:IAO_0000119 "“Electron microscope.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/electron%20microscope. Accessed 24 Nov. 2022."@en ;
+ rdfs:label "Elektronenmikroskop"@de ,
+ "electron microscope"@en ;
+ skos:definition "A device that uses a beam of electrons to create high-resolution images of a sample's surface or structure."@en ,
+ "An electron-optical instrument in which a beam of electrons is used to produce an enlarged image of a minute object."@en ,
+ "Ein Gerät, das einen Elektronenstrahl verwendet, um hochauflösende Bilder der Oberfläche oder Struktur einer Probe zu erstellen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000625
+co:PMD_0000625 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000856 ;
+ rdfs:label "Elektronenmikroskopie"@de ,
+ "electron microscopy"@en ;
+ skos:definition "A Microscopy Process that uses a beam of electrons to create an image of an object, allowing for high-resolution visualization of the material's surface and internal structures."@en ,
+ "Ein Mikroskopieverfahren, das einen Elektronenstrahl verwendet, um ein Bild eines Objekts zu erzeugen, wodurch eine hochauflösende Visualisierung der Oberfläche und der inneren Strukturen des Materials ermöglicht wird."@de ;
+ skos:example "An example of an electron microscopy process is Scanning Electron Microscopy (SEM), which provides detailed images of the surface topography and composition of a material. Another example is Transmission Electron Microscopy (TEM), which can visualize the internal structure of a sample at atomic resolution."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000626
+co:PMD_0000626 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000945 ;
+ rdfs:label "Elektronenspektroskopie"@de ,
+ "electron spectroscopy"@en ;
+ skos:definition "A Spectroscopy Process, that studies the energy distribution of electrons emitted from a sample when it is irradiated with electromagnetic radiation or bombarded with particles."@en ,
+ "Ein Spektroskopie Verfahren, das die Energieverteilung von Elektronen untersucht, die aus einer Probe emittiert werden, wenn diese mit elektromagnetischer Strahlung bestrahlt oder mit Teilchen bombardiert wird."@de ;
+ skos:example "Examples are e.g. Auger electron spectroscopy, electron energy loss spectroscopy, secondary electron spectroscopy."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000627
+co:PMD_0000627 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000596 ;
+ rdfs:label "emission of accoustic wave"@en ;
+ skos:definition "The emission of (an) accoustic wave is a deformation describing the release of sound waves by a material or system, often due to vibration or stress."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000628
+co:PMD_0000628 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000629 ;
+ rdfs:label "emission of corpuscular radiation"@en ;
+ skos:definition "The emission of corpuscular radiation is an emission of radiation describing the release of particle-based radiation, such as alpha or beta particles, from a material or system."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000629
+co:PMD_0000629 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "emission of radiation"@en ;
+ skos:definition "The emission radiation is a process describing the release of energy in the form of electromagnetic waves or particles from a material."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000630
+co:PMD_0000630 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000629 ;
+ rdfs:label "emission of wave radiation"@en ;
+ skos:definition "The emission of wave radioation is an emission of radiation describing the release of energy in the form of waves, such as electromagnetic or acoustic waves, by a material or system."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000631
+co:PMD_0000631 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000933 ;
+ rdfs:label "Empirische Potential MD Simulation"@de ,
+ "empirical potential molecular dynamics simulation"@en ;
+ skos:definition "A Simulation Process that uses empirical potentials derived from experimental data to model the behavior of molecular systems."@en ,
+ "Ein Simulationsprozess, der empirische Potentiale verwendet, die aus experimentellen Daten abgeleitet sind, um das Verhalten molekularer Systeme zu modellieren."@de ;
+ skos:example "Simulating the diffusion of atoms in a crystal using Lennard-Jones potentials." .
+
+
+### https://w3id.org/pmd/co/PMD_0000633
+co:PMD_0000633 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Umweltschrank"@de ,
+ "environmental chamber"@en ;
+ skos:definition "A device used to simulate environmental conditions such as temperature, humidity, and pressure to test materials and devices."@en ,
+ "Ein Gerät zur Simulation von Umweltbedingungen wie Temperatur, Feuchtigkeit und Druck zur Prüfung von Materialien und Geräten."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000635
+co:PMD_0000635 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "evolution of damage"@en ;
+ skos:definition "An evolution of damage is a process representing the progression of material degradation under mechanical, thermal, or chemical stresses."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000636
+co:PMD_0000636 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ obo:IAO_0000119 "“Extensometer.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/extensometer. Accessed 5 Dec. 2022."@en ;
+ rdfs:label "extensometer"@en ;
+ skos:definition "A device for measuring minute deformations of test specimens caused by tension, compression, bending, or twisting."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000637
+co:PMD_0000637 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Materialermüdungsprüfmaschine"@de ,
+ "fatigue testing machine"@en ;
+ skos:definition "A device used to test the fatigue resistance of materials by subjecting them to repeated stress cycles."@en ,
+ "Ein Gerät zur Prüfung der Ermüdungsresistenz von Materialien, indem diese wiederholten Belastungszyklen ausgesetzt werden."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000638
+co:PMD_0000638 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Ermüdungsprüfverfahren"@de ,
+ "fatigue testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that assesses a material's ability to withstand cyclic loading, determining its fatigue life and endurance limit."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das die Fähigkeit eines Materials bewertet, zyklischen Belastungen standzuhalten, und seine Ermüdungslebensdauer und -grenze bestimmt."@de ;
+ skos:example "Fatigue testing of metal components in bridges to predict their lifespan under repetitive loading conditions."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000639
+co:PMD_0000639 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000852 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:someValuesFrom co:PMD_0020026
+ ] ;
+ rdfs:label "ferrous alloy"@en ;
+ skos:definition "A ferrous alloy is a metal describing an alloy containing iron as its principal element, often combined with other elements for enhanced properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000641
+co:PMD_0000641 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000806 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8593-2"@en ,
+ "Offizielle Definition findet man in: DIN 8593-2"@de ;
+ rdfs:label "Füllen"@de ,
+ "filling"@en ;
+ skos:definition "A joining process that involves the use of a filler material to connect parts."@en ,
+ "Ein Füge Prozess, bei dem ein Füllmaterial verwendet wird, um Teile zu verbinden."@de ;
+ skos:example "Impregnating, Soaking"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000642
+co:PMD_0000642 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Durchflusszytometer"@de ,
+ "flow cytometer"@en ;
+ skos:definition "A Flow Cytometer is a Device used to measure the physical and chemical characteristics of a population of cells or particles."@en ,
+ "Ein Durchflusszytometer ist ein Gerät, das verwendet wird, um die physikalischen und chemischen Eigenschaften einer Zell- oder Partikelpopulation zu messen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000644
+co:PMD_0000644 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000847 ;
+ rdfs:label "Kraftmessfunktion"@de ,
+ "force measuring function"@en ;
+ skos:definition "A subfunction of measuring performed to determine the force applied to or by an object."@en ,
+ "Eine Unterfunktion des Messens, die durchgeführt wird, um die auf ein Objekt ausgeübte oder von ihm ausgeübte Kraft zu bestimmen."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000645
+co:PMD_0000645 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "formation of notch or scratch"@en ;
+ skos:definition "The formation of (a) notch or (a) scratch is a process that describes the creation of small surface imperfections, which can influence a material's mechanical properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000646
+co:PMD_0000646 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000833 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 4, 3.1.2 Umformen - Definition"@en ,
+ "Offizielle Definition findet man in: DIN 8580:2003-9 Fertigungsverfahren, Seite 4, 3.1.2 Umformen - Definition"@de ;
+ rdfs:label "Umformen"@de ,
+ "forming"@en ;
+ skos:altLabel "Shaping"@en ;
+ skos:definition "A manufacturing process that changes the shape of a solid body through plastic deformation while retaining both mass and structural integrity."@en ,
+ "Ein Herstellungsprozess, der durch plastische Umformung die Gestalt eines festen Körpers verändert, wobei sowohl die Masse als auch die strukturelle Integrität erhalten bleiben."@de ;
+ skos:example "Tension Forming, Compression Forming"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000647
+co:PMD_0000647 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000646 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8586"@en ;
+ dcterms:source "Offizielle Definition findet man in: DIN 8586"@de ;
+ rdfs:label "Biegeumformen"@de ,
+ "forming by bending"@en ;
+ skos:definition "A forming process that involves bending materials, typically used in manipulating sheets, tubes, or profiles into curved shapes or angles, common in metalworking and fabrication industries."@en ,
+ "Ein Umform Prozess, der das Biegen von Materialien beinhaltet und typischerweise bei der Bearbeitung von Blechen, Rohren oder Profilen zu gekrümmten Formen oder Winkeln eingesetzt wird, wie es in der Metallverarbeitung und in der verarbeitenden Industrie üblich ist."@de ;
+ skos:example "Bending With Linear Die Movement, Bending With Rotary Die Movement"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000648
+co:PMD_0000648 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Formmaschine"@de ,
+ "forming machine"@en ;
+ skos:definition "A device used for shaping materials under various conditions, including tensile, compressive, and shearing."@en ,
+ "Ein Gerät zur Formgebung von Materialien unter verschiedenen Bedingungen, einschließlich Zug-, Druck- und Scherbedingungen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000649
+co:PMD_0000649 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000646 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8584-1"@en ;
+ dcterms:source "Offizielle Definition findet man in: DIN 8584-1"@de ;
+ rdfs:label "Zugdruckumformen"@de ,
+ "forming under compressive and tensile conditions"@en ;
+ skos:definition "A forming process that involves applying both tensile and compressive forces to a material."@en ,
+ "Ein Umform Prozess, bei dem sowohl Zug- als auch Druckkräfte auf ein Material ausgeübt werden."@de ;
+ skos:example "Stripping, Deep Drawing, Spinning"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000650
+co:PMD_0000650 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000646 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8583-1"@en ;
+ dcterms:source "Offizielle Definition findet man in: DIN 8583-1"@de ;
+ rdfs:label "Druckumformen"@de ,
+ "forming under compressive conditions"@en ;
+ skos:definition "A forming process that involves deforming materials under compressive forces, commonly used in techniques like rolling and die forming where metal is shaped by applying pressure."@en ,
+ "Ein Umform Prozess, bei dem Materialien unter Druck verformt werden. Er wird üblicherweise bei Techniken wie Walzen und Gesenkformen eingesetzt, bei denen Metall durch Druck in Form gebracht wird."@de ;
+ skos:example "Rolling, Coining"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000651
+co:PMD_0000651 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000646 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8587"@en ;
+ dcterms:source "Offizielle Definition findet man in: DIN 8587"@de ;
+ rdfs:label "Schubumformen"@de ,
+ "forming under shearing conditions"@en ;
+ skos:definition "A forming process that involves displacement or twisting materials to achieve deformation, often used in operations where materials are shaped by applying torsional forces."@en ,
+ "Ein Umform Prozess, bei dem Werkstoffe durch Verschieben oder Verdrehen verformt werden. Es wird häufig bei Verfahren verwendet, bei denen Werkstoffe durch Anwendung von Torsionskräften geformt werden."@de ;
+ skos:example "Twisting, Displacement"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000652
+co:PMD_0000652 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000646 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8585-1"@en ,
+ "Offizielle Definition findet man in: DIN 8585-1"@de ;
+ rdfs:label "Zugumformen"@de ,
+ "forming under tensile conditions"@en ;
+ skos:definition "A forming process that involves stretching or elongating materials to achieve desired dimensions or shapes."@en ,
+ "Ein Umform Prozess, bei dem Materialien gestreckt oder gedehnt werden, um die gewünschten Abmessungen oder Formen zu erreichen."@de ;
+ skos:example "Expanding, Stretch Forming"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000653
+co:PMD_0000653 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Bruchzähigkeitsprüfverfahren"@de ,
+ "fracture toughness testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that assesses a material's ability to resist crack propagation, determining its fracture toughness."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das die Fähigkeit eines Materials bewertet, der Rissausbreitung zu widerstehen, und seine Bruchzähigkeit bestimmt."@de ;
+ skos:example "Measuring the fracture toughness of ceramic materials used in aerospace components to ensure reliability under stress."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000654
+co:PMD_0000654 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000002 ,
+ [ owl:intersectionOf ( co:PMD_0000002
+ [ rdf:type owl:Restriction ;
+ owl:onProperty [ owl:inverseOf co:PMD_0020005
+ ] ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000030
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000085 ;
+ owl:someValuesFrom obo:BFO_0000034
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty [ owl:inverseOf co:PMD_0020005
+ ] ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000030
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000085 ;
+ owl:someValuesFrom obo:BFO_0000034
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000116 "Classified by the role in a system."@en ;
+ rdfs:label "functional material"@en ;
+ skos:definition "A Functional Material F is an Engineered Material which has the disposition to be used for an Object O (O consists of F) and O's function is other/more than mechanical load carrying."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000655
+co:PMD_0000655 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ obo:IAO_0000119 "“Furnace.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/furnace. Accessed 13 Jan. 2023."@en ;
+ rdfs:label "Ofen"@de ,
+ "furnace"@en ;
+ skos:definition "An enclosed structure in which heat is produced (as for heating a house or for reducing ore)."@en ,
+ "Eine geschlossene Struktur, in der Wärme erzeugt wird (z. B. zum Heizen eines Hauses oder zum Einschmelzen von Erz)."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000656
+co:PMD_0000656 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000556 ;
+ rdfs:label "Gaschromatographie Verfahren"@de ,
+ "gas chromatography process"@en ;
+ skos:definition "A Chromatography Process that separates and analyzes compounds that can be vaporized without decomposition, using a gas as the mobile phase and a solid or liquid stationary phase."@en ,
+ "Ein Chromatographieverfahren, das Verbindungen trennt und analysiert, die ohne Zersetzung verdampft werden können, indem ein Gas als mobile Phase und eine feste oder flüssige stationäre Phase verwendet wird."@de ;
+ skos:example "Gas chromatography is used to analyze the composition of volatile organic compounds in a polymer matrix."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000657
+co:PMD_0000657 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000557 ;
+ rdfs:label "Gaschromatographiesystem"@de ,
+ "gas chromatography system"@en ;
+ skos:definition "A device used for separating and analyzing compounds in a gas mixture using a chromatographic column."@en ,
+ "Ein Gerät zur Trennung und Analyse von Verbindungen in einem Gasgemisch unter Verwendung einer chromatographischen Säule."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000658
+co:PMD_0000658 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000556 ;
+ rdfs:label "Gel-Permeations-Chromatographie Verfahren"@de ,
+ "gel permeation chromatography process"@en ;
+ skos:definition "A Chromatography Process that separates molecules based on their size by passing the sample through a porous gel matrix, also known as size exclusion chromatography."@en ,
+ "Ein Chromatographieverfahren, das Moleküle basierend auf ihrer Größe trennt, indem die Probe durch eine poröse Gelmatrix geleitet wird, auch bekannt als Größenausschlusschromatographie."@de ;
+ skos:example "Gel permeation chromatography is used to determine the molecular weight distribution of a polymer sample."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000659
+co:PMD_0000659 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000557 ;
+ rdfs:label "Gelpermeations-Chromatographiesystem"@de ,
+ "gel permeation chromatography system"@en ;
+ skos:definition "A device used for separating and analyzing polymers based on their molecular size using gel permeation chromatography."@en ,
+ "Ein Gerät zur Trennung und Analyse von Polymeren basierend auf ihrer Molekülgröße durch Gelpermeationschromatographie."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000660
+co:PMD_0000660 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000594 ;
+ rdfs:label "Generatives Deep Learning"@de ,
+ "generative deep learning"@en ;
+ skos:definition "A Deep Learning process that involves creating models capable of generating new data instances that resemble the training data."@en ,
+ "Ein Deep Learning-Prozess, der Modelle erstellt, die in der Lage sind, neue Dateninstanzen zu erzeugen, die den Trainingsdaten ähneln."@de ;
+ skos:example "Using generative adversarial networks to design new molecular structures with desired properties, such as improved conductivity or strength."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000661
+co:PMD_0000661 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000002 ;
+ obo:IAO_0000116 "Classified by morphology."@en ;
+ rdfs:comment "It is often composed of silica-based compounds."@en ;
+ rdfs:label "glass"@en ;
+ skos:definition "A glass is an engineered material present as an amorphous solid typically formed by rapid cooling of a melt."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000662
+co:PMD_0000662 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000806 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8593-8"@en ,
+ "Offizielle Definition findet man in: DIN 8593-8"@de ;
+ rdfs:label "Kleben"@de ,
+ "glueing"@en ;
+ skos:altLabel "Bonding"@en ;
+ skos:definition "A joining process that involves using adhesives to bond materials together, suitable for a wide range of materials including metals, plastics, and composites, and used in various applications from automotive to aerospace."@en ,
+ "Ein Füge Prozess, bei dem Klebstoffe verwendet werden, um Materialien miteinander zu verbinden. Es eignet sich für eine Vielzahl von Materialien, darunter Metalle, Kunststoffe und Verbundstoffe, und wird in verschiedenen Anwendungen von der Automobilindustrie bis zur Luft- und Raumfahrt eingesetzt."@de ;
+ skos:example "Bonding With Physically Hardening Adhesives, Bonding With Chemically Hardening Adhesives (Reaction Bonding)"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000663
+co:PMD_0000663 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020003 ;
+ rdfs:label "Korn"@de ,
+ "crystal grain"@en ;
+ skos:definition "A crystal grain is a crystal that is continuant part of a polycrystal."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000665
+co:PMD_0000665 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Gravimetrischer Analysator"@de ,
+ "gravimetric analyzer"@en ;
+ skos:definition "A device used to measure the mass of a sample to determine its composition or concentration."@en ,
+ "Ein Gerät zur Messung der Masse einer Probe zur Bestimmung ihrer Zusammensetzung oder Konzentration."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000666
+co:PMD_0000666 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000957 ;
+ rdfs:label "Gravimetrisches Analyseverfahren"@de ,
+ "gravimetrical analyzing process"@en ;
+ skos:definition "A Structural Property Analyzing Process that measures the quantity of a substance by its mass, often involving the precipitation, filtration, drying, and weighing of the substance."@en ,
+ "Ein Struktur Eigenschaften Analyseverfahren, das die Menge einer Substanz durch ihre Masse misst und dabei häufig die Fällung, Filtration, Trocknung und Wägung der Substanz umfasst."@de ;
+ skos:example "An example of a Gravimetrical Analyzing Process is the determination of sulfate content in a sample by precipitating it as barium sulfate, filtering, drying, and weighing the precipitate."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000667
+co:PMD_0000667 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000648 ;
+ rdfs:label "Schleifmaschine"@de ,
+ "grinding machine"@en ;
+ skos:definition "A Grinding Machine is a Forming Machine that uses an abrasive wheel to remove material from the surface of a workpiece, typically for finishing or precision work."@en ,
+ "Eine Schleifmaschine ist eine Formmaschine, die ein Schleifrad verwendet, um Material von der Oberfläche eines Werkstücks zu entfernen, typischerweise für Feinarbeiten oder Präzisionsarbeiten."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000668
+co:PMD_0000668 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ obo:IAO_0000119 "https://www.merriam-webster.com/dictionary/grips"@en ;
+ rdfs:label "Halterungsklemmen"@de ,
+ "grips"@en ;
+ skos:definition "Diese Gerät beschreibt ein Bauelement / Teil, mit dem etwas, normalerweise ein materielles Objekt, fest gegriffen oder eingespannt wird. Typischerweise sind Halterungen, Klemm- bzw. Spannsysteme Teil eines Befestigungssystems (Prozessknoten), das sich auf ein Prüfsystem bezieht."@de ,
+ "This device is a part by which something, usually a tangible object, is grasped. Typically, grips are part of a mounting system (processing node) referring to a testing system."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000767
+co:PMD_0000767 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000920 ;
+ rdfs:label "Bügelsäge"@de ,
+ "hacksaw"@en ;
+ skos:definition "A hacksaw is a hand saw designed for cutting various materials, particularly metal. It consists of a fine-toothed blade, tensioned in a frame, and a handle. The frame of a hacksaw is typically C-shaped, allowing the blade to be easily replaced when necessary. Hacksaws are commonly used in metalworking and other applications where a controlled and precise cut through metal is required. The fine teeth on the hacksaw blade enable it to cut through metal with efficiency, and the tensioned frame provides stability during the cutting process. Hacksaws are versatile tools and are often used for tasks such as cutting pipes, rods, and metal sheets. They are available in different sizes and tooth configurations to suit various cutting needs."@en ,
+ "Eine Bügelsäge ist eine Art Handsäge zum Schneiden verschiedener Materialien, insbesondere Metall. Sie besteht aus einem fein gezahnten Blatt, das in einem Rahmen gespannt ist, und einem Griff. Der Rahmen einer Bügelsäge ist in der Regel C-förmig, so dass das Blatt bei Bedarf leicht ausgewechselt werden kann. Bügelsägen werden häufig bei der Metallbearbeitung und anderen Anwendungen eingesetzt, bei denen ein kontrollierter und präziser Schnitt durch Metall erforderlich ist. Die feinen Zähne des Sägeblatts ermöglichen ein effizientes Schneiden durch Metall, und der gespannte Rahmen sorgt für Stabilität während des Schneidens. Bügelsägen sind vielseitige Werkzeuge und werden häufig für Aufgaben wie das Schneiden von Rohren, Stangen und Blechen verwendet. Sie sind in verschiedenen Größen und Zahnkonfigurationen erhältlich, um verschiedenen Schneidanforderungen gerecht zu werden."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000768
+co:PMD_0000768 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000008 ;
+ rdfs:label "half-life"@en ;
+ skos:definition "The half-life is a process attribute describing the time it takes for a material entity or a quality of a material entity to reduce its initial value to a half"@en ;
+ skos:example "radioactive decay, material degradation"@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000769
+co:PMD_0000769 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000016 ;
+ rdfs:label "hand holdable disposition"@en ,
+ "in der Hand haltbar"@de ;
+ skos:definition "Disposion eines Objektes, das per Hand gehalten, betrieben oder verwendet werden kann."@de ,
+ "Disposition of an object that can be hold, operated or used manually."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000770
+co:PMD_0000770 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001999 ,
+ [ owl:intersectionOf ( co:PMD_0000558
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000091 ;
+ owl:someValuesFrom co:PMD_0000769
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:label "Handkreissäge"@de ,
+ "hand circular saw"@en ;
+ skos:definition "A handheld circular saw is a portable circular saw that is guided by hand. It is well suited for precise cuts in construction and woodwork."@en ,
+ "Die Handkreissäge is eine tragbare Kreissäge, die von Hand geführt wird. Sie eignet sich gut für präzise Schnitte bei Bau- und Holzarbeiten."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000771
+co:PMD_0000771 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001999 ,
+ [ owl:intersectionOf ( co:PMD_0000920
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000091 ;
+ owl:someValuesFrom co:PMD_0000769
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:label "Handsäge"@de ,
+ "handsaw"@en ;
+ skos:definition "Die Handsäge ist eine manuell betriebene Säge, die dazu dient, verschiedene Materialien, insbesondere Holz, zu schneiden. Diese Art von Säge besteht typischerweise aus einem langen, dünnen Blatt mit Zähnen, das an einem Griff befestigt ist. Der Griff ermöglicht es dem Benutzer, die Säge von Hand zu führen und den Schnitt durch Vor- und Zurückbewegen des Blatts zu erzeugen. Handsägen sind in verschiedenen Ausführungen erhältlich, je nach der beabsichtigten Anwendung. Es gibt beispielsweise Handsägen für Holz, Metall oder Kunststoff, und sie können unterschiedliche Zahngeometrien und Blattlängen aufweisen, um optimal auf verschiedene Schneidanforderungen abgestimmt zu sein."@de ,
+ "The handsaw is a manually operated saw that is used to cut various materials, especially wood. This type of saw typically consists of a long, thin blade with teeth attached to a handle. The handle allows the user to guide the saw by hand and make the cut by moving the blade back and forth. Handsaws are available in different designs, depending on the intended application. For example, there are handsaws for wood, metal or plastic, and they can have different tooth geometries and blade lengths to best suit different cutting requirements."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000772
+co:PMD_0000772 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000550 ;
+ rdfs:label "Verfestigen Durch Umformen"@de ,
+ "hardening by forming"@en ;
+ skos:definition "A Changing Properties Of Material process, that involves altering material properties by mechanical deformation."@en ,
+ "Ein Stoffeigenschaft Ändern Prozess, der die Eigenschaften des Materials durch mechanische Verformung verändert."@de ;
+ skos:example "Sheet Metal Rolling to Achieve Higher Strength."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000773
+co:PMD_0000773 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000848 ;
+ rdfs:label "hardness"@en ;
+ skos:definition "The hardness is a mechanical property used as a measure of a material's resistance to localized plastic deformation, often tested by indentation or scratch methods."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000774
+co:PMD_0000774 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000775 ;
+ rdfs:label "Härteprüfgerät"@de ,
+ "hardness tester"@en ;
+ skos:definition "A Hardness Tester is a Hardness Testing Machine that measures the resistance of a material to deformation, typically by indentation."@en ,
+ "Ein Härteprüfgerät ist eine Härteprüfmaschine, die den Widerstand eines Materials gegen Verformung, typischerweise durch Eindrücken, misst."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000775
+co:PMD_0000775 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Härteprüfmaschine"@de ,
+ "hardness testing machine"@en ;
+ skos:definition "A device used to measure the hardness of materials through various testing methods such as indentation or scratch tests."@en ,
+ "Ein Gerät zur Messung der Härte von Materialien durch verschiedene Prüfmethoden wie Eindrück- oder Kratzversuche."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000776
+co:PMD_0000776 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Härteprüfverfahren"@de ,
+ "hardness testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that measures a material's resistance to deformation, typically using indentation methods to determine hardness."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das den Widerstand eines Materials gegen Verformung misst und typischerweise Eindringverfahren verwendet, um die Härte zu bestimmen."@de ;
+ skos:example "Hardness testing of steel using the Rockwell method to classify its grade for industrial applications."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000777
+co:PMD_0000777 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000981 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001029 ;
+ owl:someValuesFrom co:PMD_0000549
+ ] ;
+ owl:disjointWith co:PMD_0000978 ;
+ rdfs:label "heat capacity"@en ;
+ skos:definition "The heat capacity is a thermal property describing the amount of heat energy required to raise the temperature of a material by a given amount."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000779
+co:PMD_0000779 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000550 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN EN ISO 4885:2018 Wärmebehandlung Page 21, 3.108 Wärmebehandlung - Definition"@en ,
+ "Offizielle Definition findet man in: DIN EN ISO 4885:2018 Wärmebehandlung Seite 21, 3.108 Wärmebehandlung - Definition"@de ;
+ rdfs:label "Wärmebehandlung"@de ,
+ "heat treatment"@en ;
+ skos:altLabel "Wärmebehandeln"@de ;
+ skos:definition "A Changing Properties of Materials process in which a solid (ferrous) product is fully or partially exposed to specific time-temperature sequences through a series of process steps with the aim of modifying its properties and/or its internal structure."@en ,
+ "Ein Stoffeigenschaft Ändern Prozess, bei dem durch eine Reihe von Verfahrensschritten ein festes (Eisen-)Produkt ganz oder teilweise bestimmten Zeit-Temperatur-Abfolgen ausgesetzt wird, mit dem Ziel, seine Eigenschaften und/oder seine innere Struktur zu modifizieren."@de ;
+ skos:example "Annealing, Ageing, Hardening"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000780
+co:PMD_0000780 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Wärmebehandlungsgerät"@de ,
+ "heat treatment device"@en ;
+ skos:definition "A device used for treating materials through heating and cooling processes to alter their properties."@en ,
+ "Ein Gerät zur Behandlung von Materialien durch Erwärmungs- und Abkühlungsprozesse zur Veränderung ihrer Eigenschaften."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000781
+co:PMD_0000781 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Wärmebehandlungsfunktion"@de ,
+ "heat treatment function"@en ;
+ skos:definition "A function performed to alter the properties of materials through controlled heating and cooling processes."@en ,
+ "Eine Funktion, die durchgeführt wird, um die Eigenschaften von Materialien durch kontrollierte Wärme- und Abkühlungsprozesse zu verändern."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000782
+co:PMD_0000782 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000556 ;
+ rdfs:label "Hochleistungsflüssigkeitschromatographie Verfahren"@de ,
+ "high-performance liquid chromatography process"@en ;
+ skos:definition "A Chromatography Process that separates, identifies, and quantifies components in a liquid sample using high pressure to pass the sample through a column packed with a stationary phase."@en ,
+ "Ein Chromatographieverfahren, das Komponenten in einer flüssigen Probe trennt, identifiziert und quantifiziert, indem hoher Druck verwendet wird, um die Probe durch eine mit einer stationären Phase gefüllte Säule zu leiten."@de ;
+ skos:example "High-performance liquid chromatography is used to analyze the purity and concentration of pharmaceutical compounds in a formulation."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000783
+co:PMD_0000783 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000933 ;
+ rdfs:label "Hochdurchsatzsimulation"@de ,
+ "high throughput simulation"@en ;
+ skos:definition "A Simulation Process that performs a large number of simulations automatically to explore a wide range of conditions."@en ,
+ "Ein Simulationsprozess, der eine große Anzahl von Simulationen automatisch durchführt, um eine breite Palette von Bedingungen zu erkunden."@de ;
+ skos:example "Screening thousands of potential material compounds to identify those with optimal properties for battery applications."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000784
+co:PMD_0000784 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000557 ;
+ rdfs:label "Hochleistungsflüssigkeitschromatographiesystem"@de ,
+ "high performance liquid chromatography system"@en ;
+ skos:definition "A device used for separating, identifying, and quantifying compounds in liquid samples through high performance liquid chromatography."@en ,
+ "Ein Gerät zur Trennung, Identifizierung und Quantifizierung von Verbindungen in Flüssigkeitsproben durch Hochleistungsflüssigkeitschromatographie."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000785
+co:PMD_0000785 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000657 ;
+ rdfs:label "Hochtemperatur-Gaschromatographiesystem"@de ,
+ "high temperature gas chromatography system"@en ;
+ skos:definition "A device used for separating and analyzing compounds in a gas mixture at high temperatures using a chromatographic column."@en ,
+ "Ein Gerät zur Trennung und Analyse von Verbindungen in einem Gasgemisch bei hohen Temperaturen unter Verwendung einer chromatographischen Säule."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000786
+co:PMD_0000786 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000931 ;
+ rdfs:label "hybrid simulation"@en ;
+ skos:definition "a simulation approach that combines physical and computational models to analyze material behavior."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000788
+co:PMD_0000788 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Schlagprüfverfahren"@de ,
+ "impact testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that determines a material's ability to absorb energy and withstand impact forces, typically using pendulum or drop-weight testers."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das die Fähigkeit eines Materials bestimmt, Energie zu absorbieren und Schlagkräfte zu widerstehen, typischerweise unter Verwendung von Pendel- oder Fallgewichtsprüfgeräten."@de ;
+ skos:example "Impact testing of helmet materials to ensure they provide adequate protection against head injuries."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000789
+co:PMD_0000789 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000773 ;
+ rdfs:label "indentation hardness"@en ;
+ skos:definition "The indentation hardness is a hardness representing the resistance of a material to deformation from an indenter, used to assess surface hardness."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000790
+co:PMD_0000790 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000877 ;
+ owl:disjointWith co:PMD_0000911 ;
+ rdfs:label "index of refraction"@en ;
+ skos:definition "The index of refraction is an optical property representing a measure of how much light bends when passing through a material, affecting its optical properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000791
+co:PMD_0000791 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000655 ;
+ rdfs:label "Induktionsofen"@de ,
+ "induction furnace"@en ;
+ skos:definition "An Induction Furnace is a Furnace that heats materials using electromagnetic induction, generating heat directly within the material."@en ,
+ "Ein Induktionsofen ist ein Ofen, der Materialien durch elektromagnetische Induktion erhitzt, wobei die Wärme direkt im Material erzeugt wird."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000793
+co:PMD_0000793 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "initiator role"@en ;
+ skos:definition "An initiator role is a role describing the position or function responsible for starting or catalyzing a process, often related to material testing or experiments."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000794
+co:PMD_0000794 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Spritzgießmaschine"@de ,
+ "injection molding machine"@en ;
+ skos:definition "An Injection Molding Machine is a Device used to produce plastic parts by injecting molten plastic into molds under high pressure."@en ,
+ "Eine Spritzgießmaschine ist ein Gerät, das verwendet wird, um Kunststoffteile durch Einspritzen von geschmolzenem Kunststoff in Formen unter hohem Druck herzustellen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000795
+co:PMD_0000795 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000556 ;
+ rdfs:label "Ionenaustauschchromatographie Verfahren"@de ,
+ "ion exchange chromatography process"@en ;
+ skos:definition "A Chromatography Process that separates ions and polar molecules based on their charge by using an ion exchange resin to attract and retain the ions from the sample."@en ,
+ "Ein Chromatographieverfahren, das Ionen und polare Moleküle basierend auf ihrer Ladung trennt, indem ein Ionenaustauscherharz verwendet wird, um die Ionen aus der Probe anzuziehen und zu halten."@de ;
+ skos:example "Ion exchange chromatography is used to purify and separate proteins in a solution for material characterization."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000796
+co:PMD_0000796 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000557 ;
+ rdfs:label "Ionenaustausch-Chromatographiesystem"@de ,
+ "ion exchange chromatography system"@en ;
+ skos:definition "A device used for separating ions in a sample using ion exchange resins in a chromatographic column."@en ,
+ "Ein Gerät zur Trennung von Ionen in einer Probe unter Verwendung von Ionenaustauschharzen in einer chromatographischen Säule."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000797
+co:PMD_0000797 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000855 ;
+ rdfs:label "Ionenmikroskop"@de ,
+ "ion microscope"@en ;
+ skos:definition "A device that uses ions to create high-resolution images of the surface or structure of a sample."@en ,
+ "Ein Gerät, das Ionen verwendet, um hochauflösende Bilder der Oberfläche oder Struktur einer Probe zu erstellen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000798
+co:PMD_0000798 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000856 ;
+ rdfs:label "Ionenmikroskopie"@de ,
+ "ion microscopy"@en ;
+ skos:definition "A Microscopy Process that uses a focused beam of ions to image a specimen, providing high-resolution images and compositional information, often used for surface analysis and depth profiling."@en ,
+ "Ein Mikroskopieverfahren, das einen fokussierten Ionenstrahl verwendet, um ein Bild einer Probe zu erzeugen, hochauflösende Bilder und Zusammensetzungsinformationen liefert und häufig für Oberflächenanalysen und Tiefenprofilierung verwendet wird."@de ;
+ skos:example "An example of an ion microscopy process is Helium Ion Microscopy (HIM), which offers high-resolution imaging with minimal sample damage, or Field Ion Microscopy, which provides atomic-level resolution imaging by using a strong electric field to ionize atoms at the surface of a sharp tip, or Focused Ion Beam Scanning Electron Microscopy (FIB-SEM), which allows for high-precision material removal and imaging by using a focused beam of ions to mill the sample surface while simultaneously capturing detailed SEM images."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000799
+co:PMD_0000799 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Ionen-Spektrometer"@de ,
+ "ion spectrometer"@en ;
+ skos:definition "A device used for analyzing ions in a sample to determine their composition and concentration."@en ,
+ "Ein Gerät zur Analyse von Ionen in einer Probe zur Bestimmung ihrer Zusammensetzung und Konzentration."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000800
+co:PMD_0000800 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000945 ;
+ rdfs:label "Ionenspektroskopie"@de ,
+ "ion spectroscopy"@en ;
+ skos:definition "A Spectroscopy Process, that analyzes the properties and behavior of ions in a sample by measuring their interaction with electromagnetic fields or other ions."@en ,
+ "Ein Spektroskopie Verfahren, das die Eigenschaften und das Verhalten von Ionen in einer Probe analysiert, indem es ihre Wechselwirkung mit elektromagnetischen Feldern oder anderen Ionen misst."@de ;
+ skos:example "Examples are e.g. ion mobility spectroscopy, ion-beam spectroscopy."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000801
+co:PMD_0000801 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000550 ;
+ rdfs:label "Bestrahlen"@de ,
+ "irradiating"@en ;
+ skos:definition "A Changing Properties Of Material process that employs radiation exposure, to alter and enhance a material's physical or chemical attributes."@en ,
+ "Ein Stoffeigenschaft Ändern Prozess, bei dem die physikalischen oder chemischen Eigenschaften eines Materials durch Bestrahlung verändert und verbessert werden."@de ;
+ skos:example "Polymer Curing"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000802
+co:PMD_0000802 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "irradiation process"@en ;
+ skos:definition "An irradiation process is a process in which a radiation source (bearing a stimulus role) emits radiation towards a material entity (bearing the target role)"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000803
+co:PMD_0000803 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Irradiationsgerät"@de ,
+ "irradiation device"@en ;
+ skos:definition "A device used for exposing materials to radiation to induce changes in their properties."@en ,
+ "Ein Gerät zum Aussetzen von Materialien gegenüber Strahlung zur Induktion von Veränderungen ihrer Eigenschaften."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000805
+co:PMD_0000805 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Irradiationsfunktion"@de ,
+ "irradiation function"@en ;
+ skos:definition "A function performed to expose materials to radiation for altering their properties."@en ,
+ "Eine Funktion, die durchgeführt wird, um Materialien Strahlung auszusetzen, um deren Eigenschaften zu verändern."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000806
+co:PMD_0000806 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000833 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 5, 3.1.4 Fügen - Definition & DIN 8593-0"@en ,
+ "Offizielle Definition findet man in: DIN 8580:2003-9 Fertigungsverfahren, Seite 5, 3.1.4 Fügen - Definition & DIN 8593-0"@de ;
+ rdfs:label "Fügen"@de ,
+ "joining"@en ;
+ skos:definition "A manufacturing process that enables the continuous bonding or joining of two or more workpieces with a specific, fixed shape or of such workpieces with a shapeless material, whereby the cohesion is created at specific points and reinforced overall."@en ,
+ "Ein Herstellungsprozess, der das dauerhafte Verbinden oder das Zusammenfügen von zwei oder mehr Werkstücken mit spezifischer, fester Form oder von solchen Werkstücken mit einem formlosen Material ermöglicht, wobei der Zusammenhalt an spezifischen Stellen erzeugt und insgesamt verstärkt wird."@de ;
+ skos:example "Joining By Welding, Assembling"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000807
+co:PMD_0000807 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000806 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8593-4"@en ,
+ "Offizielle Definition findet man in: DIN 8593-4"@de ;
+ rdfs:label "Fügen durch Urformen"@de ,
+ "joining by primary shaping"@en ;
+ skos:altLabel "Joining By Master Forming"@en ;
+ skos:definition "A joining process that involves creating a part or component in its final shape from a liquid or semi-liquid material."@en ,
+ "Ein Fügeverfahren, bei dem ein Teil oder eine Komponente aus einem flüssigen oder halbflüssigen Material in seine endgültige Form gebracht wird."@de ;
+ skos:example "Pouring, Embedding, Encasing"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000808
+co:PMD_0000808 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000806 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8593-5"@en ,
+ "Offizielle Definition findet man in: DIN 8593-5"@de ;
+ rdfs:label "Fügen Durch Umformen"@de ,
+ "joining by shaping"@en ;
+ skos:altLabel "Joining By Forming"@en ;
+ skos:definition "A joining process that involves deforming one or more components to achieve a mechanical interlock or fit, commonly used for press-fit joints, crimping, or swaging."@en ,
+ "Ein Füge Prozess, bei dem eine oder mehrere Komponenten verformt werden, um eine mechanische Verriegelung oder Passung zu erreichen, die üblicherweise für Pressverbindungen, Crimpen oder Schmieden verwendet wird."@de ;
+ skos:example "Joining By Riveting, Joining By Forming Wire-Shaped Bodies"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000809
+co:PMD_0000809 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000806 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8593-7"@en ,
+ "Offizielle Definition findet man in: DIN 8593-7"@de ;
+ rdfs:label "Fügen Durch Löten"@de ,
+ "joining by soldering"@en ;
+ skos:definition "A joining process that involves using a filler material (solder) to join metal parts by melting the solder between them without melting the base materials, a technique widely used in electronics and plumbing. This process creates a strong, conductive bond suitable for various applications."@en ,
+ "Ein Füge Prozess, bei dem ein Füllmaterial (Lot) verwendet wird, um Metallteile zu verbinden, indem das Lot zwischen ihnen geschmolzen wird, ohne die Grundmaterialien zu schmelzen. Diese Technik wird häufig in der Elektronik und im Sanitärbereich eingesetzt. Durch dieses Verfahren entsteht eine starke, leitfähige Verbindung, die für verschiedene Anwendungen geeignet ist."@de ;
+ skos:example "Joint Soft Soldering, Joint Hard Soldering"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000810
+co:PMD_0000810 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000806 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8593-6"@en ,
+ "Offizielle Definition findet man in: DIN 8593-6"@de ;
+ rdfs:label "Fügen Durch Schweißen"@de ,
+ "joining by welding"@en ;
+ skos:definition "A joining process that involves fusing two or more metal parts by applying heat, pressure, or both, often with the addition of a filler material. This method creates a permanent and strong bond, essential in manufacturing and construction for durable structures and components."@en ,
+ "Ein Füge Prozess, bei dem zwei oder mehr Metallteile durch Anwendung von Hitze, Druck oder beidem verschmolzen werden, oft unter Zugabe eines Füllstoffs. Durch dieses Verfahren entsteht eine dauerhafte und starke Verbindung, die in der Fertigung und im Bauwesen für dauerhafte Strukturen und Komponenten unerlässlich ist."@de ;
+ skos:example "Pressure Welding, Fusion Welding"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000811
+co:PMD_0000811 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Verbindungsgerät"@de ,
+ "joining device"@en ;
+ skos:definition "A general device used for joining materials through various methods, including welding and soldering."@en ,
+ "Ein allgemeines Gerät zum Verbinden von Materialien durch verschiedene Methoden, einschließlich Schweißen und Löten."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000812
+co:PMD_0000812 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Verbindungsfunktion"@de ,
+ "joining function"@en ;
+ skos:definition "A function performed to connect or bond materials together through various methods such as welding or soldering."@en ,
+ "Eine Funktion, die ausgeführt wird, um Materialien durch verschiedene Methoden wie Schweißen oder Löten zu verbinden."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000813
+co:PMD_0000813 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001998 ;
+ rdfs:label "Messer"@de ,
+ "knife"@en ;
+ skos:definition "A tool with a sharp edge, typically made of metal, used for cutting food, materials, or other substances."@en ,
+ "Ein Werkzeug mit einer scharfen Schneide, üblicherweise aus Metall, das zum Schneiden von Lebensmitteln, Materialien oder anderen Substanzen verwendet wird."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000814
+co:PMD_0000814 rdf:type owl:Class ;
+ owl:equivalentClass _:genid358 ;
+ rdfs:subClassOf obo:BFO_0000029 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom co:PMD_0000815
+ ] ;
+ obo:IAO_0000119 "“Laboratory.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/laboratory. Accessed 24 Nov. 2022."@en ;
+ rdfs:label "Labor"@de ,
+ "laboratory"@en ;
+ skos:definition "A place equipped for experimental study in a science or for testing and analysis."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+_:genid358 owl:intersectionOf ( obo:BFO_0000029
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom co:PMD_0000815
+ ]
+ ) ;
+ rdf:type owl:Class .
+
+[ rdf:type owl:Axiom ;
+ owl:annotatedSource co:PMD_0000814 ;
+ owl:annotatedProperty owl:equivalentClass ;
+ owl:annotatedTarget _:genid358 ;
+ co:PMD_0001032 "issue: https://github.com/materialdigital/core-ontology/issues/101"
+ ] .
+
+
+### https://w3id.org/pmd/co/PMD_0000815
+co:PMD_0000815 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "laboratory role"@en ;
+ skos:definition "A laboratory role is a role specifying the functions or activities specific to experimental and analytical tasks performed in a laboratory setting."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000816
+co:PMD_0000816 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000945 ;
+ rdfs:label "Laserspektroskopie"@de ,
+ "laser spectroscopy"@en ;
+ skos:definition "A Spectroscopy Process, that uses laser light to probe the properties of materials."@en ,
+ "Ein Spektroskopie Verfahren, das Laserlicht verwendet, um die Eigenschaften von Materialien zu untersuchen."@de ;
+ skos:example "Examples are e.g. laser absorption spectroscopy, laser emission spectroscopy, ultra-fast laser spectroscopy."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000817
+co:PMD_0000817 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001998 ;
+ rdfs:label "Laserschneider"@de ,
+ "lasercutter"@en ;
+ skos:definition "A device that utilizes laser beams to create precise cuts in various materials such as wood, plastic, metal, etc."@en ,
+ "Ein Gerät, das Laserstrahlen verwendet, um präzise Schnitte in verschiedenen Materialien wie Holz, Kunststoff, Metall usw. zu erzeugen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000818
+co:PMD_0000818 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000648 ;
+ rdfs:label "Drehmaschine"@de ,
+ "lathe"@en ;
+ skos:definition "A Lathe is a Device that rotates a workpiece on its axis to perform various operations such as cutting, sanding, drilling, or deformation."@en ,
+ "Eine Drehmaschine ist ein Gerät, das ein Werkstück um seine Achse dreht, um verschiedene Operationen wie Schneiden, Schleifen, Bohren oder Verformung durchzuführen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000819
+co:PMD_0000819 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000875 ;
+ rdfs:label "Lichtmikroskopie"@de ,
+ "light microscopy"@en ;
+ skos:definition "An Optical Microscopy process that uses visible light and lenses to magnify and visualize specimens, enabling the study of the microstructure and morphology of materials."@en ,
+ "Ein optisches Mikroskopieverfahren, das sichtbares Licht und Linsen verwendet, um Proben zu vergrößern und zu visualisieren, wodurch die Untersuchung der Mikrostruktur und Morphologie von Materialien ermöglicht wird."@de ;
+ skos:example "An example of a light microscopy process is Confocal Laser Scanning Microscopy, which uses laser light to scan specimens and create high-resolution, three-dimensional images. Another example is Fluorescence Microscopy, which uses fluorescent dyes to label specific components of the specimen, allowing for the visualization of structures that are otherwise difficult to see. A third example is Polarized Light Microscopy, which utilizes polarized light to enhance contrast in samples with birefringent properties, such as crystalline materials."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000820
+co:PMD_0000820 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ obo:IAO_0000119 "https://en.wikipedia.org/wiki/Load_cell"@en ;
+ rdfs:label "Kraftmessdose"@de ,
+ "load cell"@en ;
+ skos:definition "A load cell converts a force such as tension, compression, pressure, or torque into an electrical signal that can be measured and standardized. It is a force transducer. As the force applied to the load cell increases, the electrical signal changes proportionally. The most common types of load cell are pneumatic, hydraulic, and strain gauges."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000821
+co:PMD_0000821 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000933 ;
+ rdfs:label "Maschinelles Lernen"@de ,
+ "machine learning"@en ;
+ skos:definition "A Simulation Process that uses algorithms to enable computers to learn from and make predictions based on data."@en ,
+ "Ein Simulationsprozess, der Algorithmen verwendet, um Computern das Lernen aus Daten und das Treffen von Vorhersagen zu ermöglichen."@de ;
+ skos:example "Predicting the mechanical properties of composite materials based on their composition."@en ;
+ co:PMD_0050117 "ML" .
+
+
+### https://w3id.org/pmd/co/PMD_0000822
+co:PMD_0000822 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000927 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8589-0"@en ,
+ "Offizielle Definition findet man in: DIN 8589-0"@de ;
+ rdfs:label "Spanen Mit Geometrisch Bestimmten Schneiden"@de ,
+ "machining geometrically defined"@en ;
+ skos:definition "A Seperating process that involves removing material with a tool that has a defined shape and sharp edges, such as in sawing and drilling operations."@en ,
+ "Ein Trennprozess, bei dem Material mit einem Werkzeug mit definierter Form und scharfen Kanten entfernt wird, wie z. B. beim Sägen und Bohren."@de ;
+ skos:example "Drilling, Turning"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000823
+co:PMD_0000823 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000927 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8589-0"@en ,
+ "Offizielle Definition findet man in: DIN 8589-0"@de ;
+ rdfs:label "Spanen Mit Geometrisch Unbestimmten Schneiden"@de ,
+ "machining geometrically undefined"@en ;
+ skos:definition "A Seperating process that involves removing material using tools with undefined cutting edges, such as grinding or abrasive machining, where the exact shape of the cutting part isn't clearly defined."@en ,
+ "Ein Trennprozess, bei dem Material mit Werkzeugen mit undefinierten Schneiden abgetragen wird, wie z. B. beim Schleifen oder bei der abrasiven Bearbeitung, bei der die genaue Form des zu schneidenden Teils nicht klar definiert ist."@de ;
+ skos:example "Grinding, Blasting"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000825
+co:PMD_0000825 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000005 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0000521
+ ] ;
+ rdfs:label "magnetic property"@en ;
+ skos:definition "A magnetic property is a material property representing characteristics that describe how a material responds to magnetic fields, such as permeability and coercivity."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000826
+co:PMD_0000826 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000550 ;
+ obo:IAO_0000119 "https://industrylist.com/glossar/stoffeigenschaften-aendern/magnetisieren/"@de ;
+ rdfs:label "Magnetisieren"@de ,
+ "magnetizing"@en ;
+ skos:definition "A Changing Properties Of Material process in which ferromagnetic materials are exposed to an external magnetic field, causing the material to take on magnetic properties."@en ,
+ "Ein Stoffeigenschaft Ändern Prozess, bei dem ferromagnetische Stoffe einem äußeren Magnetfeld ausgesetzt werden wodurch der Stoff magnetische Eigenschaften übernimmt."@de ;
+ skos:example "Static Magnetization, Pulse Magnetization."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000827
+co:PMD_0000827 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Magnetisierungsgerät"@de ,
+ "magnetizing device"@en ;
+ skos:definition "A device used for inducing a magnetic field in materials to alter their magnetic properties."@en ,
+ "Ein Gerät zur Induktion eines Magnetfelds in Materialien, um deren magnetische Eigenschaften zu verändern."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000828
+co:PMD_0000828 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Magnetisierungsfunktion"@de ,
+ "magnetizing function"@en ;
+ skos:definition "A function performed to induce a magnetic field in materials to modify their magnetic properties."@en ,
+ "Eine Funktion, die durchgeführt wird, um ein Magnetfeld in Materialien zu induzieren, um deren magnetische Eigenschaften zu verändern."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000829
+co:PMD_0000829 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000070 ;
+ rdfs:label "Magnetische Elektrische Eigenschaften Analyseverfahren"@de ,
+ "magneto electrical property analyzing process"@en ;
+ skos:definition "An assay that investigates the magnetic and electrical properties of materials, including conductivity, resistivity, permittivity, permeability, and magnetization."@en ,
+ "Eine Analyse, die die magnetischen und elektrischen Eigenschaften von Materialien untersucht, einschließlich Leitfähigkeit, Widerstand, Permittivität, Permeabilität und Magnetisierung."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000832
+co:PMD_0000832 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Fertigungsfunktion"@de ,
+ "manufacturing function"@en ;
+ skos:definition "A function that inheres in devices or processes that are used to produce or assemble goods or components."@en ,
+ "Eine Funktion, die in Geräten oder Prozessen besteht, die zur Herstellung oder Montage von Waren oder Komponenten verwendet werden."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000833
+co:PMD_0000833 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000015
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000293 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000299 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:OBI_0000011 ,
+ [ owl:intersectionOf ( obo:BFO_0000015
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom co:PMD_0000014
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000293 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:OBI_0000299 ;
+ owl:someValuesFrom obo:BFO_0000040
+ ] ;
+ rdfs:label "Herstellungsprozess"@de ,
+ "manufacturing process"@en ;
+ skos:definition """A planned process that is driven by the primary intent to transform objects
+A manufacturing process is always a transformative process."""@en ,
+ "Ein geplannter Prozess, der von der primären Absicht angetrieben wird, Objekte zu transformieren. Ein Herstellungsprozess ist immer ein Transformationsprozess."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000834
+co:PMD_0000834 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000502 ;
+ rdfs:label "map"@en ;
+ skos:definition "A map is a 2-D information content entity describing a representation of spatial data or relationships, often used in material science for visualizing properties or distributions."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000835
+co:PMD_0000835 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Massenspektrometer"@de ,
+ "mass spectrometer"@en ;
+ skos:definition "A device used to measure the mass-to-charge ratio of ions to identify and quantify compounds in a sample."@en ,
+ "Ein Gerät zur Messung des Massen-zu-Ladung-Verhältnisses von Ionen zur Identifizierung und Quantifizierung von Verbindungen in einer Probe."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000836
+co:PMD_0000836 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000945 ;
+ rdfs:label "Massenspektroskopie"@de ,
+ "mass spectrometry"@en ;
+ skos:definition "A Spectroscopy Process, that measures the mass-to-charge ratio of ions to identify and quantify molecules in a sample."@en ,
+ "Ein Spektroskopie Verfahren, das das Masse-zu-Ladung-Verhältnis von Ionen misst, um Moleküle in einer Probe zu identifizieren und zu quantifizieren."@de ;
+ skos:example "Examples are e.g. time-of-flight mass spectroscopy, particle beam mass spectrometry."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000845
+co:PMD_0000845 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "matrix role"@en ;
+ skos:definition "Matrix is the role of a PortionOfConnectedMatter that implies to host the Filler."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000847
+co:PMD_0000847 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Messfunktion"@de ,
+ "measuring function"@en ;
+ skos:definition "A function performed to determine the magnitude, quantity, or extent of a physical property or condition."@en ,
+ "Eine Funktion, die durchgeführt wird, um das Ausmaß, die Menge oder den Zustand einer physikalischen Eigenschaft zu bestimmen."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000848
+co:PMD_0000848 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000005 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0000522
+ ] ;
+ rdfs:label "mechanical property"@en ;
+ skos:definition """A mechanical property is a material property that inheres in a material M when an object O_target that consists of M is stimulated in a process through an interaction with an object O_stimulus and M changes its stress/strain/..(mechanical?) SDCs.
+
+TODO: Check general class axiom and defintion altogether !!!"""@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000849
+co:PMD_0000849 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000070 ;
+ rdfs:label "Mechanische Eigenschaften Analyseverfahren"@de ,
+ "mechanical property analyzing process"@en ;
+ skos:definition "An assay that evaluates the mechanical characteristics of materials, such as strength, hardness, elasticity, and tensile properties, often through tests that measure response to forces and loads."@en ,
+ "Eine Analyse, die die mechanischen Eigenschaften von Materialien bewertet, wie z.B. Festigkeit, Härte, Elastizität und Zugfestigkeit, oft durch Tests, die die Reaktion auf Kräfte und Lasten messen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000851
+co:PMD_0000851 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000882 ;
+ rdfs:label "melting point"@en ;
+ skos:definition "The melting point is a phase boundary described by the temperature at which a solid becomes a liquid under standard atmospheric pressure."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000852
+co:PMD_0000852 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( co:PMD_0000002
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000051 ;
+ owl:someValuesFrom [ owl:intersectionOf ( co:PMD_0020003
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000053 ;
+ owl:someValuesFrom co:PMD_0050002
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000116 "Classified by morphology."@en ;
+ rdfs:label "metal"@en ;
+ skos:definition "A metal is an engineered material representing a class of materials characterized by high electrical and thermal conductivity, ductility, and metallic bonding."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000853
+co:PMD_0000853 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020131 ;
+ rdfs:label "metallographic texture"@en ;
+ skos:definition "The metallographic texture is a morphological quality describing the arrangement and orientation of grains and phases in a metallic material, observed through metallographic analysis."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000854
+co:PMD_0000854 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ obo:IAO_0000119 "https://www.merriam-webster.com/dictionary/micrometer%20caliper"@en ;
+ rdfs:label "Bügelmessschraube"@de ,
+ "micrometer gauge"@en ;
+ skos:definition "A measuring device for making precise measurements having a spindle moved by a finely threaded screw."@en ,
+ "Diese Entität beschreibt ein Werkzeug zur Durchführung präziser Messungen mit einer Spindel, die durch eine Feingewindeschraube bewegt wird."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000855
+co:PMD_0000855 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Mikroskop"@de ,
+ "microscope"@en ;
+ skos:definition "A device used to magnify and view small objects or details that are not visible to the naked eye."@en ,
+ "Ein Gerät zur Vergrößerung und Betrachtung kleiner Objekte oder Details, die mit bloßem Auge nicht sichtbar sind."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000856
+co:PMD_0000856 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000957 ;
+ rdfs:label "Mikroskopie Verfahren"@de ,
+ "microscopy process"@en ;
+ skos:definition "A Structural Property Analyzing Process that uses various types of microscopy techniques to visualize and analyze the microstructure and morphology of materials at different scales."@en ,
+ "Ein Struktur Eigenschaften Analyseverfahren, das verschiedene Arten von Mikroskopietechniken verwendet, um die Mikrostruktur und Morphologie von Materialien auf verschiedenen Ebenen zu visualisieren und zu analysieren."@de ;
+ skos:example "Examples of Microscopy Processes include Electron Microscopy, which provides detailed images at high resolution; Ion Microscopy, which offers high-precision imaging and material milling capabilites; and Optical Microscopy, which uses visible light to study e.g. the microstructure of materials."@en ;
+ co:PMD_0050117 "Mikroskopie"@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000857
+co:PMD_0000857 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "microstructure"@en ;
+ skos:definition "The microstructure represents the small-scale structure of a material, including grains, phases, and defects, visible under a microscope."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000858
+co:PMD_0000858 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Mikrotom"@de ,
+ "microtome"@en ;
+ skos:definition "A Microtome is a Measuring Device that cuts extremely thin slices of material, often for examination under a microscope."@en ,
+ "A device used to cut extremely thin slices of material, often for microscopic examination."@en ,
+ "Ein Gerät, das verwendet wird, um extrem dünne Scheiben von Material zu schneiden, oft für mikroskopische Untersuchungen."@de ,
+ "Ein Mikrotom ist ein Messgerät, das extrem dünne Scheiben von Material schneidet, oft zur Untersuchung unter einem Mikroskop."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000859
+co:PMD_0000859 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000648 ;
+ rdfs:label "Fräsmaschine"@de ,
+ "milling machine"@en ;
+ skos:definition "A Milling Machine is a Device that performs machining operations to remove material from a workpiece using rotary cutters."@en ,
+ "Eine Fräsmaschine ist ein Gerät, das Bearbeitungsoperationen durchführt, um Material von einem Werkstück mithilfe von Fräsern zu entfernen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000861
+co:PMD_0000861 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000924 ;
+ rdfs:label "mohs hardness"@en ;
+ skos:definition "Mohs Hardness is a scalar (scale) used to rank materials based on their ability to scratch one another."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000862
+co:PMD_0000862 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000933 ;
+ rdfs:label "Monte Carlo Simulation"@de ,
+ "monte carlo simulation"@en ;
+ skos:definition "A Simulation Process that uses random sampling to solve physical and mathematical problems."@en ,
+ "Ein Simulationsprozess, der zufällige Stichproben verwendet, um physikalische und mathematische Probleme zu lösen."@de ;
+ skos:example "Predicting the diffusion behavior of atoms in a metal at high temperatures."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000864
+co:PMD_0000864 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000005 ;
+ rdfs:label "morphological property"@en ;
+ skos:definition "A morphological property is a material property representing the characteristics of a material's structure, such as shape, size, and distribution of its features."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000865
+co:PMD_0000865 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000594 ;
+ rdfs:label "Multimodales Deep Learning"@de ,
+ "multimodal deep learning"@en ;
+ skos:definition "A Deep Learning process that integrates and processes data from multiple modalities (e.g., text, images, and audio) to improve performance and gain a more comprehensive understanding."@en ,
+ "Ein Deep Learning-Prozess, der Daten aus mehreren Modalitäten (z.B. Text, Bilder und Audio) integriert und verarbeitet, um die Leistung zu verbessern und ein umfassenderes Verständnis zu erlangen."@de ;
+ skos:example "Combining microscopy images and spectroscopic data to predict the properties of new materials more accurately."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000866
+co:PMD_0000866 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000933 ;
+ rdfs:label "Multiskalensimulation"@de ,
+ "multiscale simulation"@en ;
+ skos:definition "A Simulation Process that integrates models at different scales to study a system's behavior."@en ,
+ "Ein Simulationsprozess, der Modelle auf verschiedenen Skalen integriert, um das Verhalten eines Systems zu untersuchen."@de ;
+ skos:example "Studying the interaction between microstructural and macroscopic properties in metallic alloys."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000867
+co:PMD_0000867 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Nanoindentationsverfahren"@de ,
+ "nanoindentation process"@en ;
+ skos:definition "A Mechanical Property Analyzing Processs that measures the hardness and elastic modulus of materials at the nanoscale using a sharp indenter."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das die Härte und den elastischen Modulus von Materialien im Nanomaßstab mittels eines scharfen Eindringkörpers misst."@de ;
+ skos:example "Nanoindentation of thin films to evaluate their mechanical properties for use in microelectronic devices."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000868
+co:PMD_0000868 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000000 ;
+ rdfs:label "natural organic material"@en ;
+ skos:definition "Natural organic materials are materials derived from natural biological sources, primarily composed of carbon-based compounds."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000869
+co:PMD_0000869 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "occurence of chemical reaction"@en ;
+ skos:definition "The occurrence of (a) chemical reaction is the process in which substances interact to form new chemical compounds or alter their molecular structure."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000870
+co:PMD_0000870 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "occurence of electic field"@en ;
+ skos:definition "The occurrence of (an) electric field is a process describing the presence or generation of an electric field in a material or system."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000871
+co:PMD_0000871 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "occurence of magnetic field"@en ;
+ skos:definition "The occurrence of (a) magenetic field is a process describing the presence or generation of a magnetic field in a material or system."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000873
+co:PMD_0000873 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "operator role"@en ;
+ skos:definition "An operator role is a role indicating responsibility for operating equipment or systems, typically in a laboratory or manufacturing setting."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000874
+co:PMD_0000874 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000855 ;
+ rdfs:label "Optisches Mikroskop"@de ,
+ "optical microscope"@en ;
+ skos:definition "A microscope that uses visible light and lenses to magnify and view small objects or details."@en ,
+ "Ein Mikroskop, das sichtbares Licht und Linsen verwendet, um kleine Objekte oder Details zu vergrößern und zu betrachten."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000875
+co:PMD_0000875 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000856 ;
+ rdfs:label "Ein Mikroskopieverfahren, das sichtbares Licht und Linsen verwendet, um eine Probe zu vergrößern und abzubilden, und weit verbreitet zur Untersuchung der Mikrostruktur und Morphologie von Materialien ist."@de ,
+ "Optische Mikroskopie"@de ,
+ "optical microscopy"@en ;
+ skos:definition "A Microscopy Process that uses visible light and lenses to magnify and image a specimen, widely used for examining the microstructure and morphology of materials."@en ;
+ skos:example "An example is Light Microscopy."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000876
+co:PMD_0000876 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000966 ;
+ rdfs:label "Optisches Profilometer"@de ,
+ "optical profilometer"@en ;
+ skos:definition "An Optical Profilometer is a device that measures surface profiles and roughness by analyzing the interference patterns of light reflected from a specimen's surface."@en ,
+ "Ein optisches Profilometer ist ein Gerät, das Oberflächenprofile und Rauheit misst, indem es die Interferenzmuster von Licht analysiert, das von der Oberfläche eines Präparats reflektiert wird."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000877
+co:PMD_0000877 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000005 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0001008
+ ] ;
+ rdfs:label "optical property"@en ;
+ skos:definition "An optical property is a material property representing the characteristics that describe how a material interacts with light, including reflection, refraction, and absorption."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000878
+co:PMD_0000878 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000070 ;
+ rdfs:label "Optische Eigenschaften Analyseverfahren"@de ,
+ "optical property analyzing process"@en ;
+ skos:definition "An assay that assesses the optical characteristics of materials, such as refractive index, absorption, transmission, reflectivity, and luminescence."@en ,
+ "Eine Analyse, die die optischen Eigenschaften von Materialien bewertet, wie z.B. Brechungsindex, Absorption, Transmission, Reflexion und Lumineszenz."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000880
+co:PMD_0000880 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "passing of time"@en ;
+ skos:definition "Passing of time is a process that describes the progression of time, which can influence material aging and property changes."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000881
+co:PMD_0000881 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000030 ;
+ obo:IAO_0000114 obo:IAO_0000123 ;
+ obo:IAO_0000412 "http://openenergy-platform.org/ontology/oeo/oeo-import-edits.owl"^^xsd:anyURI ;
+ rdfs:label "person"@en ;
+ skos:definition "A person is a human being."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ logistics:PMD_0000060 "true"^^xsd:boolean .
+
+[ rdf:type owl:Axiom ;
+ owl:annotatedSource co:PMD_0000881 ;
+ owl:annotatedProperty rdfs:subClassOf ;
+ owl:annotatedTarget obo:BFO_0000030 ;
+ co:PMD_0001032 "https://github.com/materialdigital/core-ontology/issues/102"
+ ] .
+
+[ rdf:type owl:Axiom ;
+ owl:annotatedSource co:PMD_0000881 ;
+ owl:annotatedProperty rdfs:subClassOf ;
+ owl:annotatedTarget obo:BFO_0000030 ;
+ logistics:PMD_0001032 "https://github.com/materialdigital/core-ontology/issues/102"
+ ] .
+
+
+### https://w3id.org/pmd/co/PMD_0000882
+co:PMD_0000882 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000864 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001029 ;
+ owl:someValuesFrom co:PMD_0000548
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001029 ;
+ owl:someValuesFrom co:PMD_0000549
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0000520
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0000522
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0000523
+ ] ;
+ rdfs:label "phase boundary"@en ;
+ skos:definition "A phase boundary is a morphological property denoting the interface between two distinct phases of a material, such as solid-liquid or liquid-gas boundaries."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000883
+co:PMD_0000883 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000550 ;
+ rdfs:label "Photochemische Verfahren"@de ,
+ "photochemical process"@en ;
+ skos:definition "A Changing Properties Of Material process in which light, typically ultraviolet (UV) light is used to trigger chemical reactions. In the printing industry and some additive manufacturing methods, this light exposure is used to harden photoresists or cure inks and resins. The process relies on the specific wavelengths of light to initiate chemical changes in the material."@en ,
+ "Ein Stoffeigenschaft Ändern Prozess, bei dem Licht, in der Regel ultraviolettes (UV) Licht, zur Auslösung chemischer Reaktionen verwendet wird. In der Druckindustrie und bei einigen additiven Fertigungsverfahren wird diese Lichteinwirkung zur Härtung von Fotolacken oder zur Aushärtung von Tinten und Harzen verwendet. Das Verfahren beruht auf den spezifischen Wellenlängen des Lichts, um chemische Veränderungen im Material auszulösen."@de ;
+ skos:example "Exposure"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000884
+co:PMD_0000884 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000931 ;
+ rdfs:label "physical simulation"@en ;
+ skos:definition "a simulating approach describing the use of computational or experimental methods to replicate physical behaviors or processes under defined conditions."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000885
+co:PMD_0000885 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000834 ,
+ [ owl:intersectionOf ( co:PMD_0000834
+ [ rdf:type owl:Restriction ;
+ owl:onProperty [ owl:inverseOf obo:RO_0000059
+ ] ;
+ owl:someValuesFrom co:PMD_0000853
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty [ owl:inverseOf obo:RO_0000059
+ ] ;
+ owl:someValuesFrom co:PMD_0000853
+ ] ;
+ rdfs:label "pole figure"@en ;
+ skos:definition "A pole figure is a map representing a graphical representation of the orientation of crystallographic planes in a polycrystalline sample."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000886
+co:PMD_0000886 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000648 ;
+ rdfs:label "Poliermaschine"@de ,
+ "polishing machine"@en ;
+ skos:definition "A Polishing Machine is a Forming Machine that smooths the surface of a material by rubbing it with a tool, abrasive, or chemical."@en ,
+ "Eine Poliermaschine ist eine Formmaschine, die die Oberfläche eines Materials durch Reiben mit einem Werkzeug, Schleifmittel oder Chemikalien glättet."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000888
+co:PMD_0000888 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000002 ;
+ obo:IAO_0000116 "Classified by morphology."@en ;
+ rdfs:label "polymer"@en ;
+ skos:definition "A polymer is an engineered material that consists of many repeated subunits (monomers) to form long chains. The atoms within a polymer chain are bonded together by covalent bonds. The intermolecular forces between polymer chains are typically represented by Van der Waals forces and hydrogen bonds."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000889
+co:PMD_0000889 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000635 ;
+ rdfs:label "pore growth"@en ;
+ skos:definition "Pore Growth is an evolution of damagfe describing the process by which voids or pores in a material increase in size, often affecting its mechanical and physical properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000890
+co:PMD_0000890 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "connected material entity aggregate"@en ;
+ skos:definition "A material entity aggregate that is a mereological sum of separate material entities, which adhere to one another through chemical bonds or physical junctions that go beyond gravity."@en ;
+ skos:example "the atoms of a molecule, the molecules forming the membrane of a cell, the epidermis in a human body"@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000891
+co:PMD_0000891 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "disconnected material entity aggregate"@en ;
+ skos:definition "A material entity aggregate that is a mereological sum of scattered (i.e. spatially separated) material entities, which do not adhere to one another through chemical bonds or physical junctions but, instead, relate to one another merely on grounds of metric proximity. The material entities are separated from one another through space or through other material entities that do not belong to the group."@en ;
+ skos:example "a heap of stones, a colony of honeybees, a group of synapses, the trees of a forest, the canopy of a forest, the fish of a shoal, a group of commuters on the subway, the patients in a hospital"@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000893
+co:PMD_0000893 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000891 ;
+ rdfs:label "powder"@en ;
+ skos:definition "A powder is a dry, solid disconnected material entity aggragate composed of many very fine particles. These particles can flow freely when shaken or tilted."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000894
+co:PMD_0000894 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000818 ;
+ rdfs:label "Präzisionsdrehmaschine"@de ,
+ "precision lathe"@en ;
+ skos:definition "A Precision Lathe is a Lathe that rotates a workpiece about an axis to perform various operations such as cutting, sanding, drilling, or deformation with extreme accuracy."@en ,
+ "Eine Präzisionsdrehmaschine ist eine Drehmaschine, die ein Werkstück um eine Achse dreht, um verschiedene Operationen wie Schneiden, Schleifen, Bohren oder Verformung mit extremer Genauigkeit durchzuführen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000895
+co:PMD_0000895 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000806 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8593-3"@en ,
+ "Offizielle Definition findet man in: DIN 8593-3"@de ;
+ rdfs:label "Anpressen - Einpressen"@de ,
+ "pressing on - in"@en ;
+ skos:definition "A joining process that involves mechanically pressing one component into or onto another to create a secure fit, thereby establishing a strong mechanical connection."@en ,
+ "Ein Füge Prozess, bei dem ein Bauteil mechanisch in oder auf ein anderes gepresst wird, um eine sichere Passung und damit eine feste mechanische Verbindung herzustellen."@de ;
+ skos:example "Clamps, Brackets, Wedging"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000896
+co:PMD_0000896 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020131 ;
+ owl:disjointWith co:PMD_0000967 ;
+ rdfs:comment "The pressure is commonly measured in Pascals."@en ;
+ rdfs:label "pressure"@en ;
+ skos:definition "The pressure is a thermodynamic quality describing the force exerted per unit area on a material."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000898
+co:PMD_0000898 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000847 ;
+ rdfs:label "Druckmessfunktion"@de ,
+ "pressure measuring function"@en ;
+ skos:definition "A subfunction of measuring performed to determine the pressure of gases or liquids."@en ,
+ "Eine Unterfunktion des Messens, die durchgeführt wird, um den Druck von Gasen oder Flüssigkeiten zu bestimmen."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000899
+co:PMD_0000899 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000833 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 4, 3.1.1 Urformen - Definition"@en ,
+ "Offizielle Definition findet man in: DIN 8580:2003-9 Fertigungsverfahren, Seite 4, 3.1.1 Urformen - Definition"@de ;
+ rdfs:label "Urformen"@de ,
+ "primary shaping"@en ;
+ skos:altLabel "Primary Forming"@en ;
+ skos:definition "A manufacturing process that creates a defined workpiece from shapeless material by producing cohesion, whereby the characteristic properties of the material become visible in the end product."@en ,
+ "Ein Herstellungsprozess, der aus formlosem Stoff durch das Herstellen von Kohäsion ein definiertes Werkstück schafft, wobei die charakteristischen Eigenschaften des Materials im Endprodukt sichtbar werden."@de ;
+ skos:example "Casting, Sintering"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000900
+co:PMD_0000900 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000899 ;
+ rdfs:label "Urformen Durch Additive Fertigung"@de ,
+ "primary shaping by additive manufacturing"@en ;
+ skos:definition "A Primary Shaping process that involves forming materials through additive manufacturing techniques."@en ,
+ "Ein Urformprozess, der das Formen von Materialien durch additive Fertigungstechniken beinhaltet."@de ;
+ skos:example "3D printing of polymer objects."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000901
+co:PMD_0000901 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000899 ;
+ rdfs:label "Urformen Durch Schweissen"@de ,
+ "primary shaping by welding"@en ;
+ skos:definition "A Primary Shaping process that involves forming materials by welding."@en ,
+ "Ein Urformprozess, der das Formen von Materialien durch Schweißen beinhaltet."@de ;
+ skos:example "Fabrication of steel structures using welding techniques."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000902
+co:PMD_0000902 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000899 ;
+ rdfs:label "Urformen Aus Dem Spanförmigen Oder Faserförmigen Zustand"@de ,
+ "primary shaping from the chip or fiber state"@en ;
+ skos:definition "A Primary Shaping process that involves forming materials from a chip or fiber state."@en ,
+ "Ein Urformprozess, der das Formen von Materialien aus einem span- oder faserförmigen Zustand beinhaltet."@de ;
+ skos:example "Compression molding of wood chips into particle boards."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000903
+co:PMD_0000903 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000899 ;
+ rdfs:label "Urformen Aus Dem Gasförmigen Oder Dampfförmigen Zustand"@de ,
+ "primary shaping from the gaseous or vapor state"@en ;
+ skos:definition "A Primary Shaping process that involves forming materials from a gaseous or vapor state."@en ,
+ "Ein Urformprozess, der das Formen von Materialien aus einem gasförmigen oder dampfförmigen Zustand beinhaltet."@de ;
+ skos:example "Chemical vapor deposition (CVD) for thin film production."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000904
+co:PMD_0000904 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000899 ;
+ rdfs:label "Urformen Aus Dem Körnerförmigen Oder Pulverförmigen Zustand"@de ,
+ "primary shaping from the granular or powdered state"@en ;
+ skos:definition "A Primary Shaping process that involves forming materials from a granular or powdered state."@en ,
+ "Ein Urformprozess, der das Formen von Materialien aus einem körnigen oder pulverförmigen Zustand beinhaltet."@de ;
+ skos:example "Powder metallurgy for creating metal parts."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000905
+co:PMD_0000905 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000899 ;
+ rdfs:label "Urformen Aus DemIonisierten Zustand"@de ,
+ "primary shaping from the ionized state"@en ;
+ skos:definition "A Primary Shaping process that involves forming materials from an ionized state."@en ,
+ "Ein Urformprozess, der das Formen von Materialien aus einem ionisierten Zustand beinhaltet."@de ;
+ skos:example "Plasma arc welding."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000906
+co:PMD_0000906 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000899 ;
+ rdfs:label "Urformen Aus Dem Flüssigen Zustand"@de ,
+ "primary shaping from the liquid state"@en ;
+ skos:definition "A Primary Shaping process that involves forming materials from a liquid state."@en ,
+ "Ein Urformprozess, der das Formen von Materialien aus einem flüssigen Zustand beinhaltet."@de ;
+ skos:example "Casting of molten metal into molds."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000907
+co:PMD_0000907 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000899 ;
+ rdfs:label "Urformen Aus Dem Plastischen Zustand"@de ,
+ "primary shaping from the plastic state"@en ;
+ skos:definition "A Primary Shaping process that involves forming materials from a plastic state."@en ,
+ "Ein Urformprozess, der das Formen von Materialien aus einem plastischen Zustand beinhaltet."@de ;
+ skos:example "Thermoforming of plastic sheets."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000908
+co:PMD_0000908 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000899 ;
+ rdfs:label "Urformen Aus Dem Breiigen Oder Pastösen Zustand"@de ,
+ "primary shaping from the pulpy or pasty state"@en ;
+ skos:definition "A Primary Shaping process that involves forming materials through the transition from a pulpy or pasty state into a solid form."@en ,
+ "Ein Urformprozess, der das Formen von Materialien durch den Übergang aus einem breiigen oder pastösen Zustand in eine feste Form beinhaltet."@de ;
+ skos:example "Pottery"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000909
+co:PMD_0000909 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( obo:BFO_0000015
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom co:PMD_0000014
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:label "Projekt"@de ,
+ "project"@en ;
+ skos:definition "A series of goal-orientated (intent) activities and interactions to achieve a specific outcome."@en ,
+ "Eine Reihe von zielorientierten (absichtlichen) Aktivitäten und Interaktionen, um ein bestimmtes Ergebnis zu erzielen."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000910
+co:PMD_0000910 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000773 ;
+ rdfs:label "rebound hardness"@en ;
+ skos:definition "The rebound hardness is representing a measure of a material's hardness based on the height of rebound of a hammer dropped on the material."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000911
+co:PMD_0000911 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000877 ;
+ rdfs:label "reflectivity"@en ;
+ skos:definition "The reflectivity is an optical property that describes the proportion of incident light or radiation that a material reflects."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000913
+co:PMD_0000913 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000594 ;
+ rdfs:label "Reinforcement Learning"@de ,
+ "reinforcement learning"@en ;
+ skos:definition "A Deep Learning process that involves training models to make sequences of decisions by rewarding desired actions and punishing undesired ones."@en ,
+ "Ein Deep Learning Prozess, der Modelle darin trainiert, Abfolgen von Entscheidungen zu treffen, indem gewünschte Aktionen belohnt und unerwünschte bestraft werden."@de ;
+ skos:example "Using RL to optimize the process parameters in additive manufacturing (3D printing) to achieve the desired material properties and reduce defects."@en ;
+ co:PMD_0050117 "RL" .
+
+
+### https://w3id.org/pmd/co/PMD_0000914
+co:PMD_0000914 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000927 ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8590"@en ,
+ "Offizielle Definition findet man in: DIN 8590"@de ;
+ rdfs:label "Abtragen"@de ,
+ "removing"@en ;
+ skos:definition "A Seperating process that involves removing material through thermical, chemical and electrochemical methods."@en ,
+ "Ein Trennprozess, bei dem Material durch thermische, chemische und elektrochemische Methoden abgetragen wird."@de ;
+ skos:example "Electrical Discharge Machining, Thermal Ablation"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000915
+co:PMD_0000915 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ owl:disjointWith co:PMD_0000950 ;
+ rdfs:label "responding process"@en ;
+ skos:definition "The responding process is a process describing the reaction of a material or system to an applied stimulus."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000916
+co:PMD_0000916 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Rheologische Eigenschaften Analyseverfahren"@de ,
+ "rheological property analyzing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that determines the flow and deformation behavior of materials under applied forces, including viscosity, elasticity, and plasticity, often through rheometry and viscometry techniques."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das das Fließ- und Deformationsverhalten von Materialien unter Einwirkung von Kräften bestimmt, einschließlich Viskosität, Elastizität und Plastizität, oft durch Rheometrie- und Viskosimetrie-Techniken."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000917
+co:PMD_0000917 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Rheometer"@de ,
+ "rheometer"@en ;
+ skos:definition "A device used to measure the flow and deformation properties of materials, particularly liquids and semi-solids."@en ,
+ "Ein Gerät zur Messung der Fließ- und Verformungseigenschaften von Materialien, insbesondere von Flüssigkeiten und Halbfeststoffen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000918
+co:PMD_0000918 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000916 ;
+ rdfs:label "Rheometry"@de ,
+ "rheometry"@en ;
+ skos:definition "A Rheological Property Analyzing Process that measures the flow and deformation behavior of materials, including complex fluids and soft solids, to provide comprehensive data on viscoelastic properties using rheometers."@en ,
+ "Ein Rheologisches Eigenschaften Analyseverfahren, das das Fließ- und Verformungsverhalten von Materialien misst, einschließlich komplexer Flüssigkeiten und weicher Feststoffe, um umfassende Daten zu viskoelastischen Eigenschaften unter Verwendung von Rheometern zu liefern."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000919
+co:PMD_0000919 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ obo:IAO_0000116 """ANMERKUNG: Ein Sample ist ein Teil (oder das Ganze) eines Probestücks. Das Probestück wird bei der Herstellung eines industriell verwendeten Produktes gezielt für die Überprüfung des Produkteigenschaften bereitgestellt. CAVE: Diese Anmerkung beschreibt das Objekt, welches die Rolle, die durch diese owl:Class definiert wird, realisiert.
+ANMERKUNG: Die exakte Wortwahl der EN 10021 wurde verallgemeinert."""@de ,
+ "In certain cases, the sample can be the specimen or the test piece itself."@en ,
+ "Mitunter kann der Probenabschnitt (Sample) unmittelbar als Prüfling (Specimen) oder Probe dienen."@de ,
+ """NOTE: A Sample is a part (or the whole) of a Sample product. The Sample product is specifically produced portion of an industrially used and traded product for the purpose of determining the properties/quality of the product. CAVE: This note describes the object, that realizes the role defined by this owl:Class.
+NOTE: The wording used in EN 10021 was generalized."""@en ;
+ obo:IAO_0000119 "EN 10021:2006-12 (European standardization committee: CEN/TC 459/SC 12/WG 4)"@en ;
+ rdfs:label "Probe-Rolle"@de ,
+ "sample role"@en ;
+ skos:definition "Role of an object, which is a quantity of material taken from a (sample) product, that is sufficient for the purpose of obtaining test pieces."@en ,
+ "Rolle eines Objektes, das eine von einem Probestück/Material entnommene Menge ist, welche (vom Umfang her) geeignet ist Proben (Test Pieces) herzustellen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000920
+co:PMD_0000920 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001998 ;
+ rdfs:label "saw"@en ;
+ skos:definition "A saw is a device used to cut materials, especially wood. It usually consists of a thin, sharp metal blade fitted with teeth and a handle or frame that allows the user to guide the saw. There are different types of saws designed for different applications, including handsaws, circular saws, hacksaws and band saws. Each type of saw is designed for specific tasks and materials to enable efficient cutting."@en ,
+ "Eine Säge ist ein Gerät, das zum Zerteilen von Materialien, insbesondere von Holz, verwendet wird. Sie besteht in der Regel aus einem dünnen, scharfen Metallblatt, das mit Zähnen versehen ist, und einem Griff oder Rahmen, der es dem Benutzer ermöglicht, die Säge zu führen. Es gibt verschiedene Arten von Sägen, die für verschiedene Anwendungen konzipiert sind, darunter Handsägen, Kreissägen, Bügelsägen und Bandsägen. Jede Art von Säge ist auf bestimmte Aufgaben und Materialien abgestimmt, um effizientes Schneiden zu ermöglichen."@de ,
+ "Säge"@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000922
+co:PMD_0000922 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000855 ;
+ rdfs:label "Rasterelektronenmikroskop"@de ,
+ "scanning electron microscope"@en ;
+ skos:definition "A Scanning Electron Microscope (SEM) is a Measuring Device that produces high-resolution images of a sample surface by scanning it with a focused beam of electrons."@en ,
+ "Ein Rasterelektronenmikroskop (REM) ist ein Messgerät, das hochauflösende Bilder einer Probenoberfläche erzeugt, indem es sie mit einem fokussierten Elektronenstrahl abtastet."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000923
+co:PMD_0000923 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001998 ;
+ rdfs:label "Schere"@de ,
+ "pair of scissors"@en ;
+ skos:definition "A tool with two sharp blades that are brought together by pressure on the handles to cut paper, fabric, or other materials."@en ,
+ "Ein Werkzeug mit zwei scharfen Klingen, die durch Druck auf die Griffe zusammengeführt werden, um Papier, Stoff oder andere Materialien zu schneiden."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000924
+co:PMD_0000924 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000773 ;
+ obo:IAO_0000119 "A measure of a material's resistance to deformation or scratching by a harder material." ;
+ rdfs:label "scratch hardness"@en ;
+ skos:definition "The scratch hardness is a hardness representing a measure of a material's resistance to deformation or scratching by a harder material."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000925
+co:PMD_0000925 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Kratzprüfmaschine"@de ,
+ "scratch testing machine"@en ;
+ skos:definition "A device used to test the scratch resistance of materials by applying a scratching force."@en ,
+ "Ein Gerät zur Prüfung der Kratzfestigkeit von Materialien durch Anwendung einer Kratzkraft."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000926
+co:PMD_0000926 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Ritzhärteprüfverfahren"@de ,
+ "scratch testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that evaluates a material's resistance to scratching, measuring hardness and adhesion properties."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das den Widerstand eines Materials gegen Kratzer bewertet und seine Härte- und Haftungseigenschaften misst."@de ;
+ skos:example "Scratch testing of a coated surface to determine the adhesion quality of the coating to the substrate."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000927
+co:PMD_0000927 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0000833
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom co:PMD_0000592
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0000833 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000055 ;
+ owl:someValuesFrom co:PMD_0000592
+ ] ;
+ obo:IAO_0000119 "Official definition can be found in: DIN 8580:2003-9 Fertigungsverfahren, Page 4, 3.1.3 Trennen - Definition"@en ;
+ rdfs:label "Trennen"@de ,
+ "separating"@en ;
+ skos:definition "A manufacturing process in which the bond between objects is broken, resulting in a partial or complete reduction in cohesion."@en ,
+ "Ein Herstellungsprozess, bei dem die Bindung zwischen Objekten aufgehoben wird, was zu einer teilweisen oder vollständigen Verringerung der Kohäsion führt."@de ;
+ skos:example "Disassembling, Removal"@en ;
+ co:PMD_0050117 "Cutting"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000928
+co:PMD_0000928 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Schubprüfmaschine"@de ,
+ "shear testing machine"@en ;
+ skos:definition "A device used to measure the shear strength of materials by applying a shearing force and measuring deformation."@en ,
+ "Ein Gerät zur Messung der Scherfestigkeit von Materialien durch Anwendung einer Schubkraft und Messung der Verformung."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000929
+co:PMD_0000929 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Schubprüfverfahren"@de ,
+ "shear testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that measures a material's response to shear forces, determining its shear strength and shear modulus."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das die Reaktion eines Materials auf Scherkräfte misst und seine Scherfestigkeit und seinen Schermodul bestimmt."@de ;
+ skos:example "Shear testing of rivets to ensure they can hold structural components together under lateral loads."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000931
+co:PMD_0000931 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000104 ;
+ rdfs:label "simulation method specification"@en ;
+ skos:definition "A plan specification that specifies the method of creating a computational or physical model to replicate the behavior of a material or system under specific conditions."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000932
+co:PMD_0000932 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000582 ;
+ rdfs:label "Simulationsknoten"@de ,
+ "simulation device"@en ;
+ skos:definition "A processing node that implements foo as well as consumes and creates simulation objects and parameters."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000933
+co:PMD_0000933 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000583 ;
+ rdfs:label "Simulationsprozess"@de ,
+ "simulation process"@en ;
+ skos:definition "A Computing Process that models the behavior of a system over time using mathematical or computational techniques."@en ,
+ "Ein Datenverarbeitungsprozess, der das Verhalten eines Systems im Laufe der Zeit mit mathematischen oder rechnerischen Techniken modelliert"@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000934
+co:PMD_0000934 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000550 ;
+ obo:IAO_0000119 "https://industrylist.com/glossar/stoffeigenschaften-aendern/sintern/"@de ;
+ rdfs:label "Sintern"@de ,
+ "sintering"@en ;
+ skos:definition "A changing properties of materials process in which granular and powdery materials, which have already been shaped in the first step, are mixed and combined and compacted by heating."@en ,
+ "Ein Stoffeigenschaftsänderungsprozess, bei dem körnige und pulverförmige Stoffe, welche im ersten Schritt bereits in Form gebracht wurden, vermischt und durch Erwärmung verbunden und verdichtet werden."@de ;
+ skos:example "Metal Powder Sintering, Ceramic Sintering"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000935
+co:PMD_0000935 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000558 ;
+ rdfs:label "Formatkreissäge"@de ,
+ "sizing saw"@en ;
+ skos:definition "A sizing saw is an industrial circular saw designed for large cutting formats in woodworking and furniture production."@en ,
+ "Eine Formatkreissäge ist eine industrielle Kreissäge, die für große Schnittformate in der Holzverarbeitung und Möbelherstellung ausgelegt ist."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000936
+co:PMD_0000936 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Schlitten"@de ,
+ "slide"@en ;
+ skos:definition "A moving piece that is guided by a part along its path, providing the mount for objects."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000937
+co:PMD_0000937 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Lötgerät"@de ,
+ "soldering device"@en ;
+ skos:definition "A device used for joining materials together by melting and applying a filler metal."@en ,
+ "Ein Gerät zum Verbinden von Materialien durch Schmelzen und Auftragen eines Füllmetalls."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000939
+co:PMD_0000939 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000812 ;
+ rdfs:label "Lötfunktion"@de ,
+ "soldering function"@en ;
+ skos:definition "A subfunction of joining performed to connect materials using soldering techniques."@en ,
+ "Eine Unterfunktion des Verbindens, die durchgeführt wird, um Materialien durch Löttechniken zu verbinden."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000940
+co:PMD_0000940 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Abplatzprüfmaschine"@de ,
+ "spalling testing machine"@en ;
+ skos:definition "A device used to test the resistance of materials to spalling or flaking under various conditions."@en ,
+ "Ein Gerät zur Prüfung der Widerstandsfähigkeit von Materialien gegenüber Abplatzungen oder Abblätterungen unter verschiedenen Bedingungen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000941
+co:PMD_0000941 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Abplatzprüfverfahren"@de ,
+ "spalling testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that evaluates the resistance of a material to surface spalling or flaking under high impact or thermal stresses."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das die Widerstandsfähigkeit eines Materials gegen Oberflächenabplatzungen oder Abblättern unter hohen Stoß- oder thermischen Belastungen bewertet."@de ;
+ skos:example "Spalling testing of refractory bricks used in furnaces to ensure their longevity and performance under extreme conditions."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000942
+co:PMD_0000942 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020131 ;
+ rdfs:label "specific surface area"@en ;
+ skos:definition "The specific surface area is a morphologic quality describing the total surface area of a material per unit of mass or volume."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000944
+co:PMD_0000944 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Spektrometer"@de ,
+ "spectrometer"@en ;
+ skos:definition "A Spectrometer is a Measuring Device that measures the properties of light over a specific portion of the electromagnetic spectrum, typically to analyze the composition of a material."@en ,
+ "Ein Spektrometer ist ein Messgerät, das die Eigenschaften von Licht über einen bestimmten Teil des elektromagnetischen Spektrums misst, typischerweise zur Analyse der Zusammensetzung eines Materials."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000945
+co:PMD_0000945 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000957 ;
+ rdfs:label "Spektroskopie Verfahren"@de ,
+ "spectroscopy process"@en ;
+ skos:definition "A Structural Property Analyzing Process that measures the interaction of electromagnetic radiation with matter to determine e.g. the composition, structure, and other properties of materials."@en ,
+ "Ein Struktur Eigenschaften Analyseverfahren, das die Wechselwirkung von elektromagnetischer Strahlung mit Materie misst, um die Zusammensetzung, Struktur und physikalischen Eigenschaften von Materialien zu bestimmen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000946
+co:PMD_0000946 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000501 ;
+ owl:disjointWith co:PMD_0000992 ;
+ rdfs:label "spectrum"@en ;
+ skos:definition "A spectrum is a 1-D information content entity that describes the range of wavelengths or frequencies of a physical property, often used in reference to light, sound, or electromagnetic radiation."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000947
+co:PMD_0000947 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000506 ;
+ rdfs:label "speed of sound"@en ;
+ skos:definition "The speed of sound is an accoustic property representing the rate at which sound waves travel through a material, dependent on its density and elastic properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000949
+co:PMD_0000949 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000005 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001029 ;
+ owl:someValuesFrom co:PMD_0000596
+ ] ;
+ owl:disjointWith co:PMD_0000952 ;
+ rdfs:label "stiffness"@en ;
+ skos:definition "The stiffness is a mechanical property describing the resistance of a material to deformation under an applied force."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000950
+co:PMD_0000950 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "stimulating process"@en ;
+ skos:definition "The stimulating process is a process describing the application of an external influence, such as force, heat, or radiation, to study material response."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000951
+co:PMD_0000951 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000931 ;
+ rdfs:label "stochastic simulation"@en ;
+ skos:definition "a simulation approach that incorporates random variables to model probabilistic systems or processes."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000952
+co:PMD_0000952 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000848 ;
+ rdfs:label "strength"@en ;
+ skos:definition "The strength is a mechanical property describing the maximum stress a material can withstand before failure."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000953
+co:PMD_0000953 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000635 ;
+ rdfs:label "structural and chemical decay"@en ;
+ skos:definition "The structural and chemical decay is an evolution of damage describing the deterioration of a material's structure and composition over time due to environmental or operational conditions."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000955
+co:PMD_0000955 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000654 ,
+ [ owl:intersectionOf ( co:PMD_0000654
+ [ rdf:type owl:Restriction ;
+ owl:onProperty [ owl:inverseOf co:PMD_0020005
+ ] ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000030
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000085 ;
+ owl:someValuesFrom obo:OBI_0000379
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty [ owl:inverseOf co:PMD_0020005
+ ] ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000030
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000085 ;
+ owl:someValuesFrom obo:OBI_0000379
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000116 "Classified by the role in a system."@en ;
+ rdfs:label "structural material"@en ;
+ skos:definition "A Structural Material S is an Engineered Material which has the disposition to be used for an Object O (O consists of S) and O's function is primarily mechanical load carrying."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000956
+co:PMD_0000956 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000933 ;
+ rdfs:label "Strukturoptimierungssimulation"@de ,
+ "structural optimization simulation"@en ;
+ skos:definition "A Simulation Process that aims to find the most stable structure of a molecular system by minimizing its energy."@en ,
+ "Ein Simulationsprozess, der darauf abzielt, die stabilste Struktur eines molekularen Systems durch Minimierung seiner Energie zu finden."@de ;
+ skos:example "Optimizing the atomic structure of a catalyst to enhance its performance."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000957
+co:PMD_0000957 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000070 ;
+ rdfs:label "Struktur Eigenschaften Analyseverfahren"@de ,
+ "structural property analyzing process"@en ;
+ skos:definition "An assay that examines the external and internal structure and morphology of materials, including the arrangement of atoms, crystals, grains, and phases, often using techniques like microscopy and diffraction."@en ,
+ "Eine Analyse, die die äußere und innere Struktur und Morphologie von Materialien untersucht, einschließlich der Anordnung von Atomen, Kristallen, Körnern und Phasen, oft unter Verwendung von Techniken wie Mikroskopie und Beugung."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000959
+co:PMD_0000959 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000603 ;
+ rdfs:label "Einstellungsgegenstandsrolle"@de ,
+ "subject of adjustment role"@en ;
+ skos:definition "Role of a device that is being adjusted. The role is realized in an adjustment process."@en ,
+ "Rolle eines Gerätes (Einstellungsgegenstand), das eingestellt wird. Die Rolle wird ein einem Einstellungsprozess realisiert."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000960
+co:PMD_0000960 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000603 ;
+ rdfs:label "Kalibrierungsgegenstandsrolle"@de ,
+ "subject of calibration role"@en ;
+ skos:definition "Role of a device that is being calibrated. The role is realized in a calibration process."@en ,
+ "Rolle eines Gerätes (Kalibrierungsgegenstand), das kalibriert wird. Die Rolle wird ein einem Kalibrierungsprozess realisiert."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000961
+co:PMD_0000961 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000882 ;
+ rdfs:label "sublimation point"@en ;
+ skos:definition "The sublimation point is a phase boundary that describes the temperature at which a material transitions directly from a solid to a gaseous state without passing through the liquid phase."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000962
+co:PMD_0000962 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000556 ;
+ rdfs:label "supercritical fluid chromatography process"@en ,
+ "Überkritische Fluidchromatographie Verfahren"@de ;
+ skos:definition "A Chromatography Process that utilizes a supercritical fluid as the mobile phase to separate components, offering higher speed and efficiency compared to traditional methods."@en ,
+ "Ein Chromatographieverfahren, das ein überkritisches Fluid als mobile Phase verwendet, um Komponenten zu trennen, und im Vergleich zu traditionellen Methoden eine höhere Geschwindigkeit und Effizienz bietet."@de ;
+ skos:example "Supercritical fluid chromatography is used to separate and analyze complex mixtures of polymers and plastics."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000963
+co:PMD_0000963 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000557 ;
+ rdfs:label "supercritical fluid chromatography system"@en ,
+ "Überkritisches Fluid-Chromatographiesystem"@de ;
+ skos:definition "A device used for separating and analyzing compounds using supercritical fluids as the mobile phase in chromatography."@en ,
+ "Ein Gerät zur Trennung und Analyse von Verbindungen unter Verwendung von überkritischen Flüssigkeiten als mobile Phase in der Chromatographie."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000964
+co:PMD_0000964 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000821 ;
+ rdfs:label "supervised learning"@de ,
+ "supervised machine learning" ;
+ skos:definition "A Machine Learning process that learns a function mapping from input data to labeled output data."@en ,
+ "Ein Maschinelles Lernen Prozess, der eine Funktion erlernt, die Eingabedaten auf beschriftete Ausgabedaten abbildet."@de ;
+ skos:example "Training a model to predict the tensile strength of a material based on its composition and manufacturing process parameters. This involves using a dataset where the tensile strength is already known (labeled data) to train the model."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000965
+co:PMD_0000965 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000024 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000050 ;
+ owl:allValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000027
+ obo:BFO_0000030
+ )
+ ]
+ ] ;
+ rdfs:label "surface layer (fiat object part)"@en ;
+ skos:definition "A surface layer (fiat object part) is a fiat object part that is part of only object. The surface layer is the three dimensional region defining the outermost layer of an object, where surface-interactions with other material entities occur. What is considered as the surface is thus defined by the interaction process."@en ;
+ skos:example "When considering optical properties of a surface layer (fiat object part) of a polished piece of metal we likely consider a different three dimensional spatial region than when considering the scratch hardness properties of the same polished piece of metal."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000966
+co:PMD_0000966 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Oberflächenprofilometer"@de ,
+ "surface profilometer"@en ;
+ skos:definition "A device used to measure the surface profile and texture of materials."@en ,
+ "Ein Gerät zur Messung des Oberflächenprofils und der Textur von Materialien."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000967
+co:PMD_0000967 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020131 ;
+ rdfs:comment "The concept refers to an absolute tempeature, not to be mistaken with temperature difference."@en ,
+ "To express that an object has a temperature, the property 'intensive bearer of' can be used. It implies a chain of: object consists of some portion of matter and portion of matter bearer of some temperature."@en ;
+ rdfs:label "temperature"@en ;
+ skos:definition "The temperature is a fundamental intensive quality representing the average atomic or molcular movement or vibration of a portion of matter."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000968
+co:PMD_0000968 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Temperaturänderungswerkzeug"@de ,
+ "temperature change device"@en ;
+ skos:definition "A device that is used for the alteration and adjustment of the temperature of a tangible object or the environment, e.g., a furnace and cooling media."@en ,
+ "Diese Entität beschreibt allgemein jedes Werkzeug, das zur Änderung und Einstellung der Temperatur eines materiellen Objekts oder der Umgebung verwendet wird, z. B. einen Ofen und Kühlmittel."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000969
+co:PMD_0000969 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Temperaturänderungsfunktion"@de ,
+ "temperature change function"@en ;
+ skos:definition "A subfunction of heat treatment performed to induce changes in temperature to alter material properties."@en ,
+ "Eine Unterfunktion der Wärmebehandlung, die durchgeführt wird, um Temperaturänderungen hervorzurufen, um die Materialeigenschaften zu verändern."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000971
+co:PMD_0000971 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000847 ;
+ rdfs:label "Temperaturmessfunktion"@de ,
+ "temperature measuring function"@en ;
+ skos:definition "A subfunction of measuring performed to determine the temperature of an object or environment."@en ,
+ "Eine Unterfunktion des Messens, die durchgeführt wird, um die Temperatur eines Objekts oder einer Umgebung zu bestimmen."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000972
+co:PMD_0000972 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000005 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0000880
+ ] ;
+ rdfs:label "temporal property"@en ;
+ skos:definition "A temporal property is a material property that represents attributes related to the time-dependent behavior of a material or process."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000973
+co:PMD_0000973 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Zugprüfmaschine"@de ,
+ "tensile testing machine"@en ;
+ skos:definition "A device used to test the tensile strength and elongation of materials by applying a stretching force."@en ,
+ "Ein Gerät zur Prüfung der Zugfestigkeit und Dehnung von Materialien durch Anwendung einer Dehnkraft."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000974
+co:PMD_0000974 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Zugprüfverfahren"@de ,
+ "tensile testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that determines a material's response to tensile forces, measuring its tensile strength, elongation, and Young's modulus."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das die Reaktion eines Materials auf Zugkräfte bestimmt und seine Zugfestigkeit, Dehnung und seinen Elastizitätsmodul misst."@de ;
+ skos:example "Tensile testing of polymer films to ensure they can stretch without breaking in packaging applications"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000975
+co:PMD_0000975 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ obo:IAO_0000116 """ANMERKUNG: Ein Test Piece ist ein Teilstück (potenziell alles) eines Specimens, welches die Bedingungen erfüllt, die durch ein anzuwendendes Prüfverfahren gestellt werden. Ein Specimen erfüllt diese Anforderungen im Allgemeinen erst nach weiterer Bearbeitung. CAVE: Diese Anmerkung beschreibt das Objekt, welches die Rolle, die durch diese owl:Class definiert wird, realisiert.
+ANMERKUNG: Die exakte Wortwahl der EN 10021 wurde verallgemeinert."""@de ,
+ "In certain cases, the test piece can be the sample or the specimen itself."@en ,
+ "Mitunter kann der Probenabschnitt (Sample) oder der Prüfling (Specimen) unmittelbar als Probe dienen."@de ,
+ """NOTE: A Test Piece is a piece that is taken from a specimen (potentially the whole specimen), which fulfills the requirements, that are set by the test procedure in which the test piece is about to be used. A specimen fulfills this requierements generally speaking only after further treatment/processing. CAVE: This note describes the object, that realizes the role defined by this owl:Class.
+NOTE: The wording used in EN 10021 was generalized."""@en ;
+ obo:IAO_0000119 "EN 10021:2006-12 (European standardization committee: CEN/TC 459/SC 12/WG 4)"@en ;
+ rdfs:label "Proben-Rolle"@de ,
+ "test piece role"@en ;
+ skos:definition "Rolle eines Objekts, welches eine Probe ist, die aus einem Prüfling (Specimen) oder Probenabschnitt (Sample) entnommen wurde; die Probe hat festgelegte Dimensionen, kann maschinell bearbeitet sein, wurde in einen für die Verwendung in einem Prüfverfahren notwendigen Zustand gebracht"@de ,
+ "role of object which is a part taken from a specimen or sample; the part has specified dimensions, is machined or un-machined, brought to a required condition for submission to a given test"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000976
+co:PMD_0000976 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "Testfunktion"@de ,
+ "testing function"@en ;
+ skos:definition "A function performed to assess or evaluate the properties, performance, or quality of materials or devices."@en ,
+ "Eine Funktion, die durchgeführt wird, um die Eigenschaften, Leistung oder Qualität von Materialien oder Geräten zu bewerten."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000977
+co:PMD_0000977 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000806 ;
+ obo:IAO_0000119 "Keine offizielle Definition in DIN"@de ,
+ "No offical definition in DIN"@en ;
+ rdfs:label "Textiles Fügen"@de ,
+ "textile joining"@en ;
+ skos:definition "A joining process that involves connecting textile materials."@en ,
+ "Ein Füge Prozess, bei dem textile Materialien miteinander verbunden werden."@de ;
+ skos:example "Sewing, Stapling"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000978
+co:PMD_0000978 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000981 ;
+ rdfs:label "thermal conductivity"@en ;
+ skos:definition "The thermal conductivity is a thermal property describing the ability of a material to conduct heat."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000979
+co:PMD_0000979 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000982 ;
+ rdfs:label "Wärmeleitfähigkeitsmessverfahren"@de ,
+ "thermal conductivity measurement process"@en ;
+ skos:definition "A Thermal Property Analyzing Process that measures the thermal conductivity of a material, determining its ability to conduct heat."@en ,
+ "Ein Thermische Eigenschaften Analyseverfahren, das die Wärmeleitfähigkeit eines Materials misst und dessen Fähigkeit bestimmt, Wärme zu leiten."@de ;
+ skos:example "Measuring the thermal conductivity of a composite material used in aerospace applications to ensure efficient heat dissipation."@en ;
+ co:PMD_0050117 "TCMP"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000980
+co:PMD_0000980 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000847 ;
+ rdfs:label "Wärmeleitfähigkeitsmessfunktion"@de ,
+ "thermal conductivity measuring function"@en ;
+ skos:definition "A function that inheres in devices used to measure the thermal conductivity of materials."@en ,
+ "Eine Funktion, die in Geräten besteht, die zur Messung der Wärmeleitfähigkeit von Materialien verwendet werden."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000981
+co:PMD_0000981 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000005 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0001030 ;
+ owl:someValuesFrom co:PMD_0000520
+ ] ;
+ rdfs:label "thermal property"@en ;
+ skos:definition "A thermal property is a material property representing attributes of a material that describe its behavior under temperature changes, such as thermal conductivity and expansion."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000982
+co:PMD_0000982 rdf:type owl:Class ;
+ rdfs:subClassOf obo:OBI_0000070 ;
+ rdfs:label "Thermische Eigenschaften Analyseverfahren"@de ,
+ "thermal property analyzing process"@en ;
+ skos:definition "An assay that measures the thermal behavior of materials, including heat capacity, thermal conductivity, thermal expansion, and phase transitions in response to temperature changes."@en ,
+ "Eine Analyse, die das thermische Verhalten von Materialien misst, einschließlich Wärmekapazität, Wärmeleitfähigkeit, thermischer Ausdehnung und Phasenübergängen in Reaktion auf Temperaturänderungen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000983
+co:PMD_0000983 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ obo:IAO_0000119 "“Thermocouple.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/thermocouple. Accessed 13 Jan. 2023."@en ;
+ rdfs:label "Thermoelement"@de ,
+ "thermocouple"@en ;
+ skos:definition "A device for measuring temperature in which a pair of wires of dissimilar metals (such as copper and iron) are joined and the free ends of the wires are connected to an instrument (such as a voltmeter) that measures the difference in potential created at the junction of the two metals."@en ,
+ "Ein Gerät zur Temperaturmessung, bei dem ein Paar Drähte aus unterschiedlichen Metallen (z. B. Kupfer und Eisen) verbunden und die freien Enden der Drähte mit einem Instrument (z. B. einem Voltmeter) verbunden werden, das die an der Verbindungsstelle erzeugte der beiden Metalle Potentialdifferenz misst ."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000984
+co:PMD_0000984 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000968 ;
+ rdfs:label "Thermocycler"@de ,
+ "thermocycler"@en ;
+ skos:definition "A Thermocycler is a Temperature Change Device that rapidly changes the temperature of a sample in cycles, often used in polymerase chain reactions (PCR)."@en ,
+ "Ein Thermocycler ist ein Temperaturwechselgerät, das die Temperatur einer Probe in Zyklen schnell ändert, oft verwendet in der Polymerase-Kettenreaktion (PCR)."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000986
+co:PMD_0000986 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000982 ;
+ rdfs:label "Thermogravimetrische Analyse-Verfahren"@de ,
+ "thermogravimetric analysis process"@en ;
+ skos:definition "A Thermal Property Analyzing Process that measures the change in mass of a material as a function of temperature or time in a controlled atmosphere, determining its thermal stability and composition."@en ,
+ "Ein Thermische Eigenschaften Analyseverfahren, das die Massenänderung eines Materials in Abhängigkeit von Temperatur oder Zeit in einer kontrollierten Atmosphäre misst und dessen thermische Stabilität und Zusammensetzung bestimmt."@de ;
+ skos:example "Thermogravimetric analysis of a metal alloy to determine its oxidation stability at high temperatures."@en ;
+ co:PMD_0050117 "TGA"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000987
+co:PMD_0000987 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ,
+ co:PMD_0000982 ;
+ rdfs:label "Thermomechanische Analyse-Verfahren"@de ,
+ "thermomechanical analysis process"@en ;
+ skos:definition "A Thermoanalytical Process that measures the dimensional changes of a material as a function of temperature, determining its coefficient of thermal expansion."@en ,
+ "Ein Thermoanalytisches Verfahren, das die Maßänderungen eines Materials als Funktion der Temperatur misst und seinen thermischen Ausdehnungskoeffizienten bestimmt."@de ;
+ skos:example "Thermomechanical analysis of a polymer to ensure it maintains dimensional stability under varying temperature conditions."@en ;
+ co:PMD_0050117 "TMA"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000988
+co:PMD_0000988 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000550 ;
+ rdfs:label "Thermomechanisches Behandeln"@de ,
+ "thermomechanical treatment"@en ;
+ skos:definition "A Changing Properties Of Material process that involves the simultaneous application of heat and mechanical stresses. Thermomechanical treatment is utilized to alter and improve the material's microstructure and mechanical properties."@en ,
+ "Ein Stoffeigenschaft Ändern Prozess, der die gleichzeitige Anwendung von Wärme und mechanischen Spannungen beinhaltet. Die thermomechanische Behandlung wird eingesetzt, um die Mikrostruktur und die mechanischen Eigenschaften des Materials zu verändern und zu verbessern."@de ;
+ skos:example "Hot Isostatic Pressing"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000989
+co:PMD_0000989 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000556 ;
+ rdfs:label "Dünnschichtchromatographie Verfahren"@de ,
+ "thin-layer chromatography process"@en ;
+ skos:definition "A Chromatography Process that separates non-volatile mixtures by applying a sample on a thin layer of an adsorbent material and using a solvent to move the components up the layer based on their affinities."@en ,
+ "Ein Chromatographieverfahren, das nichtflüchtige Gemische trennt, indem eine Probe auf eine dünne Schicht eines Adsorptionsmaterials aufgetragen und ein Lösungsmittel verwendet wird, um die Komponenten basierend auf ihren Affinitäten entlang der Schicht zu bewegen."@de ;
+ skos:example "Using thin-layer chromatography to analyze the composition of a polymer mixture to identify different components."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000990
+co:PMD_0000990 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000557 ;
+ rdfs:label "Dünnschichtchromatographiesystem"@de ,
+ "thin layer chromatography system"@en ;
+ skos:definition "A device used for separating compounds in a sample using a thin layer of adsorbent material on a plate."@en ,
+ "Ein Gerät zur Trennung von Verbindungen in einer Probe unter Verwendung einer dünnen Schicht adsorbierenden Materials auf einer Platte."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000991
+co:PMD_0000991 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000508 ;
+ rdfs:label "3D-Drucker"@de ,
+ "3d printer"@en ;
+ skos:definition "A 3D Printer is an Additive Manufacturing Device that creates three-dimensional objects by building them layer by layer from a digital model."@en ,
+ "Ein 3D-Drucker ist ein Gerät für die additive Fertigung, das dreidimensionale Objekte durch schichtweises Aufbauen aus einem digitalen Modell erzeugt."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000992
+co:PMD_0000992 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000501 ;
+ rdfs:label "time series"@en ;
+ skos:definition "A time series is a 1-D information content entity defined by a sequence of data points collected or recorded at successive time intervals, used for analyzing temporal properties or trends."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000994
+co:PMD_0000994 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Torsionsprüfmaschine"@de ,
+ "torsion testing machine"@en ;
+ skos:definition "A device used to test the resistance of materials to twisting forces by applying a torque and measuring the resulting deformation."@en ,
+ "Ein Gerät zur Prüfung des Widerstands von Materialien gegenüber Drehkräften durch Anwendung eines Drehmoments und Messung der resultierenden Verformung."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000995
+co:PMD_0000995 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Torsionsprüfverfahren"@de ,
+ "torsion testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that assesses a material's behavior when subjected to twisting forces, determining its torsional strength and shear modulus."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahren, das das Verhalten eines Materials bei Torsionskräften bewertet und seine Torsionsfestigkeit und Schermodul bestimmt."@de ;
+ skos:example "Evaluating the torsional strength of a metal rod used in a mechanical shaft to prevent failure under rotational loads."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0000996
+co:PMD_0000996 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000882 ;
+ rdfs:label "triple point"@en ;
+ skos:definition "The triple point is a phase boundary described by the specific temperature and pressure at which three phases of a substance coexist in equilibrium."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0000997
+co:PMD_0000997 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000561 ;
+ rdfs:label "Ultraschallreiniger"@de ,
+ "ultrasonic cleaner"@en ;
+ skos:definition "A device that uses ultrasound and a cleaning solvent to clean delicate or complex items."@en ,
+ "An Ultrasonic Cleaner is a Cleaning Device that uses high-frequency sound waves and a cleaning solvent to remove contaminants from delicate or complex items."@en ,
+ "Ein Gerät, das Ultraschall und ein Reinigungsmittel verwendet, um empfindliche oder komplexe Gegenstände zu reinigen."@de ,
+ "Ein Ultraschallreiniger ist ein Reinigungsgerät, das Hochfrequenzschallwellen und ein Reinigungsmittel verwendet, um Verunreinigungen von empfindlichen oder komplexen Gegenständen zu entfernen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0000998
+co:PMD_0000998 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Ultraviolett-Visible-Spektrophotometer"@de ,
+ "ultraviolet visible spectrophotometer"@en ;
+ skos:definition "A device used to measure the absorbance of a sample in the ultraviolet and visible regions of the electromagnetic spectrum."@en ,
+ "Ein Gerät zur Messung der Absorption einer Probe im ultravioletten und sichtbaren Bereich des elektromagnetischen Spektrums."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001003
+co:PMD_0001003 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000821 ;
+ rdfs:label "Unsupervised Learning"@de ,
+ "unsupervised machine learning"@en ;
+ skos:definition "A Machine Learning process that identifies patterns and relationships in data without using labeled outcomes."@en ,
+ "Ein Maschinelles Lernen Prozess, der Muster und Zusammenhänge in Daten identifiziert, ohne beschriftete Ergebnisse zu verwenden."@de ;
+ skos:example "Using clustering algorithms to group similar materials based on their properties (e.g., hardness, elasticity, thermal conductivity) without prior knowledge of the categories. For instance, discovering new categories of alloy compositions that exhibit similar thermal properties."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001004
+co:PMD_0001004 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Viskosimeter"@de ,
+ "viscometer"@en ;
+ skos:definition "A device used to measure the viscosity of liquids, providing information about their flow properties."@en ,
+ "Ein Gerät zur Messung der Viskosität von Flüssigkeiten, das Informationen über ihre Fließeigenschaften liefert."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001005
+co:PMD_0001005 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000916 ;
+ rdfs:label "Viskosimetrie"@de ,
+ "viscometry"@en ;
+ skos:definition "A Rheological Property Analyzing Process that measures the viscosity of a fluid, which is its resistance to gradual deformation by shear or tensile stress, using viscometers or rheometers."@en ,
+ "Ein Rheologisches Eigenschaften Analyseverfahren, das die Viskosität einer Flüssigkeit misst, also deren Widerstand gegen allmähliche Verformung durch Scher- oder Zugspannung, unter Verwendung von Viskosimetern oder Rheometern."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001006
+co:PMD_0001006 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Wasseraufbereitungssystem"@de ,
+ "water purification system"@en ;
+ skos:definition "A Water Purification System is a Device used to remove contaminants from water to produce clean and safe drinking water."@en ,
+ "Ein Wasseraufbereitungssystem ist ein Gerät, das verwendet wird, um Verunreinigungen aus Wasser zu entfernen, um sauberes und sicheres Trinkwasser herzustellen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001007
+co:PMD_0001007 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001998 ;
+ rdfs:label "Wasserstrahlschneider"@de ,
+ "waterjet cutter"@en ;
+ skos:definition "A device that utilizes a high-pressure stream of water or a water stream with abrasive particles to cut materials such as metal, stone, plastic, etc."@en ,
+ "Ein Gerät, das einen Hochdruckwasserstrahl oder einen Wasserstrahl mit abrasiven Partikeln verwendet, um Materialien wie Metall, Stein, Kunststoff usw. zu schneiden."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001008
+co:PMD_0001008 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000802 ;
+ rdfs:label "waver irradiation"@en ;
+ skos:definition "A waver irradiation is an irradiation describing an exposure of a material or system to electromagnetic waves or radiation."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001009
+co:PMD_0001009 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Verschleißprüfmaschine"@de ,
+ "wear testing machine"@en ;
+ skos:definition "A device used to test the wear resistance of materials by subjecting them to abrasive conditions."@en ,
+ "Ein Gerät zur Prüfung der Verschleißfestigkeit von Materialien durch Aussetzen dieser Bedingungen unter Abrasivbedingungen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001010
+co:PMD_0001010 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000849 ;
+ rdfs:label "Verschleißprüfverfahren"@de ,
+ "wear testing process"@en ;
+ skos:definition "A Mechanical Property Analyzing Process that evaluates the resistance of a material to wear and abrasion, simulating real-life conditions of friction."@en ,
+ "Ein Mechanische Eigenschaften Analyseverfahrenn, das den Widerstand eines Materials gegen Verschleiß und Abrieb bewertet und reale Reibungsbedingungen simuliert."@de ;
+ skos:example "Wear testing of automotive brake pads to ensure longevity and performance under repetitive braking conditions."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001011
+co:PMD_0001011 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Schweißgerät"@de ,
+ "welding device"@en ;
+ skos:definition "A device used for joining materials by melting them together, typically with the addition of a filler material."@en ,
+ "Ein Gerät zum Verbinden von Materialien durch Schmelzen, üblicherweise unter Zugabe eines Füllmaterials."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001013
+co:PMD_0001013 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000812 ;
+ rdfs:label "Schweißfunktion"@de ,
+ "welding function"@en ;
+ skos:definition "A subfunction of joining performed to fuse materials together using welding techniques."@en ,
+ "Eine Unterfunktion des Verbindens, die durchgeführt wird, um Materialien durch Schweißtechniken zu verbinden."@de ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0001014
+co:PMD_0001014 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000957 ;
+ rdfs:label "Röntgen Analyseverfahren"@de ,
+ "x-ray analyzing process"@en ;
+ skos:definition "A Structural Property Analyzing Process that uses X-rays to investigate the internal structure, composition, and properties of materials by measuring the interaction of X-rays with the sample."@en ,
+ "Ein Struktur Eigenschaften Analyseverfahren, das Röntgenstrahlen verwendet, um die innere Struktur, Zusammensetzung und Eigenschaften von Materialien zu untersuchen, indem die Wechselwirkung der Röntgenstrahlen mit der Probe gemessen wird."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001015
+co:PMD_0001015 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001014 ;
+ rdfs:label "Röntgen-Computertomographie"@de ,
+ "x-ray computed tomography"@en ;
+ skos:definition "A X-ray Analyzing Process, that uses X-rays to create detailed cross-sectional images of an object."@en ,
+ "Ein Röntgenanalyseverfahren, das Röntgenstrahlen verwendet, um detaillierte Querschnittsbilder eines Objekts zu erstellen."@de ;
+ skos:example "For example, X-ray Computed Tomography can be used to analyze the porosity of cement. This process allows researchers to visualize and quantify the distribution, size, and connectivity of pores within the cement."@en ;
+ co:PMD_0050117 "CT"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001016
+co:PMD_0001016 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001014 ;
+ rdfs:label "Beugungsprozess"@de ,
+ "x-ray diffraction process"@en ;
+ skos:definition "An X-ray Analyzing Process, that involves the interaction of X-rays with the crystalline structure of a material."@en ,
+ "Ein Röntgenanalyseverfahren, das die Wechselwirkung von Röntgenstrahlen mit der kristallinen Struktur eines Materials umfasst."@de ;
+ skos:example "XRD is used to e.g. determine the crystal structure of newly synthesized compounds to determine the crystal lattice arrangement."@en ;
+ co:PMD_0050117 "XRD"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001017
+co:PMD_0001017 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001014 ;
+ rdfs:label "Röntgen-Mapping"@de ,
+ "x-ray mapping"@en ;
+ skos:definition "An X-ray Analyzing Process that generates a spatial distribution map of the elements within a specimen by scanning the sample with an electron or X-ray beam and detecting the emitted X-rays, providing detailed compositional information across the sample's surface."@en ,
+ "Ein Röntgenanalyseverfahren, das eine räumliche Verteilungskarte der Elemente innerhalb einer Probe erstellt, indem die Probe mit einem Elektronen- oder Röntgenstrahl abgetastet und die emittierten Röntgenstrahlen detektiert werden, wodurch detaillierte Zusammensetzungsinformationen über die Oberfläche der Probe geliefert werden."@de ;
+ skos:example "An example of an X-ray Mapping process is X-ray Absorption Spectroscopy, X-ray Fluorescence, or X-ray Photoelectron Spectroscopy."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001018
+co:PMD_0001018 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0001014 ;
+ rdfs:label "Röntgen-Mikroanalyse"@de ,
+ "x-ray microanalysis"@en ;
+ skos:definition "An X-ray Analyzing Process that determines the elemental composition and chemical properties of a specimen by detecting and analyzing the characteristic X-rays emitted from the sample when it is irradiated with a focused electron beam."@en ,
+ "Ein Röntgenanalyseverfahren, das die elementare Zusammensetzung und chemischen Eigenschaften einer Probe bestimmt, indem die charakteristischen Röntgenstrahlen detektiert und analysiert werden, die von der Probe emittiert werden, wenn sie mit einem fokussierten Elektronenstrahl bestrahlt wird."@de ;
+ skos:example "An example for X-ray Microanalysis process is Energy Dispersive X-ray Spectroscopy."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001019
+co:PMD_0001019 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000945 ;
+ rdfs:label "Röntgenspektroskopie"@de ,
+ "x-ray spectroscopy"@en ;
+ skos:definition "A Spectroscopy Process, that analyzes the interaction of X-rays with matter to determine the material's composition and structure."@en ,
+ "Ein Spektroskopie Verfahren, das die Wechselwirkung von Röntgenstrahlen mit Materie analysiert, um die Zusammensetzung und Struktur des Materials zu bestimmen."@de ;
+ skos:example "Examples are e.g. X-ray absorption spectroscopy, X-ray emission spectroscopy, and X-ray reflection spectroscopy."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001020
+co:PMD_0001020 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Röntgenbeugungsgerät"@de ,
+ "x-ray diffractometer"@en ;
+ skos:definition "An X-Ray Diffractometer is a Measuring Device that determines the crystal structure of materials by analyzing the diffraction patterns of X-rays passed through a sample."@en ,
+ "Ein Röntgenbeugungsgerät ist ein Messgerät, das die Kristallstruktur von Materialien durch Analyse der Beugungsmuster von durch eine Probe geleiteten Röntgenstrahlen bestimmt."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001021
+co:PMD_0001021 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Röntgenanalysator"@de ,
+ "x-ray analyzer"@en ;
+ skos:definition "A device used to analyze the composition and properties of materials through X-ray techniques such as diffraction or fluorescence."@en ,
+ "Ein Gerät zur Analyse der Zusammensetzung und Eigenschaften von Materialien durch Röntgenverfahren wie Beugung oder Fluoreszenz."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001022
+co:PMD_0001022 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Röntgen-Computertomographiesystem"@de ,
+ "x-ray computed tomography system"@en ;
+ skos:definition "A device that uses X-ray computed tomography techniques to produce cross-sectional images of a material."@en ,
+ "Ein Gerät, das Röntgen-Computertomographietechniken verwendet, um Querschnittsbilder eines Materials zu erstellen."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001023
+co:PMD_0001023 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Röntgenkartierungsgerät"@de ,
+ "x-ray mapping device"@en ;
+ skos:definition "A device used for mapping the spatial distribution of elements or compounds within a material using X-ray fluorescence or diffraction techniques."@en ,
+ "Ein Gerät, das zur Kartierung der räumlichen Verteilung von Elementen oder Verbindungen innerhalb eines Materials mithilfe von Röntgenfluoreszenz- oder -beugungstechniken verwendet wird."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001024
+co:PMD_0001024 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000602 ;
+ rdfs:label "Röntgenmikroanalyssystem"@de ,
+ "x-ray microanalysis system"@en ;
+ skos:definition "A device used for microanalysis of materials using X-ray techniques to determine elemental composition at a microscopic scale."@en ,
+ "Ein Gerät zur Mikroanalyse von Materialien unter Verwendung von Röntgentechniken zur Bestimmung der Elementzusammensetzung auf mikroskopischer Ebene."@de .
+
+
+### https://w3id.org/pmd/co/PMD_0001998
+co:PMD_0001998 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0000602
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000085 ;
+ owl:someValuesFrom co:PMD_0000592
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0000602 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000085 ;
+ owl:someValuesFrom co:PMD_0000592
+ ] ;
+ rdfs:label "cutting device"@en ;
+ skos:definition "A device designed to cut, slice, divide, or sever objects."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0001999
+co:PMD_0001999 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0000602
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000091 ;
+ owl:someValuesFrom co:PMD_0000769
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0000602 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000091 ;
+ owl:someValuesFrom co:PMD_0000769
+ ] ;
+ rdfs:label "hand held device"@en ;
+ skos:definition "A device that has the disposition to be grasped and operated by a human hand and is designed for manual use."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020000
+co:PMD_0020000 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000006 ;
+ rdfs:label "phase (spatial)"@en ;
+ skos:definition "A phase is a 3D spatial region occupied by a Portion Of Matter whose qualities or dispositions or Material Properties are (considered) uniform at the length scale of interest."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020001
+co:PMD_0020001 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "filler role"@en ;
+ skos:definition "Filler is the role of a PortionOfDisconnectedMatter that implies being hosted in a Matrix."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020002
+co:PMD_0020002 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "precipitate role"@en ;
+ skos:definition "Precipitate is the role of a Portion Of Matter that implies being hosted in a Matrix and the Precipitate derives from the Matrix or the Precipitate derives from the Thing that the Matrix derives from."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020003
+co:PMD_0020003 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000030 ;
+ rdfs:label "crystal"@en ;
+ skos:definition "A crystal is an object that has part some entities that concretize a Bravais lattice."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020004
+co:PMD_0020004 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ rdfs:label "chemical composition specification"@en ;
+ skos:definition "A 'chemical composition specification' is an information content entity that 'specifies the value of' the chemical components of a material. The chemical components that are quanitfied are the 'portions of atomic species' or 'portions of matter' that the material 'consists of'. A 'chemical composition specification' 'has continuant parts' that quantify the mass proportions or molar proportions that the material 'conists of'."@en ;
+ skos:example "A 'portion of steel' has a quality 'chemical composition CC'. The 'chemical composition specification CCS' specifies the value of CC and 'has continuant part' some 'scalar value specifications SVS_Fe and SVS_C'. SVS_Fe 'specifies the value of' the relational property 'mass proportion' that inheres in the 'portion of steel' as well as the 'portion of iron' that the steel 'consists of'. SVS_C 'specifies the value of' the relational property 'mass proportion' that inheres in the 'proportion of steel' as well as the 'portion of carbon' that the steel 'consists of'."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020023
+co:PMD_0020023 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Class ;
+ owl:oneOf ( co:PMD_0020027
+ co:PMD_0020097
+ co:PMD_0020100
+ co:PMD_0020107
+ co:PMD_0020109
+ co:PMD_0020110
+ co:PMD_0020111
+ )
+ ] ;
+ rdfs:subClassOf co:PMD_0020098 ;
+ rdfs:label "metallic grain structures"@en ;
+ skos:definition "Metallic grain structures are descriptors for the morphology of polycrystalline metallic materials. Polycrystalline metallic materials will typically form their grain structures as one of those categories or a transition or mixture state of those."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020024
+co:PMD_0020024 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050000 ;
+ rdfs:label "hydrogen bond"@en ;
+ skos:definition "A hydrogen bond is a bond that binds one molecule’s hydrogen atom with the electronegative atoms of another molecule."@en ;
+ skos:example "The bond that forms between liquid water molecules at one molecules hydrogen ends and the other molecules oxigen end."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020025
+co:PMD_0020025 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000001 ;
+ rdfs:comment "TODO: it is not clear if we really need the 'Portion of pure substance\" or if we can just refer to the respecitve chemical entity directly (e.g. in chemical composition)."@en ;
+ rdfs:label "pure substance"@en ;
+ skos:altLabel "Portion of Chemical Entity"@en ;
+ skos:definition "A Pure Substance is a Portion Of Matter that 'has part' only one kind of chebi:chemical entity or other similar entity. It has no structural qualities or realizable entites beyond representing its parts of a single enitiy type."@en ;
+ skos:example """Pure water, a portion of iron atoms. Refer to: http://purl.obolibrary.org/obo/CHEBI_24431
+In contrast, salt water 'consists of' a portion of pure water and a portion of pure NaCl. Steel 'consists of ' a 'portion of pure iron', a 'portion of pure carbon' and possibly portions of other alloying- and impurity-elements."""@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020026
+co:PMD_0020026 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_18248
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only Iron atoms."@en ;
+ rdfs:label "portion of iron"@en ;
+ skos:definition "A 'Portion Of Iron' is a 'Poriton Of Pure Substance' that 'consists of' only chebi:iron atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020028
+co:PMD_0020028 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30430
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only indium atoms."@en ;
+ rdfs:label "portion of indium"@en ;
+ skos:definition "A 'Portion Of Indium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:indium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020029
+co:PMD_0020029 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_28073
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only chromium atoms."@en ;
+ rdfs:label "portion of chromium"@en ;
+ skos:definition "A 'Portion Of Chromium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:chromium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020030
+co:PMD_0020030 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27594
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only carbon atoms."@en ;
+ rdfs:label "portion of carbon"@en ;
+ skos:definition "A 'Portion Of Carbon' is a 'Portion Of Pure Substance' that 'consists of' only chebi:carbon atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020031
+co:PMD_0020031 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30441
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only germanium atoms."@en ;
+ rdfs:label "portion of germanium"@en ;
+ skos:definition "A 'Portion Of Germanium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:germanium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020032
+co:PMD_0020032 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27998
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only tungsten atoms."@en ;
+ rdfs:label "portion of tungsten"@en ;
+ skos:definition "A 'Portion Of Tungsten' is a 'Portion Of Pure Substance' that 'consists of' only chebi:tungsten."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020033
+co:PMD_0020033 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33379
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only erbium atoms."@en ;
+ rdfs:label "portion of erbium"@en ;
+ skos:definition "A 'Portion Of Erbium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:erbium."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020034
+co:PMD_0020034 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_28685
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only molybdenum atoms."@en ;
+ rdfs:label "portion of molybdenum"@en ;
+ skos:definition "A 'Portion Of Molybdenum' is a 'Portion Of Pure Substance' that 'consists of' only chebi:molybdenum atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020035
+co:PMD_0020035 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33344
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only niobium atoms."@en ;
+ rdfs:label "portion of niobium"@en ;
+ skos:definition "A 'Portion Of Niobium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:niobium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020036
+co:PMD_0020036 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_49882
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only rhenium atoms."@en ;
+ rdfs:label "portion of rhenium"@en ;
+ skos:definition "A 'Portion Of Rhenium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:rhenium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020037
+co:PMD_0020037 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30145
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only lithium atoms."@en ;
+ rdfs:label "portion of lithium"@en ;
+ skos:definition "A 'Portion Of Lithium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:lithium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020038
+co:PMD_0020038 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_25555
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only nitrogen atoms."@en ;
+ rdfs:label "portion of nitrogen"@en ;
+ skos:definition "A 'Portion Of Nitrogen' is a 'Portion Of Pure Substance' that 'consists of' only chebi:nitrogen atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020039
+co:PMD_0020039 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27638
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only cobalt atoms."@en ;
+ rdfs:label "portion of cobalt"@en ;
+ skos:definition "A 'Portion Of Cobalt' is a 'Portion Of Pure Substance' that 'consists of' only chebi:cobalt atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020040
+co:PMD_0020040 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_29287
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only gold atoms."@en ;
+ rdfs:label "portion of gold"@en ;
+ skos:definition "A 'Portion Of Gold' is a 'Portion Of Pure Substance' that 'consists of' only chebi:gold atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020041
+co:PMD_0020041 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_49475
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only argon atoms."@en ;
+ rdfs:label "portion of argon"@en ;
+ skos:definition "A 'Portion Of Argon' is a 'Portion Of Pure Substance' that 'consists of' only chebi:argon atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020042
+co:PMD_0020042 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_22977
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only cadmium atoms."@en ;
+ rdfs:label "portion of cadmium"@en ;
+ skos:definition "A 'Portion Of Cadmium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:cadmium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020043
+co:PMD_0020043 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_32594
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only barium atoms."@en ;
+ rdfs:label "portion of barium"@en ;
+ skos:definition "A 'Portion Of Barium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:barium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020044
+co:PMD_0020044 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33348
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only tantalum atoms."@en ;
+ rdfs:label "portion of tantalum"@en ;
+ skos:definition "A 'Portion Of Tantalum' is a 'Portion Of Pure Substance' that 'consists of' only chebi:tantalum atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020045
+co:PMD_0020045 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30513
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only antimony atoms."@en ;
+ rdfs:label "portion of antimony"@en ;
+ skos:definition "A 'Portion Of Antimony' is a 'Portion Of Pure Substance' that 'consists of' only chebi:antimony atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020046
+co:PMD_0020046 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_26216
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only potassium atoms."@en ;
+ rdfs:label "portion of potassium"@en ;
+ skos:definition "A 'Portion Of Potassium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:potassium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020047
+co:PMD_0020047 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_28659
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only phosphorus atoms."@en ;
+ rdfs:label "portion of phosphorus"@en ;
+ skos:definition "A 'Portion Of Phosphorus' is a 'Portion Of Pure Substance' that 'consists of' only chebi:phosphorus atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020048
+co:PMD_0020048 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27560
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only boron atoms."@en ;
+ rdfs:label "portion of boron"@en ;
+ skos:definition "A 'Portion Of Boron' is a 'Portion Of Pure Substance' that 'consists of' only chebi:boron atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020049
+co:PMD_0020049 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30217
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only helium atoms."@en ;
+ rdfs:label "portion of helium"@en ;
+ skos:definition "A 'Portion Of Helium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:helium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020050
+co:PMD_0020050 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27573
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only silicon atoms."@en ;
+ rdfs:label "portion of silicon"@en ;
+ skos:definition "A 'Portion Of Silicon' is a 'Portion Of Pure Substance' that 'consists of' only chebi:silicon atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020051
+co:PMD_0020051 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_28112
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only nickel atoms."@en ;
+ rdfs:label "portion of nickel"@en ;
+ skos:definition "A 'Portion Of Nickel' is a 'Portion Of Pure Substance' that 'consists of' only chebi:nickel atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020052
+co:PMD_0020052 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33331
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only yttrium atoms."@en ;
+ rdfs:label "portion of yttrium"@en ;
+ skos:definition "A 'Portion Of Yttrium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:yttrium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020053
+co:PMD_0020053 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33342
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only zirconium atoms."@en ;
+ rdfs:label "portion of zirconium"@en ;
+ skos:definition "A 'Portion Of Zirconium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:zirconium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020054
+co:PMD_0020054 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_28694
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only copper atoms."@en ;
+ rdfs:label "portion of copper"@en ;
+ skos:definition "A 'Portion Of Copper' is a 'Portion Of Pure Substance' that 'consists of' only chebi:copper atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020055
+co:PMD_0020055 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33355
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only bohrium atoms."@en ;
+ rdfs:label "portion of bohrium"@en ;
+ skos:definition "A 'Portion Of Bohrium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:bohrium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020056
+co:PMD_0020056 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_24061
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only fluorine atoms."@en ;
+ rdfs:label "portion of fluorine"@en ;
+ skos:definition "A 'Portion Of Fluorine' is a 'Portion Of Pure Substance' that 'consists of' only chebi:fluorine atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020057
+co:PMD_0020057 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33364
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only platinum atoms."@en ;
+ rdfs:label "portion of platinum"@en ;
+ skos:definition "A 'Portion Of Platinum' is a 'Portion Of Pure Substance' that 'consists of' only chebi:platinum."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020058
+co:PMD_0020058 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33369
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only cerium atoms."@en ;
+ rdfs:label "portion of cerium"@en ;
+ skos:definition "A 'Portion Of Cerium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:cerium."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020059
+co:PMD_0020059 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_26833
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only sulfur atoms."@en ;
+ rdfs:label "portion of sulfur"@en ;
+ skos:definition "A 'Portion Of Sulfur' is a 'Portion Of Pure Substance' that 'consists of' only chebi:sulfur atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020060
+co:PMD_0020060 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_25016
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only lead atoms."@en ;
+ rdfs:label "portion of lead"@en ;
+ skos:definition "A 'Portion Of Lead' is a 'Portion Of Pure Substance' that 'consists of' only chebi:lead atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020061
+co:PMD_0020061 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_49696
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only krypton atoms."@en ;
+ rdfs:label "portion of krypton"@en ;
+ skos:definition "A 'Portion Of Krypton' is a 'Portion Of Pure Substance' that 'consists of' only chebi:krypton atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020062
+co:PMD_0020062 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33301
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only bismuth atoms."@en ;
+ rdfs:label "portion of bismuth"@en ;
+ skos:definition "A 'Portion Of Bismuth' is a 'Portion Of Pure Substance' that 'consists of' only chebi:bismuth atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020063
+co:PMD_0020063 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33310
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only neon atoms."@en ;
+ rdfs:label "portion of neon"@en ;
+ skos:definition "A 'Portion Of Neon' is a 'Portion Of Pure Substance' that 'consists of' only chebi:neon atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020064
+co:PMD_0020064 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30440
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only thallium atoms."@en ;
+ rdfs:label "portion of thallium"@en ;
+ skos:definition "A 'Portion Of Thallium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:thallium."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020065
+co:PMD_0020065 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27568
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only selenium atoms."@en ;
+ rdfs:label "portion of selenium"@en ;
+ skos:definition "A 'Portion Of Selenium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:selenium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020066
+co:PMD_0020066 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30682
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only ruthenium atoms."@en ;
+ rdfs:label "portion of ruthenium"@en ;
+ skos:definition "A 'Portion Of Ruthenium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:ruthenium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020067
+co:PMD_0020067 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_25107
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only magnesium atoms."@en ;
+ rdfs:label "portion of magnesium"@en ;
+ skos:definition "A 'Portion Of Magnesium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:magnesium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020068
+co:PMD_0020068 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27363
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only zinc atoms."@en ;
+ rdfs:label "portion of zinc"@en ;
+ skos:definition "A 'Portion Of Zinc' is a 'Portion Of Pure Substance' that 'consists of' only chebi:zinc atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020069
+co:PMD_0020069 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_25195
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only mercury atoms."@en ;
+ rdfs:label "portion of mercury"@en ;
+ skos:definition "A 'Portion Of Mercury' is a 'Portion Of Pure Substance' that 'consists of' only chebi:mercury atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020070
+co:PMD_0020070 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_49957
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only xenon atoms."@en ;
+ rdfs:label "portion of xenon"@en ;
+ skos:definition "A 'Portion Of Xenon' is a 'Portion Of Pure Substance' that 'consists of' only chebi:xenon atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020071
+co:PMD_0020071 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_28984
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only aluminium atoms."@en ;
+ rdfs:label "portion of aluminium"@en ;
+ skos:definition "A 'Portion Of Aluminium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:aluminium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020072
+co:PMD_0020072 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_26708
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only sodium atoms."@en ;
+ rdfs:label "portion of sodium"@en ;
+ skos:definition "A 'Portion Of Sodium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:sodium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020073
+co:PMD_0020073 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_24859
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only iodine atoms."@en ;
+ rdfs:label "portion of iodine"@en ;
+ skos:definition "A 'Portion Of Iodine' is a 'Portion Of Pure Substance' that 'consists of' only chebi:iodine atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020074
+co:PMD_0020074 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30514
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only caesium atoms."@en ;
+ rdfs:label "portion of caesium"@en ;
+ skos:definition "A 'Portion Of Caesium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:caesium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020075
+co:PMD_0020075 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_23116
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only chlorine atoms."@en ;
+ rdfs:label "portion of chlorine"@en ;
+ skos:definition "A 'Portion Of Chlorine' is a 'Portion Of Pure Substance' that 'consists of' only chebi:chlorine atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020076
+co:PMD_0020076 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30512
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only silver atoms."@en ;
+ rdfs:label "portion of silver"@en ;
+ skos:definition "A 'Portion Of Silver' is a 'Portion Of Pure Substance' that 'consists of' only chebi:silver atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020077
+co:PMD_0020077 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33374
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only samarium atoms."@en ;
+ rdfs:label "portion of samarium"@en ;
+ skos:definition "A 'Portion Of Samarium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:samarium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020078
+co:PMD_0020078 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_18291
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only manganese atoms."@en ;
+ rdfs:label "portion of manganese"@en ;
+ skos:definition "A 'Portion Of Manganese' is a 'Portion Of Pure Substance' that 'consists of' only chebi:manganese atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020079
+co:PMD_0020079 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27563
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only arsenic atoms."@en ;
+ rdfs:label "portion of arsenic"@en ;
+ skos:definition "A 'Portion Of Arsenic' is a 'Portion Of Pure Substance' that 'consists of' only chebi:arsenic atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020080
+co:PMD_0020080 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30501
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only beryllium atoms."@en ;
+ rdfs:label "portion of beryllium"@en ;
+ skos:definition "A 'Portion Of Beryllium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:beryllium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020081
+co:PMD_0020081 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_22984
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only calcium atoms."@en ;
+ rdfs:label "portion of calcium"@en ;
+ skos:definition "A 'Portion Of Calcium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:calcium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020082
+co:PMD_0020082 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33372
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only neodymium atoms."@en ;
+ rdfs:label "portion of neodymium"@en ;
+ skos:definition "A 'Portion Of Neodymium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:neodymium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020083
+co:PMD_0020083 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_49637
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only hydrogen atoms."@en ;
+ rdfs:label "portion of hydrogen"@en ;
+ skos:definition "A 'Portion Of Hydrogen' is a 'Portion Of Pure Substance' that 'consists of' only chebi:hydrogen atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020084
+co:PMD_0020084 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_30687
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only osmium atoms."@en ;
+ rdfs:label "portion of osmium"@en ;
+ skos:definition "A 'Portion Of Osmium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:osmium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020085
+co:PMD_0020085 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_49666
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only iridium atoms."@en ;
+ rdfs:label "portion of iridium"@en ;
+ skos:definition "A 'Portion Of Iridium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:iridium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020086
+co:PMD_0020086 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_49631
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only gallium atoms."@en ;
+ rdfs:label "portion of gallium"@en ;
+ skos:definition "A 'Portion Of Gallium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:gallium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020087
+co:PMD_0020087 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_22927
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only bromine atoms."@en ;
+ rdfs:label "portion of bromine"@en ;
+ skos:definition "A 'Portion Of Bromine' is a 'Portion Of Pure Substance' that 'consists of' only chebi:bromine atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020088
+co:PMD_0020088 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27007
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only tin atoms."@en ;
+ rdfs:label "portion of tin"@en ;
+ skos:definition "A 'Portion Of Tin' is a 'Portion Of Pure Substance' that 'consists of' only chebi:tin atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020089
+co:PMD_0020089 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33343
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only hafnium atoms."@en ;
+ rdfs:label "portion of hafnium"@en ;
+ skos:definition "A 'Portion Of Hafnium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:hafnium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020090
+co:PMD_0020090 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27214
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only uranium atoms."@en ;
+ rdfs:label "portion of uranium"@en ;
+ skos:definition "A 'Portion Of Uranium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:uranium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020091
+co:PMD_0020091 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_25805
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only oxygen atoms."@en ;
+ rdfs:label "portion of oxygen"@en ;
+ skos:definition "A 'Portion Of Oxygen' is a 'Portion Of Pure Substance' that 'consists of' only chebi:oxygen atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020092
+co:PMD_0020092 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33363
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only palladium atoms."@en ;
+ rdfs:label "portion of palladium"@en ;
+ skos:definition "A 'Portion Of Palladium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:palladium."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020093
+co:PMD_0020093 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_27698
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only vanadium atoms."@en ;
+ rdfs:label "portion of vanadium"@en ;
+ skos:definition "A 'Portion Of Vanadium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:vanadium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020094
+co:PMD_0020094 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33330
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only scandium atoms."@en ;
+ rdfs:label "portion of scandium"@en ;
+ skos:definition "A 'Portion Of Scandium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:scandium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020095
+co:PMD_0020095 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0020025
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:allValuesFrom obo:CHEBI_33341
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0020025 ;
+ rdfs:comment "A Portion Of Matter that consists of only titanium atoms."@en ;
+ rdfs:label "portion of titanium"@en ;
+ skos:definition "A 'Portion Of Titanium' is a 'Portion Of Pure Substance' that 'consists of' only chebi:titanium atom."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020096
+co:PMD_0020096 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000639 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0020005 ;
+ owl:someValuesFrom co:PMD_0020030
+ ] ;
+ rdfs:label "steel"@en ;
+ skos:definition "Steel is a ferrous alloy that consists of iron and carbon and possibly other alloying elements (and possibly impurities)."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020098
+co:PMD_0020098 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000031 ;
+ rdfs:label "nature constant"@en ;
+ skos:definition "A nature constant is a generically dependent continuant whose value, magintude or configuration is determined by nature including physics and mathematics."@en ;
+ skos:example "Examples of nature constants are the speed of light, pi, and the 14 Bravais lattices."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020099
+co:PMD_0020099 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Class ;
+ owl:oneOf ( co:PMD_0020006
+ co:PMD_0020007
+ co:PMD_0020008
+ co:PMD_0020009
+ co:PMD_0020010
+ co:PMD_0020011
+ co:PMD_0020012
+ co:PMD_0020013
+ co:PMD_0020014
+ co:PMD_0020015
+ co:PMD_0020016
+ co:PMD_0020017
+ co:PMD_0020018
+ co:PMD_0020019
+ )
+ ] ;
+ rdfs:subClassOf co:PMD_0020098 ;
+ rdfs:label "bravais lattice (3d)"@en ;
+ skos:definition """The Bravais Lattice is a nature constant that describes the possible geometric arrangement of lattice points in a crystal. The present descriptor is limited to the 14 possible three-dimensional arrangements.
+
+TODO: possibly extend for 2D (Graphene etc)
+
+More elaborate crystal descriptions may be found in http://emmo.info/domain-crystallography/crystallography or https://purls.helmholtz-metadaten.de/disos/cso"""@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020101
+co:PMD_0020101 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000145 ;
+ owl:disjointWith co:PMD_0050000 ;
+ rdfs:label "proportion"@en ;
+ skos:altLabel "concentration"@en ,
+ "fraction"@en ;
+ skos:definition "A Proportion is a relational quality between two entites (the whole and the part) which quantifies the relation between the whole and its part."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020102
+co:PMD_0020102 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020101 ;
+ rdfs:label "mass proportion"@en ;
+ skos:definition "The Mass Proportion is a Proportion which quantifies the mass of the part relative to the mass of the whole."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020103
+co:PMD_0020103 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020101 ;
+ rdfs:label "molar proportion"@en ;
+ skos:altLabel "Molar Ratio"@en ;
+ skos:definition "The Molar Proportion is the proportion which quantifies the entities count of the part in relation to the entites count of the whole."@en ;
+ skos:example """The molar ratio of hydrogen gas H2 molecules to water H2O molecules is 1/1 in the oxyhydrogen reaction. The molar ratio of oxigen molecules O2 to water molecules is 2/1.
+The molar ratio of carbon dioxide to average atmosphere air is 420 ppm as of 2022 AD."""@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020104
+co:PMD_0020104 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020101 ;
+ rdfs:label "volume proportion"@en ;
+ skos:definition "The Mass Proportion is a Proportion which quantifies the volume of the part relative to the volume of the whole."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020105
+co:PMD_0020105 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000000 ;
+ rdfs:label "mineral"@en ;
+ skos:definition "A mineral is a material that has part some crystal."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020106
+co:PMD_0020106 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "polycrystal"@en ;
+ skos:definition "Polycrystal is an object aggregate that has continuant part some crystal grains"@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020108
+co:PMD_0020108 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020105 ;
+ rdfs:label "graphite"@en ;
+ skos:definition "A mineral that has part some crystal that in turn consists of some portion of carbon"@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020112
+co:PMD_0020112 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020131 ;
+ rdfs:label "grain size distribution"@en ;
+ skos:definition "An intensive quality describing the lower length scale object aggregate (grains) that is part of the material."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020113
+co:PMD_0020113 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000030 ;
+ rdfs:label "fluid (object)"@en ;
+ skos:definition "fuild (object) is an object that consists of some portion of matter which bears an aggregate state that concretizes a liquid or gaseous aggregate state."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020114
+co:PMD_0020114 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "medium role"@en ;
+ skos:definition "Medium role is a role beared by an object which implies that the object serves as an intermediary for the transmission of something else, like energy, force, or information."@en ;
+ skos:example "Air in the air cooling process, N2 atmosphere in a furnace cooling process, oil in a quenching process, crystal lattice in a solid state diffusion"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020115
+co:PMD_0020115 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000891 ;
+ rdfs:label "aerosol"@en ;
+ skos:definition """An aerosol is a disconnected material entity aggregate which:
+1. consists of some portion of matter whose aggregate state quality concretizes gasous and
+2. consists of some portion of matter whose aggregate state quality concretises solid or liquid (TODO: express that this portion is also a disconnected material entity aggregate)"""@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020116
+co:PMD_0020116 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Class ;
+ owl:oneOf ( co:PMD_0020117
+ co:PMD_0020118
+ co:PMD_0020119
+ co:PMD_0020120
+ co:PMD_0020121
+ co:PMD_0020122
+ co:PMD_0020123
+ co:PMD_0020124
+ co:PMD_0020125
+ )
+ ] ;
+ rdfs:subClassOf co:PMD_0020098 ;
+ rdfs:label "aggregate state value"@en ;
+ skos:definition "The aggregate state type is a nature constant that concretizes the aggregatge state quality."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020126
+co:PMD_0020126 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000890 ;
+ rdfs:label "foam"@en ;
+ skos:definition """A foam is a material entity aggregate that conssists of some 'Composite Material' c.
+The parts of c that bear the filler role are vacuum-filled or gas filled pores.
+The parts of c that bear the matrix role consist of a material that is bearer of solid or liquid aggregate state.
+One pore with its sourrounding matrix is called 'cell'.
+Depending of the interconnectedness of the pores the foam is open- or closed-cell."""@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020128
+co:PMD_0020128 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "thermodynamic system"@en ;
+ skos:definition "A thermodynamic system is an object aggregate whose objects are bearer of thermodynamic properties. A thermodynamic system environs a thermodynamic process by which the thermodynamic properties of the objects of the thermodynamic system change over time."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020129
+co:PMD_0020129 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "reversible process"@en ;
+ skos:definition "A reversible process is a process whose participants form a thermodynamic system with an entropy S and S remains constant during the process."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020131
+co:PMD_0020131 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ owl:disjointWith co:PMD_0020148 ;
+ rdfs:label "intensive quality"@en ;
+ skos:altLabel "Point property"@en ;
+ skos:definition "An intensive quality is a qualty that inheres in only portion of matter and thus is independent of the bearers (system-) size."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020132
+co:PMD_0020132 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020148 ;
+ rdfs:label "size"@en ;
+ skos:definition "Size is the quality of a material entity that describes its spatial extend."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020133
+co:PMD_0020133 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020148 ;
+ rdfs:comment "Mass is relevant in such processes as gravitation, acceleration, etc."@en ;
+ rdfs:label "mass"@en ;
+ skos:definition "Mass is fundamental extensive quality."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020134
+co:PMD_0020134 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "stimulus role"@en ;
+ skos:definition "The stimulus role is a role that an object bears in a process when causally influencing another object that bears a stimulation target role in the same process. 'Role' implies here, that the 'bearing' assignment depends on the intent."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020135
+co:PMD_0020135 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "stimulation target role"@en ;
+ skos:definition "See 'Stimulus role'"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020138
+co:PMD_0020138 rdf:type owl:Class ;
+ owl:equivalentClass :LOG_1000037 ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "lot"@en ;
+ skos:definition "A lot is an object aggregate whose parts are output of the same prodction process."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020139
+co:PMD_0020139 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020113 ;
+ rdfs:label "Schmelze"@de ,
+ "melt"@en ;
+ skos:definition "A melt is an object (material entity) that exists in a liquid state as a result of the phase transition from solid due to thermal energy input. In materials science, it typically refers to metals, alloys, or other substances maintained above their melting point."@en ,
+ "Eine Schmelze ist ein Objekt (eine materielle Einheit), das aufgrund des Phasenübergangs von einem Festkörper durch thermische Energiezufuhr in einem flüssigen Zustand vorliegt. In der Werkstoffkunde bezieht sich der Begriff in der Regel auf Metalle, Legierungen oder andere Stoffe, die oberhalb ihres Schmelzpunkts gehalten werden."@de ;
+ skos:example "A pool of molten steel during casting."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020142
+co:PMD_0020142 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020148 ;
+ obo:IAO_0000119 ;
+ rdfs:label "energy"@en ;
+ skos:definition "Energy is a quality of material entities which manifests as a capacity to perform work (such as causing motion or the interaction of molecules)"@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020143
+co:PMD_0020143 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "process chain"@en ;
+ skos:definition "A process chain is a process that 'has contiuant part' subprocesses S1...Sn where S1...Sn precede each other and where some object or object aggregate that are output of Sn are then input to Sn+1."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020144
+co:PMD_0020144 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "product (chemical reaction)"@en ;
+ skos:definition "Product is the role of a material entity that is output of a chemical reaction and is created or transformed during the reaction."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020145
+co:PMD_0020145 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "educt"@en ;
+ skos:definition "Educt is the role of a material entity that is input of a chemical reaction and is consumed or transformed during the reaction"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020146
+co:PMD_0020146 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "catalyst"@en ;
+ skos:definition "Catalyst is the role of a participant in a chemical reaction that does not alter its qualities/realizable entities after the chemical reaction."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020148
+co:PMD_0020148 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ rdfs:label "extensive quality"@en ;
+ skos:definition "An extensive quality is a qualty that inheres in only object or object aggregate or fiat object part or chemical entity and is dependent on the bearers (system-) size."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020150
+co:PMD_0020150 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020132 ;
+ rdfs:label "volume"@en ;
+ skos:definition "Volume is a three dimensional size."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020151
+co:PMD_0020151 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020148 ;
+ rdfs:label "internal energy"@en ;
+ skos:definition "Internal energy is a universal extensive quality that specifies the bearers potential to do work."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020152
+co:PMD_0020152 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "component"@en ;
+ skos:definition "A component is an object aggregate that bears a function in a technical system."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020153
+co:PMD_0020153 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "technical system"@en ;
+ skos:definition """A technical system is an object aggretate:
+1. that is output of a manufacturing process,
+2. that bears some function
+3. whose continuant parts are some components."""@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020155
+co:PMD_0020155 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020148 ;
+ rdfs:label "interatomic interaction energy"@en ;
+ skos:definition "Interatomic interaction energy is added/removed from the atom aggregate if one atom is moved infinitely away from the rest of the aggregate."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020166
+co:PMD_0020166 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( co:PMD_0020139
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000087 ;
+ owl:someValuesFrom co:PMD_0000534
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:label "heat (metallurgy)"@en ;
+ skos:definition "A heat is a fixed amount of metallic alloy that may be input to some Manifacturing Process."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020199
+co:PMD_0020199 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020132 ;
+ rdfs:label "Fläche"@de ,
+ "area"@en ;
+ skos:definition "Area a two dimesional size"@en ;
+ skos:example "Section area or a surface area"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020200
+co:PMD_0020200 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000017 ;
+ rdfs:label "force"@en ;
+ skos:definition "Force is a reciprocal relation realized between two objects where the other object exerces the same force with opposite sign onto the first. Force may be responsible for changes in velocity and/or deformation of objects."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020201
+co:PMD_0020201 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000146 ;
+ rdfs:label "section"@en ;
+ skos:definition "Section is a planar fiat surface cutting across the object"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020202
+co:PMD_0020202 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000029 ;
+ rdfs:label "crack"@en ;
+ skos:definition "A crack is a physical separation of a material entity at the level of (atomic) Bonds."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020203
+co:PMD_0020203 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000029 ;
+ rdfs:label "notch"@en ;
+ skos:definition "A notch is a geometric feature of the 'surface layer' of an object that introduces a strong change in shape or cross section."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020204
+co:PMD_0020204 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000029 ;
+ rdfs:label "pore"@en ;
+ skos:definition "A pore is a cavity in the 'bulk' of an object"@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020205
+co:PMD_0020205 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ rdfs:label "defect role"@en ;
+ skos:definition "A defect role is a role of an independent continuant C indicating that C may affect a material entity E's ability to realize a function. C is continuant part of E."@en ;
+ skos:example "A crack in an structural member may affect its ability to carry a load."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0020207
+co:PMD_0020207 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020103 ;
+ rdfs:label "amount of substance"@en ;
+ skos:definition "Amount of substance n is a molar propotion when the whole is a object aggregate N, which has Avogadro number objects (of same type) as parts (n = N/N_A)."@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020209
+co:PMD_0020209 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "operation"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0020210
+co:PMD_0020210 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ rdfs:label "alteration of quality"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0040001
+co:PMD_0040001 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020132 ;
+ rdfs:comment "Length is a size that describes the spacial extend of its bearer in one dimension."@en ;
+ rdfs:label "length"@en ;
+ skos:altLabel "dimension"@en ;
+ skos:definition "Length is a one dimensional size." ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0040029
+co:PMD_0040029 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000029 ;
+ obo:IAO_0000412 ;
+ rdfs:label "geospatial site"@en ;
+ skos:definition "site at or near the surface of the earth"@en-us .
+
+
+### https://w3id.org/pmd/co/PMD_0040030
+co:PMD_0040030 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0040029
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000085
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0040029 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000085
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "geospatial location"@en ;
+ skos:definition "geospatial site that is the location of some material entity at some time or the site of some process"@en-us .
+
+
+### https://w3id.org/pmd/co/PMD_0040129
+co:PMD_0040129 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000005 ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/SupplyChainObjectiveSpecification" ;
+ rdfs:label "supply chain objective specification"@en ;
+ skos:definition "objective specification that prescribes what the outcome of a supply chain process should be" .
+
+
+### https://w3id.org/pmd/co/PMD_0040151
+co:PMD_0040151 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ;
+ rdfs:label "storage function"@en ;
+ skos:definition "function of an material entity to store other material entities" .
+
+
+### https://w3id.org/pmd/co/PMD_0050000
+co:PMD_0050000 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0020200 ;
+ rdfs:label "bond"@en ;
+ skos:definition "A bond is a relational quality describing the force interaction between atoms."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050001
+co:PMD_0050001 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050000 ;
+ obo:IAO_0000119 ;
+ rdfs:label "covalent bond"@en ;
+ skos:definition "A covalent bond is a bond that forms when nonmetal atoms share electrons to achieve a stable electron configuration."@en ;
+ skos:example "In a water molecule (H₂O), the hydrogen and oxygen atoms share electrons."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050002
+co:PMD_0050002 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050000 ;
+ obo:IAO_0000119 ;
+ rdfs:label "metallic bond"@en ;
+ skos:definition "A metallic bond is a bond that forms between metal atoms, where electrons are shared in a \"sea\" of electrons that move freely around the metal ions. This type of bonding gives metals their characteristic properties such as conductivity and malleability."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050003
+co:PMD_0050003 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050000 ;
+ obo:IAO_0000119 ;
+ rdfs:label "ionic bond"@en ;
+ skos:definition "An ionic bond is a bond that occurs when one atom donates an electron to another atom, resulting in oppositely charged ions that attract each other."@en ;
+ skos:example "An example is the interaction between the atoms of sodium chloride (NaCl), where the sodium atom donates an electron to a chlorine atom."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050004
+co:PMD_0050004 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000888 ;
+ rdfs:label "thermoplastics"@en ;
+ skos:definition "A Thermoplastic is a Polymer that becomes moldable when heated and solidifies upon cooling."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050005
+co:PMD_0050005 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050004 ;
+ rdfs:label "polyethylene"@en ;
+ skos:definition "Polyethylene is a Thermoplastic that is composed of repeating ethylene monomer units."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "PE" .
+
+
+### https://w3id.org/pmd/co/PMD_0050006
+co:PMD_0050006 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050005 ;
+ rdfs:label "low-density polyethylene"@en ;
+ skos:definition "Low-Density Polyethylene is a Polyethylene that is characterized by a branched molecular structure and low density."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "PE-LD" .
+
+
+### https://w3id.org/pmd/co/PMD_0050007
+co:PMD_0050007 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050005 ;
+ rdfs:label "high-density polyethylene"@en ;
+ skos:definition "High-Density Polyethylene is a Polyethylene that is characterized by a linear molecular structure and high density."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "PE-HD" .
+
+
+### https://w3id.org/pmd/co/PMD_0050008
+co:PMD_0050008 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050005 ;
+ rdfs:label "linear low-density polyethylene"@en ;
+ skos:definition "Linear Low-Density Polyethylene is a Polyethylene that is distinguished by its linear backbone with short-chain branching."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "PE_LLD" .
+
+
+### https://w3id.org/pmd/co/PMD_0050009
+co:PMD_0050009 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050004 ;
+ rdfs:label "polypropylene"@en ;
+ skos:definition "Polypropylene is a Thermoplastic that is composed of repeating propylene monomer units."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "PP" .
+
+
+### https://w3id.org/pmd/co/PMD_0050010
+co:PMD_0050010 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050009 ;
+ rdfs:label "isotactic polypropylene"@en ;
+ skos:definition "Isotactic Polypropylene is a Polypropylene in which all the methyl groups are aligned on the same side of the polymer chain."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "iPP" .
+
+
+### https://w3id.org/pmd/co/PMD_0050011
+co:PMD_0050011 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050009 ;
+ rdfs:label "syndiotactic polypropylene"@en ;
+ skos:definition "Syndiotactic Polypropylene is a Polypropylene in which the methyl groups alternate regularly along the polymer chain."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "sPP" .
+
+
+### https://w3id.org/pmd/co/PMD_0050012
+co:PMD_0050012 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050009 ;
+ rdfs:label "atactic polypropylene"@en ;
+ skos:definition "Atactic Polypropylene is a Polypropylene in which the methyl groups are randomly distributed along the polymer chain."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "aPP" .
+
+
+### https://w3id.org/pmd/co/PMD_0050013
+co:PMD_0050013 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050004 ;
+ rdfs:label "polyvinyl chloride"@en ;
+ skos:definition "Polyvinyl Chloride is a Thermoplastic that is formed by the polymerization of vinyl chloride monomers."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "PVC" .
+
+
+### https://w3id.org/pmd/co/PMD_0050014
+co:PMD_0050014 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050013 ;
+ rdfs:label "rigid polyvinyl chloride"@en ;
+ skos:definition "Rigid PVC is a Polyvinyl Chloride that is characterized by its stiffness and durability."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "uPVC"@en .
+
+
+### https://w3id.org/pmd/co/PMD_0050015
+co:PMD_0050015 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050013 ;
+ rdfs:label "flexible polyvinyl chloride"@en ;
+ skos:definition "Flexible PVC is a Polyvinyl Chloride that has been modified with plasticizers to impart flexibility."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "fPVC" .
+
+
+### https://w3id.org/pmd/co/PMD_0050016
+co:PMD_0050016 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050004 ;
+ rdfs:label "polystyrene"@en ;
+ skos:definition "Polystyrene is a Thermoplastic that is produced by the polymerization of styrene monomers."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "PS" .
+
+
+### https://w3id.org/pmd/co/PMD_0050017
+co:PMD_0050017 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050016 ;
+ rdfs:label "general purpose polystyrene"@en ;
+ skos:definition "General Purpose Polystyrene is a Polystyrene that is valued for its clarity and ease of processing."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050018
+co:PMD_0050018 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050016 ;
+ rdfs:label "high impact polystyrene"@en ;
+ skos:definition "High Impact Polystyrene is a Polystyrene that is modified with rubber to improve its impact resistance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050019
+co:PMD_0050019 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050004 ;
+ rdfs:label "polyethylene terephthalate"@en ;
+ skos:definition "Polyethylene Terephthalate is a Thermoplastic that is synthesized from terephthalic acid and ethylene glycol."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "PET" .
+
+
+### https://w3id.org/pmd/co/PMD_0050020
+co:PMD_0050020 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050019 ;
+ rdfs:label "amorphous polyethylene terephthalate"@en ;
+ skos:definition "Amorphous PET is a Polyethylene Terephthalate that is characterized by a non-crystalline structure."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "APET" .
+
+
+### https://w3id.org/pmd/co/PMD_0050021
+co:PMD_0050021 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050019 ;
+ rdfs:label "crystalline polyethylene terephthalate"@en ;
+ skos:definition "Crystalline PET is a Polyethylene Terephthalate that is distinguished by its ordered, crystalline structure."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "CPET" .
+
+
+### https://w3id.org/pmd/co/PMD_0050022
+co:PMD_0050022 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000888 ;
+ rdfs:label "thermosetting polymers"@en ;
+ skos:definition "A Thermosetting Polymer is a Polymer that, once cured, irreversibly sets into a permanent shape."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050023
+co:PMD_0050023 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050022 ;
+ rdfs:label "epoxy resins"@en ;
+ skos:definition "Epoxy Resins are Thermosetting Polymers that form rigid, cross-linked networks upon curing."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050024
+co:PMD_0050024 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050023 ;
+ rdfs:label "bisphenol a epoxy"@en ;
+ skos:definition "Bisphenol A Epoxy is an Epoxy Resin that is formulated using bisphenol A to enhance its mechanical properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050025
+co:PMD_0050025 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050023 ;
+ rdfs:label "novolac epoxy"@en ;
+ skos:definition "Novolac Epoxy is an Epoxy Resin that is based on novolac resins to provide improved thermal and chemical resistance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050026
+co:PMD_0050026 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050022 ;
+ rdfs:label "phenolic resins"@en ;
+ skos:definition "Phenolic Resins are Thermosetting Polymers formed by the reaction of phenol with formaldehyde."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050027
+co:PMD_0050027 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050026 ;
+ rdfs:label "phenol-formaldehyde resin"@en ;
+ skos:definition "Phenol-Formaldehyde Resin is a Phenolic Resin that is synthesized from phenol and formaldehyde."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050028
+co:PMD_0050028 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050022 ;
+ rdfs:label "melamine formaldehyde"@en ;
+ skos:definition "Melamine Formaldehyde is a Thermosetting Polymer produced from melamine and formaldehyde, known for its high hardness."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050029
+co:PMD_0050029 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050022 ;
+ rdfs:label "urea formaldehyde"@en ;
+ skos:definition "Urea Formaldehyde is a Thermosetting Polymer formed from urea and formaldehyde, commonly used in adhesives and molding compounds."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050030
+co:PMD_0050030 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000888 ;
+ rdfs:label "elastomers"@en ;
+ skos:definition "An Elastomer is a Polymer that exhibits elasticity by returning to its original shape after deformation."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050031
+co:PMD_0050031 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050030 ;
+ rdfs:label "natural rubber"@en ;
+ skos:definition "Natural Rubber is an Elastomer that is derived from the latex of rubber trees."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050032
+co:PMD_0050032 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050030 ;
+ rdfs:label "synthetic rubber"@en ;
+ skos:definition "Synthetic Rubber is an Elastomer that is produced through chemical synthesis to mimic natural rubber’s properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050033
+co:PMD_0050033 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050032 ;
+ rdfs:label "styrene-butadiene rubber"@en ;
+ skos:definition "Styrene-Butadiene Rubber is a Synthetic Rubber that is composed of styrene and butadiene to enhance abrasion resistance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050034
+co:PMD_0050034 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050032 ;
+ rdfs:label "nitrile butadiene rubber"@en ;
+ skos:definition "Nitrile Butadiene Rubber is a Synthetic Rubber that is formulated from acrylonitrile and butadiene to provide resistance to oils and chemicals."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050035
+co:PMD_0050035 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050032 ;
+ rdfs:label "ethylene propylene diene monomer"@en ;
+ skos:definition "Ethylene Propylene Diene Monomer is a Synthetic Rubber produced from ethylene, propylene, and a diene monomer to offer excellent weather resistance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050036
+co:PMD_0050036 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( co:PMD_0000888
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000091 ;
+ owl:someValuesFrom co:PMD_0200001
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf co:PMD_0000888 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000091 ;
+ owl:someValuesFrom co:PMD_0200001
+ ] ;
+ rdfs:label "biodegradable polymers"@en ;
+ skos:definition "Biodegradable Polymers are Polymers that can be decomposed by biological organisms into environmentally benign substances."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0001032 "https://github.com/materialdigital/core-ontology/issues/126" .
+
+
+### https://w3id.org/pmd/co/PMD_0050037
+co:PMD_0050037 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050036 ;
+ rdfs:label "polylactic acid"@en ;
+ skos:definition "Polylactic Acid is a Biodegradable Polymer produced from renewable resources such as corn starch."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050038
+co:PMD_0050038 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050036 ;
+ rdfs:label "polyhydroxyalkanoates"@en ;
+ skos:definition "Polyhydroxyalkanoates are Biodegradable Polymers that are biosynthesized by microorganisms from sugars or lipids."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050039
+co:PMD_0050039 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050036 ;
+ rdfs:label "polybutylene succinate"@en ;
+ skos:definition "Polybutylene Succinate is a Biodegradable Polymer that is a thermoplastic polyester recognized for its compostability."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050040
+co:PMD_0050040 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000546 ;
+ rdfs:label "natural ceramics"@en ;
+ skos:definition "Natural Ceramics (Traditional Ceramics) are Ceramics that are produced using conventional methods with natural raw materials such as clay and silica."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050041
+co:PMD_0050041 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050040 ;
+ rdfs:label "silicate ceramics"@en ;
+ skos:definition "Silicate Ceramics are Traditional Ceramics that are composed primarily of silicate minerals."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050042
+co:PMD_0050042 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050041 ;
+ rdfs:label "clay-based ceramics"@en ;
+ skos:definition "Clay-Based Ceramics are Silicate Ceramics that are formed from natural clays."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050043
+co:PMD_0050043 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050042 ;
+ rdfs:label "earthenware"@en ;
+ skos:definition "Earthenware is a Clay-Based Ceramic that is formed at relatively low temperatures, resulting in a porous, rustic material."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050044
+co:PMD_0050044 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050042 ;
+ rdfs:label "stoneware"@en ;
+ skos:definition "Stoneware is a Clay-Based Ceramic that is fired at higher temperatures than earthenware to yield a denser, more durable material."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050045
+co:PMD_0050045 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050042 ;
+ rdfs:label "porcelain"@en ;
+ skos:definition "Porcelain is a Clay-Based Ceramic that is distinguished by its translucency, strength, and refined appearance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050046
+co:PMD_0050046 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050041 ;
+ rdfs:label "aluminosilicates"@en ;
+ skos:definition "Aluminosilicates are Silicate Ceramics that consist of aluminum and silicon oxides."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050047
+co:PMD_0050047 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050046 ;
+ rdfs:label "mullite"@en ;
+ skos:definition "Mullite is an Aluminosilicate that is a Silicate Ceramic known for its excellent high-temperature stability."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050048
+co:PMD_0050048 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050046 ;
+ rdfs:label "kaolinite"@en ;
+ skos:definition "Kaolinite is an Aluminosilicate that is a Silicate Ceramic based on the mineral kaolinite, valued for its fine particle size and plasticity."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050049
+co:PMD_0050049 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050040 ;
+ rdfs:label "non-clay ceramics"@en ;
+ skos:definition "Non-Clay Ceramics are Traditional Ceramics that are formed from raw materials other than clay."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050050
+co:PMD_0050050 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000661 ,
+ co:PMD_0050049 ;
+ rdfs:label "glass-ceramics"@en ;
+ skos:definition "Glass-Ceramics are Non-Clay Ceramics that are produced by controlled crystallization of glass, combining properties of both glass and ceramics."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050052
+co:PMD_0050052 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050050 ;
+ rdfs:label "leucite-based glass-ceramics"@en ;
+ skos:definition "Leucite-Based Glass-Ceramics are Glass-Ceramics that are Non-Clay Ceramics containing leucite crystals to enhance thermal and mechanical properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050053
+co:PMD_0050053 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050049 ;
+ rdfs:label "fritted ceramics"@en ;
+ skos:definition "Fritted Ceramics are Non-Clay Ceramics that are manufactured by fusing and subsequently grinding glass materials."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050054
+co:PMD_0050054 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000546 ;
+ rdfs:label "technical ceramics"@en ;
+ skos:definition "Technical Ceramics (Advanced Ceramics) are Ceramics that are engineered for high-performance applications."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050055
+co:PMD_0050055 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050054 ;
+ rdfs:label "oxide ceramics"@en ;
+ skos:definition "Oxide Ceramics are Advanced Ceramics that are composed primarily of metal oxides."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050056
+co:PMD_0050056 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050055 ;
+ rdfs:label "alumina"@en ;
+ skos:definition "Alumina is an Oxide Ceramic that is an Advanced Ceramic composed of aluminum oxide, renowned for its hardness and insulation properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "Al₂O₃" .
+
+
+### https://w3id.org/pmd/co/PMD_0050057
+co:PMD_0050057 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050055 ;
+ rdfs:label "zirconia"@en ;
+ skos:definition "Zirconia is an Oxide Ceramic that is an Advanced Ceramic composed of zirconium dioxide, noted for its high strength and toughness."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "ZrO₂" .
+
+
+### https://w3id.org/pmd/co/PMD_0050058
+co:PMD_0050058 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050057 ;
+ rdfs:label "yttria-stabilized zirconia"@en ;
+ skos:definition "Yttria-Stabilized Zirconia is a Zirconia that is an Oxide Ceramic stabilized with yttria to enhance its thermal and mechanical performance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "YSZ" .
+
+
+### https://w3id.org/pmd/co/PMD_0050059
+co:PMD_0050059 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050057 ;
+ rdfs:label "magnesia-stabilized zirconia"@en ;
+ skos:definition "Magnesia-Stabilized Zirconia is a Zirconia that is an Oxide Ceramic stabilized with magnesia to improve its thermal stability."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "MSZ" .
+
+
+### https://w3id.org/pmd/co/PMD_0050060
+co:PMD_0050060 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050055 ;
+ rdfs:label "titania"@en ;
+ skos:definition "Titania is an Oxide Ceramic that is an Advanced Ceramic composed of titanium dioxide, used for its photocatalytic and pigment properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "TiO₂" .
+
+
+### https://w3id.org/pmd/co/PMD_0050061
+co:PMD_0050061 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050055 ;
+ rdfs:label "beryllia"@en ;
+ skos:definition "Beryllia is an Oxide Ceramic that is an Advanced Ceramic composed of beryllium oxide, valued for its high thermal conductivity and electrical insulation."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "BeO" .
+
+
+### https://w3id.org/pmd/co/PMD_0050062
+co:PMD_0050062 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050054 ;
+ rdfs:label "non-oxide ceramics"@en ;
+ skos:definition "Non-Oxide Ceramics are Advanced Ceramics that are composed of compounds other than metal oxides."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050063
+co:PMD_0050063 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050062 ;
+ rdfs:label "carbide ceramics"@en ;
+ skos:definition "Carbide Ceramics are Non-Oxide Ceramics that consist of metal carbides."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050064
+co:PMD_0050064 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050063 ;
+ rdfs:label "silicon carbide"@en ;
+ skos:definition "Silicon Carbide is a Carbide Ceramic that is a Non-Oxide Ceramic composed of silicon and carbon, celebrated for its high hardness and thermal conductivity."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "SiC" .
+
+
+### https://w3id.org/pmd/co/PMD_0050065
+co:PMD_0050065 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050063 ;
+ rdfs:label "tungsten carbide"@en ;
+ skos:definition "Tungsten Carbide is a Carbide Ceramic that is a Non-Oxide Ceramic composed of tungsten and carbon, recognized for its exceptional wear resistance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "WC" .
+
+
+### https://w3id.org/pmd/co/PMD_0050066
+co:PMD_0050066 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050063 ;
+ rdfs:label "boron carbide"@en ;
+ skos:definition "Boron Carbide is a Carbide Ceramic that is a Non-Oxide Ceramic composed of boron and carbon, known for its remarkable hardness and low density."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "B₄C" .
+
+
+### https://w3id.org/pmd/co/PMD_0050067
+co:PMD_0050067 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050062 ;
+ rdfs:label "nitride ceramics"@en ;
+ skos:definition "Nitride Ceramics are Non-Oxide Ceramics that are composed of metal nitrides."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050068
+co:PMD_0050068 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050067 ;
+ rdfs:label "silicon nitride"@en ;
+ skos:definition "Silicon Nitride is a Nitride Ceramic that is a Non-Oxide Ceramic composed of silicon and nitrogen, offering high fracture toughness."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "Si₃N₄" .
+
+
+### https://w3id.org/pmd/co/PMD_0050069
+co:PMD_0050069 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050067 ;
+ rdfs:label "aluminum nitride"@en ;
+ skos:definition "Aluminum Nitride is a Nitride Ceramic that is a Non-Oxide Ceramic composed of aluminum and nitrogen, prized for its high thermal conductivity."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "AlN" .
+
+
+### https://w3id.org/pmd/co/PMD_0050070
+co:PMD_0050070 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050067 ;
+ rdfs:label "boron nitride"@en ;
+ skos:definition "Boron Nitride is a Nitride Ceramic that is a Non-Oxide Ceramic composed of boron and nitrogen, with a structure analogous to graphite."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "BN" .
+
+
+### https://w3id.org/pmd/co/PMD_0050071
+co:PMD_0050071 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050062 ;
+ rdfs:label "boride ceramics"@en ;
+ skos:definition "Boride Ceramics are Non-Oxide Ceramics that consist of metal borides."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050072
+co:PMD_0050072 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050071 ;
+ rdfs:label "titanium diboride"@en ;
+ skos:definition "Titanium Diboride is a Boride Ceramic that is a Non-Oxide Ceramic composed of titanium and boron, valued for its high hardness and melting point."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "TiB₂" .
+
+
+### https://w3id.org/pmd/co/PMD_0050073
+co:PMD_0050073 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050071 ;
+ rdfs:label "zirconium diboride"@en ;
+ skos:definition "Zirconium Diboride is a Boride Ceramic that is a Non-Oxide Ceramic composed of zirconium and boron, known for its excellent thermal conductivity and stability."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "ZrB₂" .
+
+
+### https://w3id.org/pmd/co/PMD_0050074
+co:PMD_0050074 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050054 ;
+ rdfs:label "composite ceramics"@en ;
+ skos:definition "Composite Ceramics are Advanced Ceramics that are produced by combining two or more ceramic phases to enhance overall performance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050075
+co:PMD_0050075 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050074 ;
+ rdfs:label "oxide-oxide composites"@en ;
+ skos:definition "Oxide-Oxide Composites are Composite Ceramics that consist entirely of oxide ceramic phases."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050076
+co:PMD_0050076 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050075 ;
+ rdfs:label "alumina matrix composites"@en ;
+ skos:definition "Alumina Matrix Composites are Oxide-Oxide Composites that use alumina as the primary matrix reinforced by secondary oxide phases."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050077
+co:PMD_0050077 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050075 ;
+ rdfs:label "zirconia matrix composites"@en ;
+ skos:definition "Zirconia Matrix Composites are Oxide-Oxide Composites that use zirconia as the primary matrix reinforced by additional oxide phases."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050078
+co:PMD_0050078 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050074 ;
+ rdfs:label "non-oxide composites"@en ;
+ skos:definition "Non-Oxide Composites are Composite Ceramics that are formed by combining ceramic phases other than oxides."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050079
+co:PMD_0050079 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050078 ;
+ rdfs:label "silicon carbide matrix composites"@en ;
+ skos:definition "SiC Matrix Composites are Non-Oxide Composites that are built with silicon carbide as the primary matrix reinforced by other ceramic phases."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050080
+co:PMD_0050080 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050078 ;
+ rdfs:label "carbon-silicon carbide composites (carbon-silicon carbide)"@en ;
+ skos:definition "C-SiC Composites are Non-Oxide Composites that consist of a carbon matrix reinforced with silicon carbide, enhancing high-temperature performance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050081
+co:PMD_0050081 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000546 ;
+ rdfs:label "electroceramics"@en ;
+ skos:definition "Electroceramics are Ceramics that are specifically engineered for electrical, magnetic, or superconducting applications."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050082
+co:PMD_0050082 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050081 ;
+ rdfs:label "dielectric ceramics"@en ;
+ skos:definition "Dielectric Ceramics are Electroceramics that serve primarily as electrical insulators due to their high dielectric constants."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050083
+co:PMD_0050083 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050082 ;
+ rdfs:label "barium titanate"@en ;
+ skos:definition "Barium Titanate is a Dielectric Ceramic that is an Electroceramic composed of barium, titanium, and oxygen, noted for its ferroelectric properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "BaTiO₃" .
+
+
+### https://w3id.org/pmd/co/PMD_0050084
+co:PMD_0050084 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050082 ;
+ rdfs:label "lead zirconate titanate"@en ;
+ skos:definition "Lead Zirconate Titanate is a Dielectric Ceramic that is an Electroceramic composed of lead, zirconium, and titanium, renowned for its piezoelectric behavior."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean ;
+ co:PMD_0050117 "PZT" .
+
+
+### https://w3id.org/pmd/co/PMD_0050085
+co:PMD_0050085 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050081 ;
+ rdfs:label "magnetic ceramics (ferrites)"@en ;
+ skos:definition "Magnetic Ceramics are Electroceramics that exhibit magnetic properties, typically based on iron oxides combined with other metal oxides."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050086
+co:PMD_0050086 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050085 ;
+ rdfs:label "soft ferrites"@en ;
+ skos:definition "Soft Ferrites are Magnetic Ceramics that are characterized by low coercivity and high permeability, making them ideal for transformer cores."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050087
+co:PMD_0050087 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050085 ;
+ rdfs:label "hard ferrites"@en ;
+ skos:definition "Hard Ferrites are Magnetic Ceramics that are characterized by high coercivity, making them suitable for permanent magnets."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050088
+co:PMD_0050088 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050081 ;
+ rdfs:label "superconducting ceramics"@en ;
+ skos:definition "Superconducting Ceramics are Electroceramics that exhibit zero electrical resistance below a critical temperature."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050089
+co:PMD_0050089 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050088 ;
+ rdfs:label "yttrium barium copper oxide"@en ;
+ skos:definition "Yttrium Barium Copper Oxide is a Superconducting Ceramic that is composed of yttrium, barium, copper, and oxygen, notable for its high critical temperature."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050090
+co:PMD_0050090 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050088 ;
+ rdfs:label "bismuth strontium calcium copper oxide"@en ;
+ skos:definition "Bismuth Strontium Calcium Copper Oxide is a Superconducting Ceramic that is composed of bismuth, strontium, calcium, copper, and oxygen, featuring a layered crystal structure."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050091
+co:PMD_0050091 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000546 ;
+ rdfs:label "bioceramics"@en ;
+ skos:definition "Bioceramics are Ceramics that are engineered to be compatible with biological systems."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050092
+co:PMD_0050092 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050091 ;
+ rdfs:label "bioinert ceramics"@en ;
+ skos:definition "Bioinert Ceramics are Bioceramics that are designed to remain inert in biological environments to minimize adverse reactions."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050093
+co:PMD_0050093 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050092 ;
+ rdfs:label "alumina-based ceramics"@en ;
+ skos:definition "Alumina-Based Ceramics are Bioinert Ceramics that are composed primarily of alumina, valued for their biocompatibility."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050094
+co:PMD_0050094 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050092 ;
+ rdfs:label "zirconia-based ceramics"@en ;
+ skos:definition "Zirconia-Based Ceramics are Bioinert Ceramics that are composed primarily of zirconia, offering high strength and inertness."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050095
+co:PMD_0050095 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050091 ;
+ rdfs:label "bioactive ceramics"@en ;
+ skos:definition "Bioactive Ceramics are Bioceramics that interact with biological tissues to promote bonding or regeneration."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050096
+co:PMD_0050096 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050095 ;
+ rdfs:label "hydroxyapatite"@en ;
+ skos:definition "Hydroxyapatite is a Bioactive Ceramic that is composed of calcium phosphate and closely resembles the mineral component of bone."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050097
+co:PMD_0050097 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050095 ;
+ rdfs:label "bioglass"@en ;
+ skos:definition "Bioglass is a Bioactive Ceramic that is a silicate-based glass formulated to bond with and stimulate biological tissues."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050098
+co:PMD_0050098 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050091 ;
+ rdfs:label "bioresorbable ceramics"@en ;
+ skos:definition "Bioresorbable Ceramics are Bioceramics that are designed to gradually be resorbed and replaced by natural tissue."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050099
+co:PMD_0050099 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050098 ;
+ rdfs:label "tricalcium phosphate"@en ;
+ skos:definition "Tricalcium Phosphate is a Bioresorbable Ceramic that is composed of calcium phosphate, commonly used in bone grafting applications."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050100
+co:PMD_0050100 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050098 ;
+ rdfs:label "calcium sulfate"@en ;
+ skos:definition "Calcium Sulfate is a Bioresorbable Ceramic that is composed of calcium sulfate, known for its solubility in biological environments."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050101
+co:PMD_0050101 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000661 ;
+ rdfs:label "silicate glasses"@en ;
+ skos:definition "Silicate Glasses are Glasses that are composed primarily of silica."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050102
+co:PMD_0050102 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050101 ;
+ rdfs:label "soda-lime glass"@en ;
+ skos:definition "Soda-Lime Glass is a Silicate Glass that is formulated from silica, soda, and lime and is widely used in windows and containers."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050103
+co:PMD_0050103 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050102 ;
+ rdfs:label "clear float glass"@en ;
+ skos:definition "Clear Float Glass is a form of Soda-Lime Glass that is known for its clarity and uniform thickness."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050104
+co:PMD_0050104 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050102 ;
+ rdfs:label "patterned glass"@en ;
+ skos:definition "Patterned Glass is a form of Soda-Lime Glass that is modified with surface textures for decorative purposes."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050105
+co:PMD_0050105 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050102 ;
+ rdfs:label "tinted glass"@en ;
+ skos:definition "Tinted Glass is a form of Soda-Lime Glass that is treated with coloring agents to alter its light transmission."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050106
+co:PMD_0050106 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050101 ;
+ rdfs:label "borosilicate glass"@en ;
+ skos:definition "Borosilicate Glass is a Silicate Glass that is formulated with boron oxide to improve thermal resistance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050107
+co:PMD_0050107 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050106 ;
+ rdfs:label "pyrex-type glass"@en ;
+ skos:definition "Pyrex-Type Glass is a form of Borosilicate Glass that is renowned for its high resistance to thermal shock."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050108
+co:PMD_0050108 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050101 ;
+ rdfs:label "aluminosilicate glass"@en ;
+ skos:definition "Aluminosilicate Glass is a form of Silicate Glass that is specifically formulated to resist high temperatures."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050109
+co:PMD_0050109 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050101 ;
+ rdfs:label "lead glass"@en ;
+ skos:definition "Lead Glass is a Silicate Glass that is formulated with lead oxide to increase brilliance and refractive index."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050110
+co:PMD_0050110 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050109 ;
+ rdfs:label "potash lead glass"@en ;
+ skos:definition "Potash Lead Glass is a form of Lead Glass that utilizes potash as a flux in addition to lead oxide."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050111
+co:PMD_0050111 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050109 ;
+ rdfs:label "barium glass"@en ;
+ skos:definition "Barium Glass is a form of Lead Glass that is modified with barium oxide to alter its optical properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050112
+co:PMD_0050112 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050108 ;
+ rdfs:label "high-temperature resistant glass"@en ;
+ skos:definition "High-Temperature Resistant Glass is an Aluminosilicate Glass that is engineered to maintain stability at elevated temperatures."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050113
+co:PMD_0050113 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000661 ;
+ rdfs:label "non-silicate glasses"@en ;
+ skos:definition "Non-Silicate Glasses are Glasses that are not primarily composed of silica."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050114
+co:PMD_0050114 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050113 ;
+ rdfs:label "phosphate glass"@en ;
+ skos:definition "Phosphate Glass is a Non-Silicate Glass that is composed mainly of phosphate compounds, offering distinct optical properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050115
+co:PMD_0050115 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050113 ;
+ rdfs:label "borate glass"@en ;
+ skos:definition "Borate Glass is a Non-Silicate Glass that is composed mainly of boron oxide and is known for its low melting point."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050116
+co:PMD_0050116 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050113 ;
+ rdfs:label "germanate glass"@en ;
+ skos:definition "Germanate Glass is a Non-Silicate Glass that is composed primarily of germanium oxide, noted for its infrared transmission."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050118
+co:PMD_0050118 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050133 ;
+ rdfs:label "optical glass"@en ;
+ skos:definition "Optical Glass is Functional Glass that is formulated for high-precision light transmission and refractive performance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050119
+co:PMD_0050119 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050118 ;
+ rdfs:label "fused silica glass"@en ;
+ skos:definition "Fused Silica Glass is an Optical Glass that is made from pure silica, prized for its high transparency and thermal stability."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050120
+co:PMD_0050120 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050118 ;
+ rdfs:label "crown glass"@en ;
+ skos:definition "Crown Glass is an Optical Glass that is characterized by its low dispersion and high clarity."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050121
+co:PMD_0050121 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050118 ;
+ rdfs:label "flint glass"@en ;
+ skos:definition "Flint Glass is an Optical Glass that is distinguished by its high refractive index and dispersion."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050122
+co:PMD_0050122 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000661 ;
+ rdfs:label "specialty glasses"@en ;
+ skos:definition "Specialty Glasses are Advanced Glasses that are engineered for specific functional roles."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050123
+co:PMD_0050123 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050122 ;
+ rdfs:label "chemically strengthened glass"@en ;
+ skos:definition "Chemically Strengthened Glass is a Specialty Glass that is treated via chemical processes to enhance its strength."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050124
+co:PMD_0050124 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050123 ;
+ rdfs:label "ion-exchanged glass"@en ;
+ skos:definition "Ion-Exchanged Glass is a form of Chemically Strengthened Glass that is produced by exchanging ions to improve durability."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050125
+co:PMD_0050125 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050108 ,
+ co:PMD_0050123 ;
+ rdfs:label "aluminosilicate gorilla glass"@en ;
+ skos:definition "Aluminosilicate Gorilla Glass is a Chemically Strengthened Glass that is enhanced with an aluminosilicate composition for superior scratch resistance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050126
+co:PMD_0050126 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050122 ;
+ rdfs:label "toughened (tempered) glass"@en ;
+ skos:definition "Toughened Glass is a Specialty Glass that is mechanically treated to increase its strength and safety."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050127
+co:PMD_0050127 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050122 ;
+ rdfs:label "laminated glass"@en ;
+ skos:definition "Laminated Glass is a Specialty Glass that is composed of multiple bonded layers to improve safety and acoustic performance."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050128
+co:PMD_0050128 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050122 ;
+ rdfs:label "electrochromic glass"@en ;
+ skos:definition "Electrochromic Glass is a Specialty Glass that can reversibly change its light transmission properties when an electrical voltage is applied."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050129
+co:PMD_0050129 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050122 ;
+ rdfs:label "photochromic glass"@en ;
+ skos:definition "Photochromic Glass is a Specialty Glass that alters its optical properties in response to exposure to light."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050130
+co:PMD_0050130 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050122 ;
+ rdfs:label "thermochromic glass"@en ;
+ skos:definition "Thermochromic Glass is a Specialty Glass that changes its optical properties as a function of temperature."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050131
+co:PMD_0050131 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050050 ;
+ rdfs:label "lithium disilicate glass-ceramics"@en ;
+ skos:definition "Lithium Disilicate Glass-Ceramics are Glass-Ceramics that contain lithium disilicate crystals to provide high strength and aesthetic appeal."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050132
+co:PMD_0050132 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050050 ;
+ rdfs:label "transparent glass-ceramics"@en ;
+ skos:definition "Transparent Glass-Ceramics are Glass-Ceramics that are engineered to maintain optical transparency despite partial crystallization."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050133
+co:PMD_0050133 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000661 ;
+ rdfs:label "functional glass"@en ;
+ skos:definition "Functional Glass is Advanced Glass that is designed to perform specific roles beyond conventional optical applications."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050134
+co:PMD_0050134 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050133 ;
+ rdfs:label "conductive glass"@en ;
+ skos:definition "Conductive Glass is Functional Glass that has been modified to exhibit electrical conductivity."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050135
+co:PMD_0050135 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050134 ;
+ rdfs:label "indium tin oxide coated glass"@en ;
+ skos:definition "Indium Tin Oxide Coated Glass is a form of Conductive Glass that is coated with a thin film of indium tin oxide to enable electrical conduction."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050136
+co:PMD_0050136 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050134 ;
+ rdfs:label "fluorine-doped tin oxide glass"@en ;
+ skos:definition "Fluorine-Doped Tin Oxide Glass is a form of Conductive Glass that is coated with tin oxide doped with fluorine for enhanced conductivity."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050137
+co:PMD_0050137 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050133 ;
+ rdfs:label "magnetic glass"@en ;
+ skos:definition "Magnetic Glass is Functional Glass that is modified to exhibit magnetic properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050138
+co:PMD_0050138 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050137 ;
+ rdfs:label "iron-borosilicate glass"@en ;
+ skos:definition "Iron-Borosilicate Glass is a Magnetic Glass that incorporates iron and borosilicate compounds to display magnetic behavior."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050139
+co:PMD_0050139 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050137 ;
+ rdfs:label "cobalt-borosilicate glass"@en ;
+ skos:definition "Cobalt-Borosilicate Glass is a Magnetic Glass that is formulated with cobalt to enhance its magnetic properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050140
+co:PMD_0050140 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050133 ;
+ rdfs:label "nonlinear optical glass"@en ;
+ skos:definition "Nonlinear Optical Glass is Functional Glass that is engineered to display nonlinear optical responses under intense light."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050141
+co:PMD_0050141 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050140 ;
+ rdfs:label "chalcogenide glass"@en ;
+ skos:definition "Chalcogenide Glass is a Nonlinear Optical Glass that is composed of chalcogen elements, offering infrared transmission and nonlinear optical behavior."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050142
+co:PMD_0050142 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050140 ;
+ rdfs:label "tellurite glass"@en ;
+ skos:definition "Tellurite Glass is a Nonlinear Optical Glass that is formulated with tellurium oxide to achieve a high refractive index and nonlinear properties."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050143
+co:PMD_0050143 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000661 ;
+ rdfs:label "bioactive glass"@en ;
+ skos:definition "Bioactive Glass is Advanced Glass that is designed to interact beneficially with biological tissues."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050144
+co:PMD_0050144 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050143 ;
+ rdfs:label "silicate-based bioactive glass"@en ;
+ skos:definition "Silicate-Based Bioactive Glass is a Bioactive Glass that is composed primarily of silicate compounds to facilitate bonding with biological tissue."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050145
+co:PMD_0050145 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050144 ;
+ rdfs:label "45S5 bioglass"@en ;
+ skos:definition "45S5 Bioglass is a Silicate-Based Bioactive Glass with a specific composition known for its ability to bond with bone."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050146
+co:PMD_0050146 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050144 ;
+ rdfs:label "S53P4 bioglass"@en ;
+ skos:definition "S53P4 Bioglass is a Silicate-Based Bioactive Glass formulated with a distinct composition for enhanced bioactivity."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050147
+co:PMD_0050147 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050143 ;
+ rdfs:label "phosphate-based bioactive glass"@en ;
+ skos:definition "Phosphate-Based Bioactive Glass is a Bioactive Glass that is composed predominantly of phosphate compounds."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050148
+co:PMD_0050148 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050143 ;
+ rdfs:label "borate-based bioactive glass"@en ;
+ skos:definition "Borate-Based Bioactive Glass is a Bioactive Glass that is formulated with borate compounds to promote biological interaction."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050149
+co:PMD_0050149 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0000661 ;
+ rdfs:label "amorphous metal glass"@en ;
+ skos:definition "Amorphous Metal Glass is Glass that is characterized by a disordered, non-crystalline atomic structure, resembling a frozen liquid."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050150
+co:PMD_0050150 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050149 ;
+ rdfs:label "iron-based metallic glass"@en ;
+ skos:definition "Iron-Based Metallic Glass is an Amorphous Metal Glass that is predominantly composed of iron."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050151
+co:PMD_0050151 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050149 ;
+ rdfs:label "magnesium-based metallic glass"@en ;
+ skos:definition "Magnesium-Based Metallic Glass is an Amorphous Metal Glass that is primarily composed of magnesium, noted for its low density."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0050152
+co:PMD_0050152 rdf:type owl:Class ;
+ rdfs:subClassOf co:PMD_0050149 ;
+ rdfs:label "zirconium-based metallic glass"@en ;
+ skos:definition "Zirconium-Based Metallic Glass is an Amorphous Metal Glass that is composed mainly of zirconium, valued for its corrosion resistance and strength."@en ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0060005
+co:PMD_0060005 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000109 ;
+ obo:IAO_0000119 "http://purl.obolibrary.org/obo/OBI_0000938" ;
+ rdfs:label "categorical measurement datum"@en ;
+ skos:definition "A measurement datum that is reported on a categorical scale." ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0060006
+co:PMD_0060006 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000033 ;
+ rdfs:label "device specification"@en ;
+ skos:definition "A directive information entity that outlines the technical requirements, features, constraints, and performance criteria of a specific device, guiding its design, manufacturing, operation, or maintenance." ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0060007
+co:PMD_0060007 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000033 ;
+ rdfs:label "material specification"@en ;
+ skos:definition "A directive information entity that defines the composition, properties, performance criteria, and acceptable standards for a material, guiding its selection, processing, and application in a specific context." ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0060008
+co:PMD_0060008 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000104 ;
+ rdfs:label "recipe"@en ;
+ skos:definition "A plan specification that outlines the ingredients, proportions, and procedural steps required to prepare a specific product, typically in cooking, manufacturing, or chemical processes." .
+
+
+### https://w3id.org/pmd/co/PMD_0060009
+co:PMD_0060009 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000027 ;
+ rdfs:label "specification datum"@en ;
+ skos:definition "A data item that provides specification for entities" ;
+ co:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/co/PMD_0200001
+co:PMD_0200001 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000016 ;
+ obo:IAO_0000119 "European Commission: Directorate-General for Research and Innovation, Biodegradability of plastics in the open environment, Publications Office of the European Union, 2021, https://data.europa.eu/doi/10.2777/690248" ;
+ rdfs:label "Biologische Abbaubarkeit"@de ,
+ "biodegradabilty"@en ;
+ skos:definition "\"[Biodegradabilty] [...] is understood as the microbial conversion of all its organic constituents to carbon dioxide (or carbon dioxide and methane in conditions where oxygen is not present), new microbial biomass and mineral salts, within a timescale short enough not to lead to lasting harm or accumulation in the open environment.\""@en ,
+ "\"[Biologische Abbaubarkeit] [...] beschreibt die mikrobielle Umwandlung all seiner organischen Bestandteile in Kohlendioxid oder – unter sauerstofffreien Bedingungen – in Kohlendioxid und Methan, neue mikrobielle Biomasse und Mineralsalze verstanden, und zwar innerhalb eines Zeitraums, der so kurz ist, dass es nicht zu dauerhaften Schäden oder Anreicherungen in der offenen Umwelt kommt.\""@de ;
+ co:PMD_0001032 "https://github.com/materialdigital/core-ontology/issues/126" .
+
+
+### https://w3id.org/pmd/log/LOG_0000000
+:LOG_0000000 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000028
+ :LOG_1000029
+ :LOG_1000102
+ [ owl:intersectionOf ( obo:BFO_0000030
+ [ rdf:type owl:Class ;
+ owl:complementOf co:PMD_0000881
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_0000001
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000030 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_0000001
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IndustrialInventory" ;
+ rdfs:label "industrial inventory"@en ;
+ skos:definition "material product, material component, raw material, or material artifact that is ready to be sold or used and is stored in a storage facility or on factory floor"@en .
+
+
+### https://w3id.org/pmd/log/LOG_0000001
+:LOG_0000001 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000106 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000197 ;
+ owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000056 ;
+ owl:someValuesFrom [ rdf:type owl:Class ;
+ owl:unionOf ( :LOG_1000123
+ :LOG_1000128
+ )
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/IndustrialInventoryRole" ;
+ rdfs:label "industrial inventory role"@en ;
+ skos:definition "role held by some material entity when it is stored by a bussiness organization and it is intended to be supplied to a customer or to be used or consumed in some product production process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_0000002
+:LOG_0000002 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000130 ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/ConsigningProcess" ;
+ rdfs:label "consigning process"@en ;
+ skos:definition "business process that results in placing a material entity in the possession of some agent without changing the ownership until the material entity is sold" .
+
+
+### https://w3id.org/pmd/log/LOG_0000003
+:LOG_0000003 rdf:type owl:Class ;
+ rdfs:subClassOf [ owl:intersectionOf ( :LOG_1000130
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:RO_0000057 ;
+ owl:someValuesFrom :LOG_1000016
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/FreightForwardingProcess" ;
+ rdfs:label "freight forwarding process"@en ;
+ skos:definition "business process of planning and coordinating the transportation of material products on behalf of a shipper" .
+
+
+### https://w3id.org/pmd/log/LOG_0080000
+:LOG_0080000 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:IAO_0020000
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000050
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom obo:OBI_0000571
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000006 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom [ owl:intersectionOf ( :LOG_1000050
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom obo:OBI_0000571
+ ]
+ ) ;
+ rdf:type owl:Class
+ ]
+ ] ;
+ rdfs:label "manufacturer identifier"@en .
+
+
+### https://w3id.org/pmd/log/LOG_0080001
+:LOG_0080001 rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000029
+ ] ;
+ rdfs:subClassOf obo:IAO_0020000 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000029
+ ] ;
+ rdfs:label "product identifier"@en .
+
+
+### https://w3id.org/pmd/log/LOG_0080002
+:LOG_0080002 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0020000 ;
+ rdfs:label "batch identifier"@en ;
+ skos:definition "denotes all material artifact generated by one distinguishable manufacturing process run"@en .
+
+
+### https://w3id.org/pmd/log/LOG_1000000
+:LOG_1000000 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ obo:IAO_0000412 ;
+ rdfs:label "agreement"@en ;
+ skos:definition "understanding between two or more parties that contains a set of commitments on the part of the parties"@en .
+
+
+### https://w3id.org/pmd/log/LOG_1000001
+:LOG_1000001 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000000 ;
+ obo:IAO_0000412 ;
+ rdfs:label "commercial service agreement"@en ;
+ skos:definition "agreement between a customer and service provider that is about some commercial service to be provided by the service provider in exchange for compensation from the customer"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000002
+:LOG_1000002 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000001 ;
+ obo:IAO_0000412 ;
+ rdfs:label "bill of lading"@en ;
+ skos:definition "agreement between a shipper and a carrier that prescribes some consigning process"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000003
+:LOG_1000003 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/core/Core/EquipmentRole" ;
+ rdfs:label "transport equipment role"@en ;
+ skos:definition "role held by a material artifact when it is planned to be involved in or is involved in carrying out some part of a planned transportation process and that is not consumed in that planned process" .
+
+
+### https://w3id.org/pmd/log/LOG_1000004
+:LOG_1000004 rdf:type owl:Class ;
+ rdfs:subClassOf :LOG_1000000 ;
+ obo:IAO_0000412 ;
+ rdfs:label "purchase order"@en ;
+ skos:definition "agreement between a buyer and a vendor (supplier) that that contains a set of commitments on the buyer and the vendeor"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000005
+:LOG_1000005 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:IAO_0020000
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000037
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:IAO_0020000 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000037
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "lot number"@en ;
+ skos:definition "identifier that uniquely denotes a particular quantity of material entities that have shared production or transformation history"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000006
+:LOG_1000006 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:IAO_0020000
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000050
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:IAO_0020000 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000050
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "organization identifier"@en ;
+ skos:definition "identifier that identifies an organization"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000007
+:LOG_1000007 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0020000 ;
+ obo:IAO_0000412 ;
+ rdfs:label "part number"@en ;
+ skos:definition "identifier that uniquely identifies an artifact (material artifact) and that is created according to some part numbering system"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000008
+:LOG_1000008 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:IAO_0020000
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom obo:BFO_0000029
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:IAO_0020000 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom obo:BFO_0000029
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "physical location identifier"@en ;
+ skos:definition "identifier that identifies a physical location (site)"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000009
+:LOG_1000009 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000008
+ [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0040030
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:IAO_0000219 ;
+ owl:someValuesFrom :LOG_1000050
+ ]
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty co:PMD_0000004 ;
+ owl:hasValue co:PMD_0040128
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000008 ;
+ obo:IAO_0000412 ;
+ rdfs:label "global location number"@en ;
+ skos:definition "identifer that uniquely identifies a business organization or a geospatial location and complies with GS1 GLN coding scheme"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000010
+:LOG_1000010 rdf:type owl:Class ;
+ rdfs:subClassOf obo:IAO_0000030 ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/LocationIdentificationScheme" ;
+ rdfs:label "location identification scheme"@en ;
+ skos:definition "identification scheme that prescribes how unique identifiers of physical locations are formulated" .
+
+
+### https://w3id.org/pmd/log/LOG_10000105
+:LOG_10000105 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000058
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000058
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "customer"@en ;
+ skos:definition "person or organization which has a customer role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000011
+:LOG_1000011 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000054
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000054
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/iof/ontology/core/Core/Agent" ;
+ rdfs:label "agent"@en .
+
+
+### https://w3id.org/pmd/log/LOG_1000012
+:LOG_1000012 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000055
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000055
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "buyer"@en ;
+ skos:definition "person or organization which has a buyer role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000013
+:LOG_1000013 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000056
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000056
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "consignee"@en ;
+ skos:definition "person or business organization that receives some shipment"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000014
+:LOG_1000014 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000057
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000057
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "consignor"@en ;
+ skos:altLabel "shipper" ;
+ skos:definition "person or business organization that prepares and sends shipments for transport"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000015
+:LOG_1000015 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000060
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000060
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "distributor"@en ;
+ skos:definition "person or business organization when it purchases products from manufacturers and resells them to wholesalers"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000016
+:LOG_1000016 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000067
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000022 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000067
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "freight forwarder"@en ;
+ skos:definition "person or business organization when it arranges the transportation of shipments on behalf of the shipper (consignor) or consignee"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000017
+:LOG_1000017 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000050
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom obo:OBI_0000571
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ :LOG_1000050 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom obo:OBI_0000571
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "manufacturer"@en ;
+ skos:definition "organization which has a manufacturer role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000018
+:LOG_1000018 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000062
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000062
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "retailer"@en ;
+ skos:definition "person or business organization who buys products from wholesalers and manufacturers and resells them to end users"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000019
+:LOG_1000019 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000047
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000057
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000057
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Shipper" ;
+ rdfs:label "shipper"@en ;
+ skos:definition "person or business organization that prepares and sends shipments for transport" .
+
+
+### https://w3id.org/pmd/log/LOG_1000020
+:LOG_1000020 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000063
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000063
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "supplier"@en ;
+ skos:definition "person or organization which has a supplier role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000021
+:LOG_1000021 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000070
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000022 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000070
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "carrier"@en ;
+ skos:definition "person or business organization who provides transportation services"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000022
+:LOG_1000022 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000064
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000020 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000064
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "service provider"@en ;
+ skos:definition "person or organization which has a service provider role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000023
+:LOG_1000023 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( co:PMD_0000881
+ :LOG_1000050
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000071
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000071
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "supply chain agent"@en ;
+ skos:definition "person or business organization who supplies material products or commercial services to other agents in a supply chain"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000024
+:LOG_1000024 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( :LOG_1000011
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000072
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf :LOG_1000011 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000072
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "wholesaler"@en ;
+ skos:definition "person or business organization that buys products from distributors and resells them to retailers or other business organizations"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000025
+:LOG_1000025 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000073
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000073
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "cargo"@en ;
+ skos:definition "material entity that is transported using a transport equipment by a carrier"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000026
+:LOG_1000026 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000082
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000082
+ ] ;
+ obo:IAO_0000412 "https://spec.industrialontologies.org/ontology/supplychain/SupplyChain/Load" ;
+ rdfs:label "load"@en ;
+ skos:definition "collection of material entities which share the same transportation and transfer history" .
+
+
+### https://w3id.org/pmd/log/LOG_1000027
+:LOG_1000027 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000104
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000104
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "maintainable material item"@en ;
+ skos:definition "material artifact or engineered system which has the maintainable material item role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000028
+:LOG_1000028 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000105
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000105
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "material component"@en ;
+ skos:definition "material entity which has the material component role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000029
+:LOG_1000029 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000078
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000078
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "material product"@en ;
+ skos:definition "material entity which has the material product role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000030
+:LOG_1000030 rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000106
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty obo:BFO_0000196 ;
+ owl:someValuesFrom :LOG_1000106
+ ] ;
+ obo:IAO_0000412 ;
+ rdfs:label "material resource"@en ;
+ skos:definition "material entity which has the material resource role"@en-us .
+
+
+### https://w3id.org/pmd/log/LOG_1000031
+:LOG_1000031 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ rdfs:label "department"@en ;
+ skos:definition "object aggregate that is part of an organisation and consists of persons that are members of the same organisation"@en ;
+ logistics:PMD_0000060 "true"^^xsd:boolean .
+
+
+### https://w3id.org/pmd/log/LOG_1000032
+:LOG_1000032 rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ;
+ obo:IAO_0000412