diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..b277ef1e --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,7 @@ +Thank you for opening a Pull Request! Before submitting, please confirm: + +- [ ] I have not copied concept definitions from sources with licenses incompatible with voc4cat's CC0 license (e.g., copyleft licenses like CC-BY-SA). +- [ ] I have cited sources that influenced my definitions (in Influenced by IRIs) or from which definitions were adapted (in Source Vocab IRI). Note: You may cite IUPAC Goldbook as an influence, but not copy its definitions verbatim due to its CC-BY-SA license. +- [ ] I have created a meaningful PR title and referenced any related issues. + + diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index cd7b1028..c7c5c6ed 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -7,6 +7,7 @@ on: # forks. Since the workflow only accesses the xlsx and turtle files, but does # not run any code, it is safe to use pull_request_target. More info: # https://securitylab.github.com/resources/github-actions-preventing-pwn-requests/ + # zizmor: ignore[dangerous-triggers] OK as per comment above pull_request_target: branches: - main @@ -14,12 +15,17 @@ on: workflow_dispatch: env: - FORCE_COLOR: "1" # Make tool output pretty. PIP_DISABLE_PIP_VERSION_CHECK: "1" PIP_PROGRESS_BAR: "off" LOGLEVEL: "DEBUG" RUN_URL: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +permissions: {} + jobs: build_vocab: name: Merge & build vocabulary @@ -29,22 +35,22 @@ jobs: timeout-minutes: 10 permissions: - # Give the default GITHUB_TOKEN write permission to commit to the PR branch. - contents: write + contents: write # Give the default GITHUB_TOKEN write permission to commit to the PR branch. steps: - name: Checkout PR branch into cwd - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 with: # Checkout the fork/head-repository to push changes to the fork. # Without this the base repository will be checked out and committed to. repository: ${{ github.event.pull_request.head.repo.full_name }} - # Checkout the branch made in the fork. ref: ${{ github.head_ref }} + # Be specific about keeping credentials (it is the default) + persist-credentials: true - name: Checkout main branch into directory _main_branch/ - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 with: ref: main path: _main_branch @@ -52,6 +58,8 @@ jobs: sparse-checkout: | vocabularies/ fetch-depth: 1 + # Be specific about keeping credentials (it is the default) + persist-credentials: true - uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 with: @@ -62,19 +70,16 @@ jobs: python -VV python -m pip install --upgrade pip setuptools wheel - # install tagged version - python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v0.10.0 + # Select to install a stable tagged version or main branch (in development) + python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v1.0.0 # python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@main # install custom pylode 2.x (adds sorted collections, # uses URIs as fragment IDs and is git-installable) python -m pip install git+https://github.com/dalito/pyLODE.git@nfdi4cat-2.x - # Example for installing from private repo: - # python -m pip install git+https://anon:${{ SECRETS.READ_PAT_VOC4CAT }}@github.com/dalito/voc4cat-tool.git@main - - name: Set dynamic environment variables. - run: | + run: | # zizmor: ignore[github-env] safe without user controllable input echo "RUN_DATE=$(date +'%Y-%m-%dT%H%M')" >> $GITHUB_ENV - name: Run voc4cat (pre-convert checks) @@ -91,13 +96,13 @@ jobs: voc4cat convert --config _main_branch/idranges.toml --logfile outbox/voc4cat.log --outdir outbox inbox-excel-vocabs/ if [ ! -f outbox/*.ttl ]; then echo "No ttl file in outbox. Building joined vocabulary ttl-file from individual ttl-files in vocabulary." - voc4cat transform --join --logfile outbox/voc4cat.log --outdir outbox/ vocabularies/ + voc4cat transform --join --config _main_branch/idranges.toml --logfile outbox/voc4cat.log --outdir outbox/ vocabularies/ fi - name: Run voc4cat (post-convert checks) run: | # check all ttl file(s) in outbox - voc4cat check --config _main_branch/idranges.toml --logfile outbox/voc4cat.log outbox/ + voc4cat check --redundant-hierarchies --config _main_branch/idranges.toml --logfile outbox/voc4cat.log outbox/ # check if vocabulary changes are allowed voc4cat check --config _main_branch/idranges.toml --logfile outbox/voc4cat.log --ci-post _main_branch/vocabularies outbox/ @@ -105,20 +110,23 @@ jobs: run: | voc4cat docs --logfile outbox/voc4cat.log --force outbox/ - - name: Split vocabulary and merge into vocabulary dir (in PR branch) + - name: Split vocabulary, merge into vocabulary dir (in PR branch) and update provenance info run: | - voc4cat transform --split --inplace --logfile outbox/voc4cat.log --outdir outbox_new_voc outbox/ + voc4cat transform --split --inplace --config idranges.toml --logfile outbox/voc4cat.log --outdir outbox_new_voc outbox/ voc4cat-merge --logfile outbox/voc4cat.log outbox_new_voc/ vocabularies/ # copy xlsx to outbox so that the xlsx file is part of the artifact find inbox-excel-vocabs -name '*.xlsx' -exec cp {} -t outbox/ \; git status + # Add/update dct:created and dct:modified base on git history + voc4cat transform --prov-from-git --inplace --config idranges.toml --logfile outbox/voc4cat.log vocabularies/ - name: Run voc4cat (re-build updated Excel file and joined turtle vocabulary file) # Passing the config is important to make use of the prefixes therein. run: | mkdir -p outbox/updated-xlsx-ttl - voc4cat transform --config idranges.toml --logfile outbox/voc4cat.log -O outbox/updated-xlsx-ttl --join vocabularies/ - voc4cat convert --config idranges.toml --logfile outbox/voc4cat.log --template templates/voc4cat_template_043.xlsx outbox/updated-xlsx-ttl + voc4cat transform --join --config idranges.toml --logfile outbox/voc4cat.log --outdir outbox/updated-xlsx-ttl vocabularies/ + # Using a template is optional and gives just a warning if missing. + voc4cat convert --config idranges.toml --logfile outbox/voc4cat.log --template templates/default_sheets.xlsx outbox/updated-xlsx-ttl - name: Store artifacts if: ${{ always() }} diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 68287733..4c58acb7 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -23,31 +23,39 @@ on: workflow_dispatch: env: - FORCE_COLOR: "1" # Make tool output pretty. PIP_DISABLE_PIP_VERSION_CHECK: "1" PIP_PROGRESS_BAR: "off" LOGLEVEL: "DEBUG" +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +permissions: {} + jobs: build: name: Development build of vocabulary & documentation permissions: - # Required for peaceiris/actions-gh-pages below - contents: write + contents: write # Required for peaceiris/actions-gh-pages below runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 with: # Using fetch-depth 0 is the only way to get all tags which are needed for building docs. fetch-depth: 0 + # Be specific about keeping credentials (it is the default) + persist-credentials: true - name: Checkout gh-pages branch to dir publish/ - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 with: ref: gh-pages path: publish fetch-depth: 1 + # Be specific about keeping credentials (it is the default) + persist-credentials: true - uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 with: @@ -58,8 +66,8 @@ jobs: python -VV python -m pip install --upgrade pip setuptools wheel - # install tagged version - python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v0.10.0 + # Select to install a stable tagged version or main branch (in development) + python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v1.0.0 # python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@main # install custom pylode 2.x @@ -79,7 +87,7 @@ jobs: find publish/dev/ -type f \( -name "*.xlsx" -o -name "*.ttl" -o -name "*.xml" \) -delete cp -r vocabularies/. publish/dev/ # Build joined turtle - voc4cat transform --logfile publish/dev/voc4cat.log --join publish/dev/ + voc4cat transform --join --config idranges.toml --logfile publish/dev/voc4cat.log publish/dev/ - name: Run voc4cat (build pyLODE HTML documentation) run: | @@ -90,7 +98,8 @@ jobs: - name: Run voc4cat (build current Excel file) # Passing the config is important to make use of the prefixes therein. run: | - voc4cat convert --config idranges.toml --logfile publish/dev/voc4cat.log --template templates/voc4cat_template_043.xlsx publish/dev/ + # Using a template is optional and gives just a warning if missing. + voc4cat convert --config idranges.toml --logfile publish/dev/voc4cat.log --template templates/default_sheets.xlsx publish/dev/ - name: Run voc4cat (build vocabulary in xml/rdf from Excel file) run: | diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index b78e418b..d17ee776 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -14,14 +14,19 @@ on: branches: - main -permissions: - pull-requests: write - contents: read +permissions: {} + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true jobs: check-pr-submission: name: Check PR submission best practices runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write # to post a message to PR steps: - name: Check if PR is from main branch of fork diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b90a847f..217c39ec 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,32 +16,40 @@ on: types: [published] env: - FORCE_COLOR: "1" # Make tool output pretty. PIP_DISABLE_PIP_VERSION_CHECK: "1" PIP_PROGRESS_BAR: "off" LOGLEVEL: "DEBUG" VOC4CAT_VERSION: ${{github.ref_name}} # use release tag as version +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +permissions: {} + jobs: build: name: Release vocabulary & documentation permissions: - # Required for peaceiris/actions-gh-pages below - contents: write + contents: write # Required for peaceiris/actions-gh-pages below runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 with: # Using fetch-depth 0 is the only way to get all tags which are needed for building docs. fetch-depth: 0 + # Be specific about keeping credentials (it is the default) + persist-credentials: true - name: Checkout gh-pages branch to dir publish/ - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 with: ref: gh-pages path: publish fetch-depth: 1 + # Be specific about keeping credentials (it is the default) + persist-credentials: true - uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 with: @@ -52,8 +60,8 @@ jobs: python -VV python -m pip install --upgrade pip setuptools wheel - # install tagged version - python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v0.10.0 + # Select to install a stable tagged version or main branch (in development) + python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v1.0.0 # python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@main # install custom pylode 2.x @@ -71,7 +79,7 @@ jobs: find publish/latest/ -type f \( -name "*.xlsx" -o -name "*.ttl" -o -name "*.xml" \) -delete cp -r vocabularies/. publish/latest/ # Build joined turtle - voc4cat transform --logfile publish/latest/voc4cat.log --join publish/latest/ + voc4cat transform --join --config idranges.toml --logfile publish/latest/voc4cat.log publish/latest/ - name: Run voc4cat (build pyLODE HTML documentation) run: | @@ -82,7 +90,8 @@ jobs: - name: Run voc4cat (build current Excel file) # Passing the config is important to make use of the prefixes therein. run: | - voc4cat convert --config idranges.toml --logfile publish/latest/voc4cat.log --template templates/voc4cat_template_043.xlsx publish/latest/ + # Using a template is optional and gives just a warning if missing. + voc4cat convert --config idranges.toml --logfile publish/latest/voc4cat.log --template templates/default_sheets.xlsx publish/latest/ - name: Run voc4cat (build vocabulary in xml/rdf from Excel file) # Passing the config is important to make use of the prefixes therein. @@ -91,8 +100,8 @@ jobs: - name: Copy release to release-name directory run: | - mkdir -p publish/${{ github.ref_name }} - cp -r publish/latest/. publish/${{ github.ref_name }}/ + mkdir -p publish/${GITHUB_REF_NAME} + cp -r publish/latest/. publish/${GITHUB_REF_NAME}/ - name: Build Sphinx documentation (website) run: | diff --git a/.zenodo.json b/.zenodo.json index 1bb811a1..0b0fa54c 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -21,12 +21,12 @@ { "name": "Schumann, Julia", "orcid": "0000-0002-4041-0165", - "affiliation": "Physics Department and CSMB, Humboldt-Universität zu Berlin, Zum Großen Windkanal 2, 12489 Berlin, Germany" + "affiliation": "Physics Department and CSMB, Humboldt-Universit�t zu Berlin, Zum Gro�en Windkanal 2, 12489 Berlin, Germany" }, { - "name": "Götte, Michael", + "name": "G�tte, Michael", "orcid": "0009-0008-1278-8890", - "affiliation": "Helmholtz-Zentrum Berlin für Materialien und Energie, 14109 Berlin, Germany" + "affiliation": "Helmholtz-Zentrum Berlin f�r Materialien und Energie, 14109 Berlin, Germany" }, { "name": "Borgelt, Hendrik", @@ -41,7 +41,7 @@ { "name": "Terboven, Carla", "orcid": "0009-0004-3786-0773", - "affiliation": "Helmholtz-Zentrum Berlin für Materialien und Energie" + "affiliation": "Helmholtz-Zentrum Berlin f�r Materialien und Energie" }, { "name": "Flecken, Franziska", diff --git a/README_TEMPLATE.md b/README_TEMPLATE.md index eb4fedfc..efb687f6 100644 --- a/README_TEMPLATE.md +++ b/README_TEMPLATE.md @@ -1,28 +1,29 @@ # Voc4Cat Template Help -> The presence of this file indicates that this vocabuary is based on [voc4cat-template](https://github.com/nfdi4cat/voc4cat-template).
+> The presence of this file indicates that this vocabulary is based on [voc4cat-template](https://github.com/nfdi4cat/voc4cat-template).
> To **avoid merge conflicts on updates**, this file should mainly change via merging an updated version from the template repository. Therefore, please consider submitting your requests for changes/improvements as [issue in the voc4cat-template](https://github.com/nfdi4cat/voc4cat-template/issues/new?template=Blank+issue) repository. ## How to start? ### Trying out the workflow -To experience the workflow, we suggest that you try contributing to [voc4cat](https://github.com/nfdi4cat/voc4cat) which is a "deployment" of this repository. +To test the workflow, you may try contributing to [voc4cat](https://github.com/nfdi4cat/voc4cat) or explore past PRs in that repository. Voc4Cat is a "deployment" of this repository. If you are interested in understanding the technical details or in developing your own vocabulary, follow the instructions [below](#how-to-use-this-template-for-your-own-vocabularies). All vocabularies based on this template have the same standard contribution process of - get and update the vocabulary file (xlsx), -- submit a pull request with the updated file, +- submit a pull request with the updated xlsx file, - collaborate on the pull request with editors or other github users, -After approval your pull request is ready to be merged by the editors. The merge will include your contribution into the SKOS-vocabulary file in the `vocabularies`-folder. Upon merge the corresponding documentation and a joined turtle file will be automatically built and published to gh-pages. +After approval, your pull request is ready to be merged by the editors. +The merge will include your contribution into the SKOS-vocabulary file in the `vocabularies`-folder, rebuild the vocabulary documentation and create a joined turtle file that will be published to gh-pages alongside an updated xlsx file. -The Excel/xlsx files submitted as pull request are automatically checked and (if all is good) converted to turtle. -By using a vocabulary-specific configuration more thorough validation can be activated, +Excel/xlsx files submitted in pull requests are automatically checked and (if all is good) converted to turtle. +A vocabulary-specific configuration enables extended validation, e.g. if terms get removed in a PR or if correct IRIs are used. -To validate IRIs the configuration supports ID-ranges (similar to [OBO idrange](https://oboacademy.github.io/obook/howto/idrange/) but we use the [toml](https://toml.io/)-format). +To validate IRIs the configuration supports ID-ranges (similar to [OBO idrange](https://oboacademy.github.io/obook/howto/idrange/) but in [toml](https://toml.io/)-format). The idea is that every author gets their own range of IDs to consume. This allows independent work and avoids using the same ID repeatedly. @@ -40,9 +41,9 @@ For all versions, multiple files are stored (see https://github.com/nfdi4cat/voc In addition to the specific versions, an index page is generated that links to all vocabularies and the tagged releases. It is placed at the root of gh-pages (`https://{gh-org-name}.github.io/{repository-name}/`). -### Creating vocabularies for catalysis or catalytic reaction engineering +### Creating vocabularies for catalysis, materials science or reaction engineering -Please strongly consider contributing to [voc4cat](https://github.com/nfdi4cat/voc4cat) instead of creating your own. +Please strongly consider contributing to the [voc4cat](https://github.com/nfdi4cat/voc4cat) vocabulary instead of creating another one. ## Contributing to vocabularies @@ -56,16 +57,14 @@ Here are the steps for submitting updates in Excel. - The most recent version of the vocabulary is always available via github-pages. - The general url is `https://{gh-org-name}.github.io/{repository-name}/dev/{vocabulary-name}.xlsx` - For example in nfdi4cat/voc4cat-template the most recent vocabulary `vocab_example` can be downloaded from [https://nfdi4cat.github.io/voc4cat-template/dev/vocab_example.xlsx](https://nfdi4cat.github.io/voc4cat-template/dev/vocab_example.xlsx) - - For setting up a new vocabulary, use the xlsx-file from the templates-folder. -- Make changes to the Excel file. If you want to add something new you need to [request a range of IDs](https://github.com/{gh-org-name}/{repository-name}/issues/new/choose) for you. +- Before you can add something new you need to [request a range of IDs](https://github.com/{gh-org-name}/{repository-name}/issues/new/choose) to assign new IRIs to your additions. - Create a fork of the vocabulary repository (if you don't yet have one) or pull the latest changes to your fork (via "Sync fork" button in GUI). - Create a feature branch for your contribution (via GitHub GUI or `git switch -c name-of-branch`) - Add the xlsx file to your clone of the repository into the folder `inbox-excel-vocabs` - The name of the file must match the vocabulary that you want to update (e.g. myvoc.xlsx to update a vocabulary named "myvoc"). - - New vocabularies will be named like the xlsx-file (minus the `.xlsx`-extension). - Create a pull request with the updated Excel-file on GitHub. - - Please describe your changes and the motivation for the changes in the pull request note or link to an issue with this information. - This will help reviewers to understand the proposed change and decide about it. + - Describe your changes and the motivation for the changes in the pull request note or link to an issue with this information. + This will help reviewers to understand the proposed change better. - Your pull request will be processed automatically by a CI/CD pipeline that typically runs less than a minute. - Review the artifacts/logs generated by the CI pipeline. - The [workflow artifact](https://docs.github.com/en/actions/managing-workflow-runs/downloading-workflow-artifacts) will contain an updated xlsx file. @@ -115,23 +114,23 @@ This adds all commits made in the template´s main branch to your new repository - Configure GitHub pages to use as source "deploy from a branch" and select the branch `gh-pages` (Settings > Pages > Build and deployment) - Optionally - Add a different license for your vocabulary. - - Adjust the styling of the Excel template for your vocabulary. +- Optionally provide a custom Excel template with extra sheets, see [documentation](https://nfdi4cat.github.io/voc4cat-tool/migration-to-v1.0.html#step-3-generate-v1-0-excel-template). After these steps your repository should work just like [voc4cat](https://github.com/nfdi4cat/voc4cat). -### Keeping your vocabulary repository in sync with the voc4cat-template +### Keeping your vocabulary repository in sync with voc4cat-template -To review the changes made in the template after you last pulled it use: +To review the changes made in the template in version 1.x.y and compare to when you last pulled it use: ```gitattributes -git fetch https://github.com/nfdi4cat/voc4cat-template +git fetch https://github.com/nfdi4cat/voc4cat-template tag v1.x.y git diff ...FETCH_HEAD ``` If you want to take over the changes, pull them into your repository ```gitattributes -git pull https://github.com/nfdi4cat/voc4cat-template +git pull https://github.com/nfdi4cat/voc4cat-template tag v1.x.y ``` and push the change to the remote repository. @@ -152,18 +151,24 @@ The justfile helps to tun (almost) the same commands as are used in the GitHub w This makes local testing of a modified vocabulary xlsx-file easier. Read the header of the justfile for more info on setting up your environment. -Once you have `just` installed type the command `just` at the root of the git-project to list the available commands. For version 0.8.7 of the template, it gives: +Once you have `just` installed type the command `just` at the root of the git-project to list the available commands. For version 1.0.0 of the template, it gives: ```bash $ just Available recipes: all # Run all steps as in gh-actions: check xlsx, convert to SKOS, build docs, re-build xlsx - check # Check the voc4cat.xlsx file in inbox/ for errors + + [environment] clean # Remove all generated files/directories + setup # Run initial setup (run this first) + upgrade # Upgrades voc4cat-tool installation + + [individual steps] + check # Check the voc4cat.xlsx file in inbox/ for errors convert # Convert the voc4cat.xlsx file in inbox/ to turtle docs # Run voc4cat (build HTML documentation from ttl files) - setup # Run initial setup (run this first) - update # Updates voc4cat-tool installation + join # Join individual ttl files in vocabularies/ to one turtle file in outbox/ + prov # Add provenance information to all ttl files in vocabularies/ xlsx # Rebuild the xlsx file from the joined ttl file. ``` diff --git a/idranges.toml b/idranges.toml index 0251002f..03a697cb 100644 --- a/idranges.toml +++ b/idranges.toml @@ -1,6 +1,9 @@ # ==== General Configuration ==== # Documentation of the TOML format: https://toml.io/en/latest +# Configuration format version (for future compatibility) +config_version = "v1.0" + # Allow only a single vocabulary (default) or multiple vocabularies in the repository. single_vocab = true @@ -11,30 +14,86 @@ single_vocab = true [vocabs.voc4cat] # Length of integer IDs in vocabulary. IDs will be left-padded with zeros to specified length. id_length = 7 -# permanent part of IRIs defined in the vocabulary +# permanent part of IRIs defined in the vocabulary (used to construct concept IRIs) permanent_iri_part = "https://w3id.org/nfdi4cat/voc4cat_" +# ==== ConceptScheme Metadata ==== + +# MANDATORY: IRI for the vocabulary (skos:ConceptScheme) +vocabulary_iri = "https://w3id.org/nfdi4cat/voc4cat" + +# Optional: Registered (or preferred) prefix for this vocabulary +prefix = "voc4cat" + +# MANDATORY: Title of the vocabulary +title = "Voc4Cat - A SKOS vocabulary for Catalysis." + +# MANDATORY: General description of the vocabulary +description = """The Voc4Cat vocabulary is a collection of concepts (or "terms") from the field of catalysis and related disciplines such as chemical engineering or materials science. For each concept, Voc4Cat provides a unique resolvable persistent identifier and a carefully written textual definition, which reflects the community's shared understanding of the concept's meaning. + +By using the identifiers provided by Voc4Cat to annotate data, rather than just words and symbols, ambiguity as to what is meant is avoided. Producing Voc4Cat-annotated data contributes to realising the vision of machine-actionability described as the ultimate goal of the FAIR principles. + +See also [voc4cat help](https://nfdi4cat.github.io/voc4cat/).""" + +# MANDATORY: Date of creation (ISO-8601 format: YYYY-MM-DD) +created_date = "2023-06-29" + +# MANDATORY: Creator(s) - multi-line text, each line: " " +# Original TTL had URI reference to https://w3id.org/nfdi4cat/ +creator = """ +David Linke https://orcid.org/0000-0002-5898-1820 +Nikolaos Moustakas https://orcid.org/0000-0002-6242-2167 +""" + +# Optional: Publisher(s) - multi-line text, each line: " " +publisher = "NFDI4Cat Consortium https://w3id.org/nfdi4cat/" + +# Optional: Custodian(s) - multi-line text, each line: " " +custodian = """ +Voc4Cat curator group https://github.com/orgs/nfdi4cat/teams/voc4cat-curators +""" + +# MANDATORY: URL of repository or online vocabulary editor +repository = "https://github.com/nfdi4cat/voc4cat" + +# Optional: URL of homepage +homepage = "https://nfdi4cat.github.io/voc4cat/" + +# Optional: DOI or other catalogue persistent identifier +catalogue_pid = "https://doi.org/10.5281/zenodo.8313340" + +# Optional: URL of documentation or guidelines +documentation = "https://nfdi4cat.github.io/voc4cat/" + +# Optional: URL of issue tracker +issue_tracker = "https://github.com/nfdi4cat/voc4cat/issues" + +# Optional: URL of helpdesk +# helpdesk = "" + +# Optional: multi-line text, each line with one URL of a SHACL profile the vocabulary conforms to +conforms_to = "https://w3id.org/nfdi4cat/voc4cat/profile/vp4cat/" + +# ==== Checks Configuration ==== # Section to configure checks (useful in CI pipeline) [vocabs.voc4cat.checks] # Deleting allowed (relevant in CI-pipeline) allow_delete = false +# ==== Prefix Map ==== +# Namespace prefix mappings used for CURIE expansion/compression [vocabs.voc4cat.prefix_map] voc4cat = "https://w3id.org/nfdi4cat/voc4cat_" +# ==== ID Ranges ==== # Section of IDranges for coordinating the allocation of numeric ID ranges to -# contributors for each vocabulary. Each idrange contains the same keys: -# -# first_id = - first reserved integer ID in idrange -# last_id = - last reserved integer ID in idrange -# gh_name = "" - user or organisation name on github -# orcid = " or " - contributor's ORCID, e.g. "0000-0002-1825-0097" or "https://orcid.org/0000-0002-1825-0097" -# ror_id = "" - ROR identifier of home organisation, e.g. "https://ror.org/04fa4r544" +# contributors for each vocabulary. [[vocabs.voc4cat.id_range]] first_id = 1 last_id = 5000 gh_name = "nmoust" +name = "Nikolaos Moustakas" orcid = "0000-0002-6242-2167" ror_id = "https://ror.org/029hg0311" @@ -42,6 +101,7 @@ ror_id = "https://ror.org/029hg0311" first_id = 5001 last_id = 6000 gh_name = "dalito" +name = "David Linke" orcid = "0000-0002-5898-1820" ror_id = "https://ror.org/029hg0311" @@ -49,6 +109,7 @@ ror_id = "https://ror.org/029hg0311" first_id = 6001 last_id = 7000 gh_name = "markdoerr" +name = "Mark Doerr" orcid = "0000-0003-3270-6895" ror_id = "https://ror.org/00r1edq15" @@ -56,6 +117,7 @@ ror_id = "https://ror.org/00r1edq15" first_id = 7001 last_id = 7100 gh_name = "schumnannj" +name = "Julia Schumann" orcid = "0000-0002-4041-0165" ror_id = "https://ror.org/01hcx6992" @@ -63,6 +125,7 @@ ror_id = "https://ror.org/01hcx6992" first_id = 7101 last_id = 7200 gh_name = "HendrikBorgelt" +name = "Hendrik Borgelt" orcid = "0000-0001-5886-7860" ror_id = "https://ror.org/01k97gp34" @@ -70,6 +133,7 @@ ror_id = "https://ror.org/01k97gp34" first_id = 7201 last_id = 7300 gh_name = "RoteKekse" +name = "Michael Goette" orcid = "0009-0008-1278-8890" ror_id = "https://ror.org/02aj13c28" @@ -91,6 +155,7 @@ ror_id = "https://ror.org/00f7hpc57" first_id = 7371 last_id = 7390 gh_name = "sofia-angeli" +name = "Sofia Angeli" orcid = "0000-0001-8623-047X" ror_id = "https://ror.org/04t3en479" @@ -98,6 +163,7 @@ ror_id = "https://ror.org/04t3en479" first_id = 7391 last_id = 7790 gh_name = "HendrikBorgelt" +name = "Hendrik Borgelt" orcid = "0000-0001-5886-7860" ror_id = "https://ror.org/01k97gp34" @@ -105,6 +171,7 @@ ror_id = "https://ror.org/01k97gp34" first_id = 7791 last_id = 7850 gh_name = "FranziFlecken" +name = "Franziska Flecken" orcid = "0000-0003-4418-7455" ror_id = "https://ror.org/04t3en479" @@ -112,6 +179,7 @@ ror_id = "https://ror.org/04t3en479" first_id = 7851 last_id = 7860 gh_name = "kara-mela" +name = "Melanie Nentwich" orcid = "0000-0002-5850-4469" ror_id = "https://ror.org/01js2sh04" @@ -132,6 +200,7 @@ ror_id = "https://ror.org/03v4gjf40" first_id = 8081 last_id = 8100 gh_name = "carla-terboven" +name = "Carla Terboven" orcid = "0009-0004-3786-0773" ror_id = "https://ror.org/02aj13c28" @@ -139,6 +208,8 @@ ror_id = "https://ror.org/02aj13c28" first_id = 8101 last_id = 8150 gh_name = "arjunneyyathalaCat" +name = "Arjun Neyyathala" orcid = "0000-0001-5161-4801" ror_id = "https://ror.org/04t3en479" + # Continue with as many [[vocabs.voc4cat.id_range]] sections as needed. diff --git a/inbox-excel-vocabs/README.md b/inbox-excel-vocabs/README.md index 2609a440..39aa2077 100644 --- a/inbox-excel-vocabs/README.md +++ b/inbox-excel-vocabs/README.md @@ -1,9 +1,8 @@ **Please drop/add your edited Excel-vocabulary file into this folder and create a pull request.** -See also [../README.md](../README.md) for the steps in the contribution process. +If you need more guidance, see the [How-to-Cuontribute](https://nfdi4cat.github.io/voc4cat/docs_usage/how-to-contribute.html) guide. -- If required change the file name back to its original name `voc4cat.xlsx`. -- Copy your file with the updates to this folder. +- Make sure that the file with your contributions is named exactly `voc4cat.xlsx`. Using the correct file name is essential to start the processing. - Add the file to git and submit a pull request. On GitHub the file can be added by dropping it to this folder. - If there are no validation errors the turtle files of the vocabulary in `vocabularies/voc4cat/` are updated via gh-actions and committed to your pull request. The Excel file is removed from the pull request. - If there are errors, you can examine them in the run log. diff --git a/justfile b/justfile index b73b8bcb..5696b122 100644 --- a/justfile +++ b/justfile @@ -40,7 +40,7 @@ setup: upgrade: uv tool install --upgrade voc4cat --with git+https://github.com/dalito/pyLODE.git@nfdi4cat-2.x -# Check the voc4cat.xlsx file in inbox/ for errors +# Check the *.xlsx file(s) in inbox/ for errors [group('individual steps')] check: _fake_actions_env @voc4cat --version @@ -57,14 +57,14 @@ convert: _fake_actions_env @voc4cat convert --config _main_branch/idranges.toml --logfile outbox/voc4cat.log --outdir outbox inbox-excel-vocabs/ @if [ -z "$(ls outbox/*.ttl 2>/dev/null)" ]; then \ @echo "No ttl file in outbox. Building joined vocabulary ttl-file from individual ttl-files in vocabulary.\n" && \ - @voc4cat transform --join --logfile outbox/voc4cat.log --outdir outbox/ vocabularies/ ;\ + @voc4cat transform --join --config _main_branch/idranges.toml --logfile outbox/voc4cat.log --outdir outbox/ vocabularies/ ;\ fi #=== post-convert checks === # Delete xlsx in outbox that may be present from former runs - @rm -f outbox/voc4cat.xlsx + @rm -f outbox/*.xlsx # check all ttl file(s) in outbox - @voc4cat check --config _main_branch/idranges.toml --logfile outbox/voc4cat.log outbox/ + @voc4cat check --redundant-hierarchies --config _main_branch/idranges.toml --logfile outbox/voc4cat.log outbox/ # check if vocabulary changes are allowed @voc4cat check --config _main_branch/idranges.toml --logfile outbox/voc4cat.log --ci-post _main_branch/vocabularies outbox/ @@ -75,14 +75,19 @@ docs: # Rebuild the xlsx file from the joined ttl file. [group('individual steps')] -xlsx: - @rm -f outbox/voc4cat.xlsx - @voc4cat convert --config idranges.toml --logfile outbox/voc4cat.log --template templates/voc4cat_template_043.xlsx outbox/ +xlsx: _fake_actions_env + @rm -f outbox/*.xlsx + @voc4cat convert --config _main_branch/idranges.toml --logfile outbox/voc4cat.log --template templates/default_sheets.xlsx outbox/ # Join individual ttl files in vocabularies/ to one turtle file in outbox/ [group('individual steps')] join: - @voc4cat transform --logfile outbox/voc4cat.log -O outbox --join vocabularies/ + @voc4cat transform --join --config idranges.toml --logfile outbox/voc4cat.log --outdir outbox vocabularies/ + +# Add provenance information to all ttl files in vocabularies/ +[group('individual steps')] +prov: + voc4cat transform --prov-from-git --inplace --config idranges.toml --logfile outbox/voc4cat.log vocabularies/ # Run all steps as in gh-actions: check xlsx, convert to SKOS, build docs, re-build xlsx all: check convert docs xlsx diff --git a/templates/README.md b/templates/README.md index 845fdcb3..e7d509f9 100644 --- a/templates/README.md +++ b/templates/README.md @@ -1,52 +1,11 @@ ## Excel templates -The templates here match structure-wise with the templates in [Voc4Cat-tool](https://github.com/nfdi4cat/voc4cat-tool) of the same version number. +With version v1.0.0 of voc4cat-tool xlsx-templates have become optional. -### Version 0.4.3 +Use this folder to provide your own custom template, for example, with a help or an about sheet. +If you name the template `default_sheets.xlsx` it will be picked up automatically +(this name is pre-configured in gh-actions). +Note that templates may not contain any of the sheets that are dynamically created in v1.0.0. -#### Revision 2025-07a - -- Switch from ChildrenIRIs to ParentIRIs for concept hierarchy representation. -- Move template version from sheet "Introduction" to "Concept Scheme". - The sheet "Introduction" sheet is no longer required but still present. - -#### Revision 2025-02a - -- Update help to reflect the prefix sheet is read-only. -- Update introduction to reflect progress of tooling. -- Adjust column widths for better compatibility with new IRI notation with qualifier. - -#### Revision 2023-08b - -- Cells version and modified date in concept scheme sheet are now optional. Updated notes accordingly. - -#### Revision 2023-08a - -- Changed included example data to be consistent with improved validation. -- Updated help on filling out provenance fields. - -#### Revision 2023-07a - -- Fixed typos. - -#### Revision 2023-06a - -- Corrected the pre-defined prefix for voc4cat. - -#### Revision 2023-03a - -The following is different in the voc4cat-template (`voc4cat_template_043.xlsx`): - -- Recreated "Introduction" sheet for voc4cat and added NFDI4Cat logo -- Replaced "README" sheet by "Help" sheet that is adapted for voc4cat -- Sheets "Concept Scheme", "Concepts", "Additional Concept Features", "Collections" - - Renamed columns to be more consistent (e.g. URI vs. IRI, plural column names for columns that accept lists) - - Changed all data entry ranges to tables. The tables are named as the sheet they are in. The table names are not used in code so far but may be in the future. -- Sheet "Additional Concept Features": Removed Excel formula in Concept-IRI-column since the formula could easily lead to mixing-up previously added relations. -- Sheet "Prefix Sheet": Added a xlsx-validation rule to check that prefixes do not end with a colon. - -The identical template `voc4cat_template_043.xlsx` is included in [voc4cat-tool/templates](https://github.com/nfdi4cat/voc4cat-tool/tree/main/templates). - -### Earlier template versions - -Earlier template versions which are not listed here should not be used. +Therefore, **earlier template versions cannot be used** without adaption, +see [documentation](https://nfdi4cat.github.io/voc4cat-tool/migration-to-v1.0.html#step-4-generate-v1-0-excel-template). diff --git a/templates/default_sheets.xlsx b/templates/default_sheets.xlsx new file mode 100644 index 00000000..0f253888 Binary files /dev/null and b/templates/default_sheets.xlsx differ diff --git a/templates/voc4cat_template_043.xlsx b/templates/voc4cat_template_043.xlsx deleted file mode 100644 index 6606f230..00000000 Binary files a/templates/voc4cat_template_043.xlsx and /dev/null differ diff --git a/vocabularies/README.md b/vocabularies/README.md index 62072624..d14ed2a7 100644 --- a/vocabularies/README.md +++ b/vocabularies/README.md @@ -1,3 +1,3 @@ **Directory to collect the vocabularies in rdf/turtle format** -...that were created using the voc4cat workflow and its CI/CD pipeline. +Created using the voc4cat-template workflow and its CI/CD pipeline. diff --git a/vocabularies/voc4cat/0000001.ttl b/vocabularies/voc4cat/0000001.ttl deleted file mode 100644 index d4317c6d..00000000 --- a/vocabularies/voc4cat/0000001.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000001"^^xsd:token ; - skos:broader ; - skos:definition "A process which catalyzes a chemical reaction through the absorption of sufficient light energy by a photocatalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photocatalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000002.ttl b/vocabularies/voc4cat/0000002.ttl deleted file mode 100644 index cc8301ab..00000000 --- a/vocabularies/voc4cat/0000002.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000002"^^xsd:token ; - skos:altLabel "photocatalytic material"@en ; - skos:broader ; - skos:definition "A material that absorbs photons (light) of appropriate energy and initiates or accelerates a photochemical reaction, while it regenerates itself after each reaction cycle."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photocatalyst"@en ; -. diff --git a/vocabularies/voc4cat/0000003.ttl b/vocabularies/voc4cat/0000003.ttl deleted file mode 100644 index 2f65b152..00000000 --- a/vocabularies/voc4cat/0000003.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000003"^^xsd:token ; - skos:broader ; - skos:definition "A material with electrical conductivity between that of a conductor and an insulator."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "semiconductor"@en ; -. diff --git a/vocabularies/voc4cat/0000004.ttl b/vocabularies/voc4cat/0000004.ttl deleted file mode 100644 index ba6b5153..00000000 --- a/vocabularies/voc4cat/0000004.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000004"^^xsd:token ; - skos:broader ; - skos:definition "Broad families of semiconducting materials (e.g., metal oxides) that can be used as catalysts in various applications."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "categories of semiconductors"@en ; -. diff --git a/vocabularies/voc4cat/0000005.ttl b/vocabularies/voc4cat/0000005.ttl deleted file mode 100644 index a1d608b8..00000000 --- a/vocabularies/voc4cat/0000005.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000005"^^xsd:token ; - skos:broader ; - skos:definition "A chemical compound formed by the reaction of a metal with oxygen."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "metal oxide"@en ; -. diff --git a/vocabularies/voc4cat/0000006.ttl b/vocabularies/voc4cat/0000006.ttl deleted file mode 100644 index f4375c8e..00000000 --- a/vocabularies/voc4cat/0000006.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000006"^^xsd:token ; - skos:broader ; - skos:definition "Characteristic properties of a semiconductor used in catalysis. These properties determine its performance in the studied catalytic application."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "semiconductor property"@en ; -. diff --git a/vocabularies/voc4cat/0000007.ttl b/vocabularies/voc4cat/0000007.ttl deleted file mode 100644 index 16f0a705..00000000 --- a/vocabularies/voc4cat/0000007.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000007"^^xsd:token ; - skos:altLabel "EF"@en ; - skos:broader ; - skos:definition "The energy level in a semiconductor where the probability of finding an electron is 0.5."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "Fermi level"@en ; -. diff --git a/vocabularies/voc4cat/0000008.ttl b/vocabularies/voc4cat/0000008.ttl deleted file mode 100644 index 0c06ec50..00000000 --- a/vocabularies/voc4cat/0000008.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000008"^^xsd:token ; - skos:broader ; - skos:definition "The degree of a three-dimensional structural order of atoms which constitute the crystal lattice of a material."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "crystallinity"@en ; -. diff --git a/vocabularies/voc4cat/0000009.ttl b/vocabularies/voc4cat/0000009.ttl deleted file mode 100644 index c1d7780c..00000000 --- a/vocabularies/voc4cat/0000009.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000009"^^xsd:token ; - skos:broader ; - skos:definition "The range of pore sizes in a material."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "pore size distribution"@en ; -. diff --git a/vocabularies/voc4cat/0000010.ttl b/vocabularies/voc4cat/0000010.ttl deleted file mode 100644 index 904006ad..00000000 --- a/vocabularies/voc4cat/0000010.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000010"^^xsd:token ; - skos:altLabel - "Eg"@en , - "energy bandgap"@en ; - skos:broader ; - skos:definition "The energy difference between a semiconductor’s valence band top and conduction band bottom, which is required to excite an electron from the former to the latter."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "bandgap energy"@en ; -. diff --git a/vocabularies/voc4cat/0000011.ttl b/vocabularies/voc4cat/0000011.ttl deleted file mode 100644 index 59caf957..00000000 --- a/vocabularies/voc4cat/0000011.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000011"^^xsd:token ; - skos:altLabel "VB"@en ; - skos:broader ; - skos:definition "The band of energy levels in a solid fully occupied by electrons at 0 K (273.15 °C)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "valence band"@en ; -. diff --git a/vocabularies/voc4cat/0000012.ttl b/vocabularies/voc4cat/0000012.ttl deleted file mode 100644 index 18a4d06e..00000000 --- a/vocabularies/voc4cat/0000012.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000012"^^xsd:token ; - skos:altLabel "CB"@en ; - skos:broader ; - skos:definition "The energy band of electronic levels of partially or fully filled mobile electrons in a metal or a semiconductor."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "conduction band"@en ; -. diff --git a/vocabularies/voc4cat/0000013.ttl b/vocabularies/voc4cat/0000013.ttl deleted file mode 100644 index a6f60d55..00000000 --- a/vocabularies/voc4cat/0000013.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000013"^^xsd:token ; - skos:altLabel "SSA"@en ; - skos:broader ; - skos:definition "Α measure of the total surface area of a material per unit mass or volume."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "specific surface area"@en ; -. diff --git a/vocabularies/voc4cat/0000014.ttl b/vocabularies/voc4cat/0000014.ttl deleted file mode 100644 index b4c50511..00000000 --- a/vocabularies/voc4cat/0000014.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000014"^^xsd:token ; - skos:broader ; - skos:definition "Techniques used to modify the properties of a catalyst, with the aim to increase its efficiency in a catalytic application."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "modification technique"@en ; -. diff --git a/vocabularies/voc4cat/0000015.ttl b/vocabularies/voc4cat/0000015.ttl deleted file mode 100644 index bca30c6e..00000000 --- a/vocabularies/voc4cat/0000015.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000015"^^xsd:token ; - skos:broader ; - skos:definition "The introduction of foreign atoms into a semiconductor leading to the formation of new energy levels and charge concentrations."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "doping"@en ; -. diff --git a/vocabularies/voc4cat/0000016.ttl b/vocabularies/voc4cat/0000016.ttl deleted file mode 100644 index b09e7b57..00000000 --- a/vocabularies/voc4cat/0000016.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000016"^^xsd:token ; - skos:broader ; - skos:definition "The form in which the catalyst is introduced to the reaction chamber. This can include e.g., powders, pellets or thin films deposited on a substrate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-4041-0165 Julia Schumann generalized the definition"@en ; - skos:inScheme ; - skos:prefLabel "catalyst form"@en ; -. diff --git a/vocabularies/voc4cat/0000017.ttl b/vocabularies/voc4cat/0000017.ttl deleted file mode 100644 index 88105414..00000000 --- a/vocabularies/voc4cat/0000017.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000017"^^xsd:token ; - skos:broader ; - skos:definition "A catalyst introduced to the reaction chamber in the form of a powder."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "powdered catalyst"@en ; -. diff --git a/vocabularies/voc4cat/0000018.ttl b/vocabularies/voc4cat/0000018.ttl deleted file mode 100644 index 30ccfce9..00000000 --- a/vocabularies/voc4cat/0000018.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000018"^^xsd:token ; - skos:broader ; - skos:definition "Mass of a powdered catalyst used for an experiment."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "powder mass"@en ; -. diff --git a/vocabularies/voc4cat/0000019.ttl b/vocabularies/voc4cat/0000019.ttl deleted file mode 100644 index 9fb1c6c4..00000000 --- a/vocabularies/voc4cat/0000019.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000019"^^xsd:token ; - skos:broader ; - skos:definition "A catalyst introduced to the reaction chamber in the form of a thin film. To form a thin film, a (powdered) catalyst is deposited on a substrate (e.g., glass or metal) using an appropriate deposition technique."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-4041-0165 Julia Schumann generalized the definition"@en ; - skos:inScheme ; - skos:prefLabel "thin film"@en ; -. diff --git a/vocabularies/voc4cat/0000020.ttl b/vocabularies/voc4cat/0000020.ttl deleted file mode 100644 index db31a499..00000000 --- a/vocabularies/voc4cat/0000020.ttl +++ /dev/null @@ -1,20 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000020"^^xsd:token ; - skos:altLabel - "immobilization"@en , - "immobilization technique"@en ; - skos:broader ; - skos:definition "A technique used to deposit (immobilize) a (powdered) catalyst on a substate. These techniques include (but are not limited to): doctor blading, spin coating, spray coating, etc.."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - ; - skos:prefLabel "deposition technique"@en ; -. diff --git a/vocabularies/voc4cat/0000021.ttl b/vocabularies/voc4cat/0000021.ttl deleted file mode 100644 index 984f46ad..00000000 --- a/vocabularies/voc4cat/0000021.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000021"^^xsd:token ; - skos:altLabel "spray-coating"@en ; - skos:broader ; - skos:definition "A technique used to deposit uniform thin films onto a substrate by spraying a solution of the material onto the surface."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "spray coating"@en ; -. diff --git a/vocabularies/voc4cat/0000022.ttl b/vocabularies/voc4cat/0000022.ttl deleted file mode 100644 index f768bf28..00000000 --- a/vocabularies/voc4cat/0000022.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000022"^^xsd:token ; - skos:broader ; - skos:definition "A tape-casting method used to deposit thin films of a catalyst onto the surface of a substrate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "doctor blading"@en ; -. diff --git a/vocabularies/voc4cat/0000023.ttl b/vocabularies/voc4cat/0000023.ttl deleted file mode 100644 index 1287bd46..00000000 --- a/vocabularies/voc4cat/0000023.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000023"^^xsd:token ; - skos:altLabel - "spin casting"@en , - "spin-casting"@en , - "spin-coating"@en ; - skos:broader ; - skos:definition "A technique used to deposit uniform thin films onto a substrate (e.g., metal or glass) by spinning at high speeds a solution (paste) of the material onto the surface."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "spin coating"@en ; -. diff --git a/vocabularies/voc4cat/0000024.ttl b/vocabularies/voc4cat/0000024.ttl deleted file mode 100644 index dfc79fc2..00000000 --- a/vocabularies/voc4cat/0000024.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000024"^^xsd:token ; - skos:broader ; - skos:definition "The substate onto which a (powdered) catalyst is deposited. Such substrates include glass surfaces (e.g., borosilicate glass or conductive glass like ITO and FTO), ceramic substrates (e.g., alumina) or metal substrates (e.g., Ti foils, stainless steel etc.)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - ; - skos:prefLabel "substrate"@en ; -. diff --git a/vocabularies/voc4cat/0000025.ttl b/vocabularies/voc4cat/0000025.ttl deleted file mode 100644 index 3226b93e..00000000 --- a/vocabularies/voc4cat/0000025.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000025"^^xsd:token ; - skos:broader ; - skos:definition "The material that the substrate is made of. Common materials include: glass (conductive or not), ceramics and metal."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "substrate material"@en ; -. diff --git a/vocabularies/voc4cat/0000026.ttl b/vocabularies/voc4cat/0000026.ttl deleted file mode 100644 index 302dbd58..00000000 --- a/vocabularies/voc4cat/0000026.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000026"^^xsd:token ; - skos:broader ; - skos:definition "A flat surface made of a metal (e.g., titanium, stainless steel) serving as a substrate for the deposition of a catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "metallic substrate"@en ; -. diff --git a/vocabularies/voc4cat/0000027.ttl b/vocabularies/voc4cat/0000027.ttl deleted file mode 100644 index c9592866..00000000 --- a/vocabularies/voc4cat/0000027.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000027"^^xsd:token ; - skos:broader ; - skos:definition "A flat surface made of glass serving as a substrate for the deposition of a catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - ; - skos:prefLabel "glass substrate"@en ; -. diff --git a/vocabularies/voc4cat/0000028.ttl b/vocabularies/voc4cat/0000028.ttl deleted file mode 100644 index cea606e1..00000000 --- a/vocabularies/voc4cat/0000028.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000028"^^xsd:token ; - skos:altLabel - "FTO"@en , - "FTO glass"@en ; - skos:broader ; - skos:definition "Transparent conductive metal oxide (fluorine doped tin oxide) that can be used in the fabrication of transparent electrodes for thin films."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "fluorine doped tin oxide coated glass"@en ; -. diff --git a/vocabularies/voc4cat/0000029.ttl b/vocabularies/voc4cat/0000029.ttl deleted file mode 100644 index cfa430b1..00000000 --- a/vocabularies/voc4cat/0000029.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000029"^^xsd:token ; - skos:altLabel - "ITO"@en , - "ITO glass"@en ; - skos:broader ; - skos:definition "Transparent conductive metal oxide (indium tin oxide) that can be used in the fabrication of transparent electrodes for thin films."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "indium tin oxide coated glass"@en ; -. diff --git a/vocabularies/voc4cat/0000030.ttl b/vocabularies/voc4cat/0000030.ttl deleted file mode 100644 index 74660f90..00000000 --- a/vocabularies/voc4cat/0000030.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000030"^^xsd:token ; - skos:broader ; - skos:definition "A resistant to thermal shock type of glass, composed mainly of silica and boron trioxide."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "borosilicate glass"@en ; -. diff --git a/vocabularies/voc4cat/0000031.ttl b/vocabularies/voc4cat/0000031.ttl deleted file mode 100644 index 14e36248..00000000 --- a/vocabularies/voc4cat/0000031.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000031"^^xsd:token ; - skos:altLabel "quartz"@en ; - skos:broader ; - skos:definition "A type of pure silicon dioxide, highly crystalline glass that allows the transmission of light in the UV wavelength range."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "quartz glass"@en ; -. diff --git a/vocabularies/voc4cat/0000032.ttl b/vocabularies/voc4cat/0000032.ttl deleted file mode 100644 index bf56bcbb..00000000 --- a/vocabularies/voc4cat/0000032.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000032"^^xsd:token ; - skos:broader ; - skos:definition "A surface made of a ceramic material (e.g., alumina) serving as a substrate for the deposition of a catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "ceramic substrate"@en ; -. diff --git a/vocabularies/voc4cat/0000033.ttl b/vocabularies/voc4cat/0000033.ttl deleted file mode 100644 index 2456767b..00000000 --- a/vocabularies/voc4cat/0000033.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000033"^^xsd:token ; - skos:broader ; - skos:definition "The diamensions of the substrate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - ; - skos:prefLabel "substrate dimension"@en ; -. diff --git a/vocabularies/voc4cat/0000034.ttl b/vocabularies/voc4cat/0000034.ttl deleted file mode 100644 index 8398beea..00000000 --- a/vocabularies/voc4cat/0000034.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000034"^^xsd:token ; - skos:broader ; - skos:definition "The width of the substrate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "substrate width"@en ; -. diff --git a/vocabularies/voc4cat/0000035.ttl b/vocabularies/voc4cat/0000035.ttl deleted file mode 100644 index 3bc26e15..00000000 --- a/vocabularies/voc4cat/0000035.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000035"^^xsd:token ; - skos:broader ; - skos:definition "The depth of the substrate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "substrate depth"@en ; -. diff --git a/vocabularies/voc4cat/0000036.ttl b/vocabularies/voc4cat/0000036.ttl deleted file mode 100644 index 9a8b3b86..00000000 --- a/vocabularies/voc4cat/0000036.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000036"^^xsd:token ; - skos:broader ; - skos:definition "The thickness of the substrate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "substrate thickness"@en ; -. diff --git a/vocabularies/voc4cat/0000037.ttl b/vocabularies/voc4cat/0000037.ttl deleted file mode 100644 index 84e2562f..00000000 --- a/vocabularies/voc4cat/0000037.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000037"^^xsd:token ; - skos:altLabel "substrate surface area"@en ; - skos:broader - , - ; - skos:definition "The surface area of the substrate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "substrate area"@en ; -. diff --git a/vocabularies/voc4cat/0000038.ttl b/vocabularies/voc4cat/0000038.ttl deleted file mode 100644 index 90c60db7..00000000 --- a/vocabularies/voc4cat/0000038.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000038"^^xsd:token ; - skos:broader ; - skos:definition "A thin film of the catalyst deposited on an appropriate for the application substrate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "deposited sample"@en ; -. diff --git a/vocabularies/voc4cat/0000039.ttl b/vocabularies/voc4cat/0000039.ttl deleted file mode 100644 index 53d749ac..00000000 --- a/vocabularies/voc4cat/0000039.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000039"^^xsd:token ; - skos:broader ; - skos:definition "Mass of catalyst deposited onto the surface of a substrate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "thin film mass"@en ; -. diff --git a/vocabularies/voc4cat/0000040.ttl b/vocabularies/voc4cat/0000040.ttl deleted file mode 100644 index b837a46f..00000000 --- a/vocabularies/voc4cat/0000040.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000040"^^xsd:token ; - skos:broader ; - skos:definition "The diamensions of the - deposited on the substrate - thin film."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - ; - skos:prefLabel "thin film dimension"@en ; -. diff --git a/vocabularies/voc4cat/0000041.ttl b/vocabularies/voc4cat/0000041.ttl deleted file mode 100644 index 8d66536d..00000000 --- a/vocabularies/voc4cat/0000041.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000041"^^xsd:token ; - skos:broader ; - skos:definition "The width of the film of the deposited catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "thin film width"@en ; -. diff --git a/vocabularies/voc4cat/0000042.ttl b/vocabularies/voc4cat/0000042.ttl deleted file mode 100644 index 91eae49a..00000000 --- a/vocabularies/voc4cat/0000042.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000042"^^xsd:token ; - skos:broader ; - skos:definition "The thickness of the film of the deposited catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "thin film thickness"@en ; -. diff --git a/vocabularies/voc4cat/0000043.ttl b/vocabularies/voc4cat/0000043.ttl deleted file mode 100644 index ecca3eaa..00000000 --- a/vocabularies/voc4cat/0000043.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000043"^^xsd:token ; - skos:broader ; - skos:definition "The depth of the film of the deposited catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "thin film depth"@en ; -. diff --git a/vocabularies/voc4cat/0000044.ttl b/vocabularies/voc4cat/0000044.ttl deleted file mode 100644 index 53ec69bb..00000000 --- a/vocabularies/voc4cat/0000044.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000044"^^xsd:token ; - skos:broader ; - skos:definition "The area of the substrate covered by the deposited catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "thin film area"@en ; -. diff --git a/vocabularies/voc4cat/0000045.ttl b/vocabularies/voc4cat/0000045.ttl deleted file mode 100644 index cb85f7a0..00000000 --- a/vocabularies/voc4cat/0000045.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000045"^^xsd:token ; - skos:broader ; - skos:definition "The process by which one or more chemical reactions are performed with the aim of converting a reactant or starting material into a product or multiple products."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "synthesis"@en ; -. diff --git a/vocabularies/voc4cat/0000046.ttl b/vocabularies/voc4cat/0000046.ttl deleted file mode 100644 index 3494aa73..00000000 --- a/vocabularies/voc4cat/0000046.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000046"^^xsd:token ; - skos:broader ; - skos:definition "Thorough search of available literature on the research topic of interest using online research platforms (e.g, Scopus, Google Scholar, Web of Science, Research Gate etc.) and / or libraries. Relevant literature can be found in the form of publications, books, abstracts and conference presentations."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "literature research"@en ; -. diff --git a/vocabularies/voc4cat/0000047.ttl b/vocabularies/voc4cat/0000047.ttl deleted file mode 100644 index 85b69fed..00000000 --- a/vocabularies/voc4cat/0000047.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000047"^^xsd:token ; - skos:broader ; - skos:definition "Assembly of literature research to include only the most relevant sources of information for the application / experiment / catalysts of interest."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "literature collection"@en ; -. diff --git a/vocabularies/voc4cat/0000048.ttl b/vocabularies/voc4cat/0000048.ttl deleted file mode 100644 index f08070a3..00000000 --- a/vocabularies/voc4cat/0000048.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000048"^^xsd:token ; - skos:broader ; - skos:definition "Addition and organization of relevant literature of interest using a citation management software (e.g., Mendeley, Zotero, EndNote etc.) allowing for easy access and categorization."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "literature organization"@en ; -. diff --git a/vocabularies/voc4cat/0000049.ttl b/vocabularies/voc4cat/0000049.ttl deleted file mode 100644 index b520d380..00000000 --- a/vocabularies/voc4cat/0000049.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000049"^^xsd:token ; - skos:altLabel - "synthesis design"@en , - "synthetic method"@en ; - skos:broader ; - skos:definition "Necessary steps needed to follow to reach the desired catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "synthesis procedure"@en ; -. diff --git a/vocabularies/voc4cat/0000050.ttl b/vocabularies/voc4cat/0000050.ttl deleted file mode 100644 index 3f72c0b5..00000000 --- a/vocabularies/voc4cat/0000050.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000050"^^xsd:token ; - skos:broader ; - skos:definition "Duration of each synthesis step needed to synthesize the desired catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "synthesis duration"@en ; -. diff --git a/vocabularies/voc4cat/0000051.ttl b/vocabularies/voc4cat/0000051.ttl deleted file mode 100644 index 2b7a54dc..00000000 --- a/vocabularies/voc4cat/0000051.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000051"^^xsd:token ; - skos:broader ; - skos:definition "Temperature externally applied (if necessary) in any of the synthesis step. Higher temperature values can be observed if an exothermic reaction takes place during the synthesis."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "synthesis temperature"@en ; -. diff --git a/vocabularies/voc4cat/0000052.ttl b/vocabularies/voc4cat/0000052.ttl deleted file mode 100644 index 74ad3f43..00000000 --- a/vocabularies/voc4cat/0000052.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000052"^^xsd:token ; - skos:broader ; - skos:definition "The pH value in each of the synthesis steps."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "synthesis pH"@en ; -. diff --git a/vocabularies/voc4cat/0000053.ttl b/vocabularies/voc4cat/0000053.ttl deleted file mode 100644 index 35b445bf..00000000 --- a/vocabularies/voc4cat/0000053.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000053"^^xsd:token ; - skos:broader ; - skos:definition "Pressure applied (if necessary) in any of the synthesis step. Changes in the pressure may be observed if variations in the temperature of the reaction occur (e.g., exothermic reaction)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "synthesis pressure"@en ; -. diff --git a/vocabularies/voc4cat/0000054.ttl b/vocabularies/voc4cat/0000054.ttl deleted file mode 100644 index 203fd034..00000000 --- a/vocabularies/voc4cat/0000054.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000054"^^xsd:token ; - skos:altLabel - "calcination"@en , - "heat treatment"@en , - "heat-treatment"@en ; - skos:broader ; - skos:definition "Heat treatment to reach the desired final catalyst. The parameters of the heat treatment can vary between each calcination step."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "calcination step"@en ; -. diff --git a/vocabularies/voc4cat/0000055.ttl b/vocabularies/voc4cat/0000055.ttl deleted file mode 100644 index b5cacfa4..00000000 --- a/vocabularies/voc4cat/0000055.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000055"^^xsd:token ; - skos:altLabel "gaseous environment in calcination"@en ; - skos:broader ; - skos:definition "A gas flow under which the calcination step takes place (e,g,, Ar or synthetic air)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "calcination gaseous environment"@en ; -. diff --git a/vocabularies/voc4cat/0000056.ttl b/vocabularies/voc4cat/0000056.ttl deleted file mode 100644 index 387ea612..00000000 --- a/vocabularies/voc4cat/0000056.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000056"^^xsd:token ; - skos:altLabel "gas flow rate in calcination"@en ; - skos:broader ; - skos:definition "The flow of gas (usually in ml min-1) used in the calcination steps during synthesis."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "calcincation gas flow rate"@en ; -. diff --git a/vocabularies/voc4cat/0000057.ttl b/vocabularies/voc4cat/0000057.ttl deleted file mode 100644 index 2cd9d2b1..00000000 --- a/vocabularies/voc4cat/0000057.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000057"^^xsd:token ; - skos:broader ; - skos:definition "Initial temperature of the calcination step."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "calcination initial temperature"@en ; -. diff --git a/vocabularies/voc4cat/0000058.ttl b/vocabularies/voc4cat/0000058.ttl deleted file mode 100644 index 4fff094a..00000000 --- a/vocabularies/voc4cat/0000058.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000058"^^xsd:token ; - skos:broader ; - skos:definition "Final temperature of the calcination step."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "calcination final temperature"@en ; -. diff --git a/vocabularies/voc4cat/0000059.ttl b/vocabularies/voc4cat/0000059.ttl deleted file mode 100644 index 875d5fcc..00000000 --- a/vocabularies/voc4cat/0000059.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000059"^^xsd:token ; - skos:broader ; - skos:definition "Rate of increasing or decreasing the temperature during the calcination step. Usually mentioned in K min-1."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "calcination heating rate"@en ; -. diff --git a/vocabularies/voc4cat/0000060.ttl b/vocabularies/voc4cat/0000060.ttl deleted file mode 100644 index 2e03fd99..00000000 --- a/vocabularies/voc4cat/0000060.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000060"^^xsd:token ; - skos:broader ; - skos:definition "Time (usually in h) for which a desired temperature is held."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "calcination dwelling time"@en ; -. diff --git a/vocabularies/voc4cat/0000061.ttl b/vocabularies/voc4cat/0000061.ttl deleted file mode 100644 index 77aa0a73..00000000 --- a/vocabularies/voc4cat/0000061.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000061"^^xsd:token ; - skos:broader ; - skos:definition "Equipment used in each step of the synthesis of the catalysts. The equipment can include (but not limited to): crucibles, pH meters, condensers, volumetric cylinders, centrifuges, test tubes, flasks, beakers, mechanical shakers, pipettes, syringes, magnetic stirrers, heating plates, filters, funnels, and digital balances."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "synthesis equipment"@en ; -. diff --git a/vocabularies/voc4cat/0000062.ttl b/vocabularies/voc4cat/0000062.ttl deleted file mode 100644 index cf5e165e..00000000 --- a/vocabularies/voc4cat/0000062.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000062"^^xsd:token ; - skos:broader ; - skos:definition "Chemical substances used in the synthesis process of a desired catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "chemical substance for synthesis"@en ; -. diff --git a/vocabularies/voc4cat/0000063.ttl b/vocabularies/voc4cat/0000063.ttl deleted file mode 100644 index fc5a0b84..00000000 --- a/vocabularies/voc4cat/0000063.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000063"^^xsd:token ; - skos:broader ; - skos:definition "Mass of chemicals used for synthesis."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "mass of chemical substance for synthesis"@en ; -. diff --git a/vocabularies/voc4cat/0000064.ttl b/vocabularies/voc4cat/0000064.ttl deleted file mode 100644 index 60573d4e..00000000 --- a/vocabularies/voc4cat/0000064.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000064"^^xsd:token ; - skos:broader ; - skos:definition "Volume of chemicals used for synthesis."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "volume of chemical substance for synthesis"@en ; -. diff --git a/vocabularies/voc4cat/0000065.ttl b/vocabularies/voc4cat/0000065.ttl deleted file mode 100644 index 4a7a5e6b..00000000 --- a/vocabularies/voc4cat/0000065.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000065"^^xsd:token ; - skos:broader ; - skos:definition "Concentration of chemicals used for synthesis."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "concentration of chemical substance for synthesis"@en ; -. diff --git a/vocabularies/voc4cat/0000066.ttl b/vocabularies/voc4cat/0000066.ttl deleted file mode 100644 index 83c32584..00000000 --- a/vocabularies/voc4cat/0000066.ttl +++ /dev/null @@ -1,35 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000066"^^xsd:token ; - skos:altLabel "characterization"@en ; - skos:broader ; - skos:definition "Techniques used to identify the (physico)chemical, morphological, structural, mechanical, optical and electrical properties of the syntesized catalysts. Characterization is performed after the synthesis of the catalysts to evaluate the success of the synthetic approach, but also after the completion of the evaluation of the materials in a reaction to ensure their stability under the selected experimental parameters."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "characterization technique"@en ; -. diff --git a/vocabularies/voc4cat/0000067.ttl b/vocabularies/voc4cat/0000067.ttl deleted file mode 100644 index 340edbf5..00000000 --- a/vocabularies/voc4cat/0000067.ttl +++ /dev/null @@ -1,23 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000067"^^xsd:token ; - skos:altLabel - "X-ray emission spectrometry"@en , - "X-ray fluorescence spectrometry"@en , - "X-ray fluorescence spectroscopy"@en , - "XES"@en , - "XRES"@en , - "XRF"@en , - "XRF spectrometry"@en , - "XRF spectroscopy"@en ; - skos:broader ; - skos:definition "A non-destructive analytical technique which uses a high-energy X-ray source to expose a material and monitors the emitted characteristic fluorescent X-Rays."@en ; - skos:exactMatch ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "X-ray fluorescence"@en ; -. diff --git a/vocabularies/voc4cat/0000068.ttl b/vocabularies/voc4cat/0000068.ttl deleted file mode 100644 index a0d4327e..00000000 --- a/vocabularies/voc4cat/0000068.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000068"^^xsd:token ; - skos:altLabel "EELS"@en ; - skos:broadMatch ; - skos:broader ; - skos:definition "An analytical technique used to measure the energy loss of electrons passing through a sample."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electron energy loss spectroscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000069.ttl b/vocabularies/voc4cat/0000069.ttl deleted file mode 100644 index c27fbab3..00000000 --- a/vocabularies/voc4cat/0000069.ttl +++ /dev/null @@ -1,20 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000069"^^xsd:token ; - skos:altLabel - "RAMAN"@en , - "Raman"@en , - "Raman scattering spectrometry"@en , - "Raman spectrometry"@en , - "raman scattering spectroscopy"@en ; - skos:broader ; - skos:definition "A spectroscopy technique studying the vibrational modes of molecules, by measuring the intensity and frequency of scattered by the sample of monochromatic light."@en ; - skos:exactMatch ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "Raman spectroscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000070.ttl b/vocabularies/voc4cat/0000070.ttl deleted file mode 100644 index ee872916..00000000 --- a/vocabularies/voc4cat/0000070.ttl +++ /dev/null @@ -1,20 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000070"^^xsd:token ; - skos:altLabel - "AFM"@en , - "SFM"@en , - "atomic force imaging"@en , - "atomic-force microscopy"@en , - "scanning force microscopy"@en ; - skos:broader ; - skos:definition "A high-resolution imaging technique that measures the interaction between a sharp probe and the sample’s surface to create a three-dimensional image of the surface’s morphology."@en ; - skos:exactMatch ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "atomic force microscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000071.ttl b/vocabularies/voc4cat/0000071.ttl deleted file mode 100644 index 84444b80..00000000 --- a/vocabularies/voc4cat/0000071.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000071"^^xsd:token ; - skos:altLabel - "DSC"@en , - "differential scanning calorimetric (DSC) analysis"@en , - "differential scanning calorimetric analysis"@en ; - skos:broader ; - skos:definition "A thermal analysis technique which compares the heat flow in a sample and a reference material under controlled applied temperature profiles."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "differential scanning calorimetry"@en ; -. diff --git a/vocabularies/voc4cat/0000072.ttl b/vocabularies/voc4cat/0000072.ttl deleted file mode 100644 index 3e0695bc..00000000 --- a/vocabularies/voc4cat/0000072.ttl +++ /dev/null @@ -1,22 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000072"^^xsd:token ; - skos:altLabel - "TG"@en , - "TG analysis"@en , - "TG measurements"@en , - "TGA"@en , - "thermal gravimetric analysis"@en , - "thermo-gravimetric analysis"@en , - "thermogravimetric (TG) analyses"@en , - "thermogravimetric (TG) analysis"@en ; - skos:broader ; - skos:definition "A thermal analysis technique used to measure the change of a sample’s mass under the influence of controlled applied temperature profiles."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "thermogravimetric analysis"@en ; -. diff --git a/vocabularies/voc4cat/0000073.ttl b/vocabularies/voc4cat/0000073.ttl deleted file mode 100644 index bde12edf..00000000 --- a/vocabularies/voc4cat/0000073.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000073"^^xsd:token ; - skos:altLabel "NMR"@en ; - skos:broadMatch ; - skos:broader ; - skos:definition "A spectroscopic technique that uses a static magnetic field and radiofrequency radiation to measure the magnetic resonance of atomic nuclei protons or electrons."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "nuclear magnetic resonance spectroscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000074.ttl b/vocabularies/voc4cat/0000074.ttl deleted file mode 100644 index c8a1c93d..00000000 --- a/vocabularies/voc4cat/0000074.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000074"^^xsd:token ; - skos:altLabel "PL"@en ; - skos:broadMatch ; - skos:broader ; - skos:definition "Light emission of lower energy photons from a sample upon its photoexcitation."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photoluminescence"@en ; -. diff --git a/vocabularies/voc4cat/0000075.ttl b/vocabularies/voc4cat/0000075.ttl deleted file mode 100644 index fbec9252..00000000 --- a/vocabularies/voc4cat/0000075.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000075"^^xsd:token ; - skos:altLabel "SEM"@en ; - skos:broader ; - skos:definition "An electron microscopy technique that produces high-resolution images under high magnification of a sample's surface by assessing the secondary and back-scattered electrons produced by a focused electron beam."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrowMatch ; - skos:prefLabel "scanning electron microscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000076.ttl b/vocabularies/voc4cat/0000076.ttl deleted file mode 100644 index e5b8df6e..00000000 --- a/vocabularies/voc4cat/0000076.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000076"^^xsd:token ; - skos:altLabel "XPS"@en ; - skos:broader ; - skos:definition "A technique that analyzes the chemical composition of an X-ray irradiated sample by measuring the energies of the emitted electrons."@en ; - skos:exactMatch ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "X-ray photoelectron spectroscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000077.ttl b/vocabularies/voc4cat/0000077.ttl deleted file mode 100644 index 6114f336..00000000 --- a/vocabularies/voc4cat/0000077.ttl +++ /dev/null @@ -1,22 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000077"^^xsd:token ; - skos:altLabel - "X-ray analysis"@en , - "X-ray crystallographic analysis"@en , - "X-ray crystallography"@en , - "X-ray diffraction analysis"@en , - "X-ray diffractometry"@en , - "X-ray structure determination"@en , - "XRD"@en ; - skos:broader ; - skos:definition "A technique which analyses the diffraction pattern produced when X-rays are scattered by a sample bombarded by a focused electron beam."@en ; - skos:exactMatch ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "X-ray diffraction"@en ; -. diff --git a/vocabularies/voc4cat/0000078.ttl b/vocabularies/voc4cat/0000078.ttl deleted file mode 100644 index 6bd32273..00000000 --- a/vocabularies/voc4cat/0000078.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000078"^^xsd:token ; - skos:altLabel "TEM"@en ; - skos:broadMatch ; - skos:broader ; - skos:definition "Transmission electron microscopy is a technique that produces high-resolution images if the internal structure of a sample by using a beam of electrons to bombard the thin sample and measuring the intensity of the scattered transmitted electrons."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "transmission electron microscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000079.ttl b/vocabularies/voc4cat/0000079.ttl deleted file mode 100644 index 0f086012..00000000 --- a/vocabularies/voc4cat/0000079.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000079"^^xsd:token ; - skos:altLabel "UV-Vis"@en ; - skos:broadMatch ; - skos:broader ; - skos:definition "A technique used to measure the absorption, transmission or reflectance of light by a sample in the ultraviolet and visible regions of the electromagnetic spectrum."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrowMatch ; - skos:prefLabel "ultraviolet-visible spectroscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000080.ttl b/vocabularies/voc4cat/0000080.ttl deleted file mode 100644 index bc9be7f2..00000000 --- a/vocabularies/voc4cat/0000080.ttl +++ /dev/null @@ -1,26 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000080"^^xsd:token ; - skos:altLabel - "FT-IR"@en , - "FT-IR spectroscopy"@en , - "FTIR"@en , - "FTIR spectrometry"@en , - "FTIR spectroscopy"@en , - "Fourier transform infra-red absoprtion spectroscopy"@en , - "Fourier transform infra-red spectrometry"@en , - "Fourier transform infrared (FT-IR)"@en , - "Fourier transform infrared (FT-IR) spectroscopy"@en , - "Fourier-transform infra-red absorption spectrometry"@en , - "Fourier-transform infrared (FTIR) absorption spectroscopy"@en ; - skos:broader ; - skos:definition "A spectroscopic technique used to study the vibrational modes of chemical bonds of a sample using infrared radiation."@en ; - skos:exactMatch ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "Fourier transform infrared spectroscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000081.ttl b/vocabularies/voc4cat/0000081.ttl deleted file mode 100644 index 17c58db1..00000000 --- a/vocabularies/voc4cat/0000081.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000081"^^xsd:token ; - skos:altLabel "BET"@en ; - skos:broader ; - skos:definition "The study of physical adsorption of gas molecules on a solid surface for the calculation of the specific surface area of materials."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "Brunauer-Emmett-Teller surface area analysis"@en ; -. diff --git a/vocabularies/voc4cat/0000082.ttl b/vocabularies/voc4cat/0000082.ttl deleted file mode 100644 index 11185ac4..00000000 --- a/vocabularies/voc4cat/0000082.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000082"^^xsd:token ; - skos:altLabel - "CV"@en , - "cyclovoltammetry"@en ; - skos:broader ; - skos:definition "An electrochemical technique used to study the redox properties of a sample by measuring the current produced by an applied voltage sweep."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "cyclic voltammetry"@en ; -. diff --git a/vocabularies/voc4cat/0000083.ttl b/vocabularies/voc4cat/0000083.ttl deleted file mode 100644 index 5a5f8f80..00000000 --- a/vocabularies/voc4cat/0000083.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000083"^^xsd:token ; - skos:broader ; - skos:definition "A method used in cyclic voltammetry to determine the charge carrier concentration and the flat-band potential of an electrochemical system by measuring the capacitance as a function of applied voltage."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "Mott-Schottky analysis"@en ; -. diff --git a/vocabularies/voc4cat/0000084.ttl b/vocabularies/voc4cat/0000084.ttl deleted file mode 100644 index 1a594425..00000000 --- a/vocabularies/voc4cat/0000084.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000084"^^xsd:token ; - skos:broader ; - skos:definition "The energy state occupied by an electron in a catalyst. This state can affect the electron's ability to participate in a catalytic reaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "electronic state"@en ; -. diff --git a/vocabularies/voc4cat/0000085.ttl b/vocabularies/voc4cat/0000085.ttl deleted file mode 100644 index d99db303..00000000 --- a/vocabularies/voc4cat/0000085.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000085"^^xsd:token ; - skos:broader ; - skos:definition "Τhe lowest energy state of a system."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "ground state"@en ; -. diff --git a/vocabularies/voc4cat/0000086.ttl b/vocabularies/voc4cat/0000086.ttl deleted file mode 100644 index 900564f8..00000000 --- a/vocabularies/voc4cat/0000086.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000086"^^xsd:token ; - skos:broader ; - skos:definition "Τhe temporary state of a system with higher energy than its ground state caused by an external factor."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "excited state"@en ; -. diff --git a/vocabularies/voc4cat/0000087.ttl b/vocabularies/voc4cat/0000087.ttl deleted file mode 100644 index d53d3fe4..00000000 --- a/vocabularies/voc4cat/0000087.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000087"^^xsd:token ; - skos:broader ; - skos:definition "A multi-step process iniatiated by the absorption of photons by a photocatalyst. This process involves various sub-processes that include the photogeneration and transfer of electron and hole pairs."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photocatalytic process"@en ; -. diff --git a/vocabularies/voc4cat/0000088.ttl b/vocabularies/voc4cat/0000088.ttl deleted file mode 100644 index 07f07430..00000000 --- a/vocabularies/voc4cat/0000088.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000088"^^xsd:token ; - skos:broader ; - skos:definition "The transfer of an electron initiated by the absorption of a photon of sufficient energy."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-2367-1988 Norbert Kockmann edited the resource"@en ; - skos:inScheme ; - skos:prefLabel "photoinduced electron transfer"@en ; -. diff --git a/vocabularies/voc4cat/0000089.ttl b/vocabularies/voc4cat/0000089.ttl deleted file mode 100644 index 3e6e9fd7..00000000 --- a/vocabularies/voc4cat/0000089.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000089"^^xsd:token ; - skos:broader ; - skos:definition "The transfer of a hole initiated by the absorption of a photon of sufficient energy."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photoinduced hole transfer"@en ; -. diff --git a/vocabularies/voc4cat/0000090.ttl b/vocabularies/voc4cat/0000090.ttl deleted file mode 100644 index faa3a115..00000000 --- a/vocabularies/voc4cat/0000090.ttl +++ /dev/null @@ -1,19 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000090"^^xsd:token ; - skos:altLabel - "charge photo-generation"@en , - "charge photogeneration"@en , - "electron excitation"@en , - "electron-hole pair"@en , - "photogenerated charges"@en ; - skos:broader ; - skos:definition "The generation of electron - hole pairs in a semiconductor as a result of light absorption of sufficient energy to overcome the bandgap energy. Electrons (negative charge) get excited to the conduction band, while holes (positive charge) remain in the valence band."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photoinduced charge generation"@en ; -. diff --git a/vocabularies/voc4cat/0000091.ttl b/vocabularies/voc4cat/0000091.ttl deleted file mode 100644 index 50b1079b..00000000 --- a/vocabularies/voc4cat/0000091.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000091"^^xsd:token ; - skos:broader ; - skos:definition "The process by which photogenerated charges (electrons and holes) in a semiconductor recombine, resulting in the dissipation of energy in the form of e.g., heat or light."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "charge recombination"@en ; -. diff --git a/vocabularies/voc4cat/0000092.ttl b/vocabularies/voc4cat/0000092.ttl deleted file mode 100644 index 9f131c15..00000000 --- a/vocabularies/voc4cat/0000092.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000092"^^xsd:token ; - skos:broader ; - skos:definition "Absorption is the process in which energy (e.g., photons) or an absorbent (e.g., a gas) is taken up by an absorbate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "absorption"@en ; -. diff --git a/vocabularies/voc4cat/0000093.ttl b/vocabularies/voc4cat/0000093.ttl deleted file mode 100644 index c8fb3d41..00000000 --- a/vocabularies/voc4cat/0000093.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000093"^^xsd:token ; - skos:broader ; - skos:definition "The adhesion of a gas, liquid or dissolved solid chemical of interest onto a solid surface."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "adsorption"@en ; -. diff --git a/vocabularies/voc4cat/0000094.ttl b/vocabularies/voc4cat/0000094.ttl deleted file mode 100644 index 1c8b9460..00000000 --- a/vocabularies/voc4cat/0000094.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000094"^^xsd:token ; - skos:broader ; - skos:definition "The process under which reactants, intermediates and products are released from the surface of the catalyst. Desorption can be facilitated by an increase in temperature or a change in the pH."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "desorption"@en ; -. diff --git a/vocabularies/voc4cat/0000095.ttl b/vocabularies/voc4cat/0000095.ttl deleted file mode 100644 index b8bbe616..00000000 --- a/vocabularies/voc4cat/0000095.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000095"^^xsd:token ; - skos:broader ; - skos:definition "The process of separating positive and negative charges in a semiconductor, typically as a result of an external force, (e.g., photoexcitation)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "charge separation"@en ; -. diff --git a/vocabularies/voc4cat/0000096.ttl b/vocabularies/voc4cat/0000096.ttl deleted file mode 100644 index 744e2bbd..00000000 --- a/vocabularies/voc4cat/0000096.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000096"^^xsd:token ; - skos:altLabel "photo-excitation"@en ; - skos:broader ; - skos:definition "The state caused by the transition of electrons from the valence band top to the conduction band bottom by absorption of photons of sufficient energy."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photoexcitation"@en ; -. diff --git a/vocabularies/voc4cat/0000097.ttl b/vocabularies/voc4cat/0000097.ttl deleted file mode 100644 index 57c14ae1..00000000 --- a/vocabularies/voc4cat/0000097.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000097"^^xsd:token ; - skos:broader ; - skos:definition "The loss of electrons or an increase in the oxidation state of a species."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "oxidation"@en ; -. diff --git a/vocabularies/voc4cat/0000098.ttl b/vocabularies/voc4cat/0000098.ttl deleted file mode 100644 index 87386a64..00000000 --- a/vocabularies/voc4cat/0000098.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000098"^^xsd:token ; - skos:broader ; - skos:definition "The gain of electrons or a decrease in the oxidation state of a species."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reduction"@en ; -. diff --git a/vocabularies/voc4cat/0000099.ttl b/vocabularies/voc4cat/0000099.ttl deleted file mode 100644 index 73c07c3d..00000000 --- a/vocabularies/voc4cat/0000099.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000099"^^xsd:token ; - skos:altLabel - "CO2 photoreduction"@en , - "artificial photosynthesis"@en , - "carbon dioxide photoreduction"@en , - "photocatalytic carbon dioxide reduction"@en ; - skos:broader ; - skos:definition "The light-driven reduction (conversion) of carbon dioxide (CO2) to hydrocarbons and / or platform chemicals in presence of water. The absorption of light and the adsorption of the reactants is performed by a photocatalyst (usually a metal oxide)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photocatalytic CO2 reduction"@en ; -. diff --git a/vocabularies/voc4cat/0000100.ttl b/vocabularies/voc4cat/0000100.ttl deleted file mode 100644 index feca22ac..00000000 --- a/vocabularies/voc4cat/0000100.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000100"^^xsd:token ; - skos:broader ; - skos:definition "A lab-scale experiment performed to test the efficiency of a studied photocatalyst in a photocatalytic application."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photocatalytic experiment"@en ; -. diff --git a/vocabularies/voc4cat/0000101.ttl b/vocabularies/voc4cat/0000101.ttl deleted file mode 100644 index f9388f25..00000000 --- a/vocabularies/voc4cat/0000101.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000101"^^xsd:token ; - skos:broader ; - skos:definition "A starting substance that undergoes a chemical reaction to produce a desired product."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reactant"@en ; -. diff --git a/vocabularies/voc4cat/0000102.ttl b/vocabularies/voc4cat/0000102.ttl deleted file mode 100644 index 1d51a05d..00000000 --- a/vocabularies/voc4cat/0000102.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000102"^^xsd:token ; - skos:broader ; - skos:definition "Concentration of the reactants used to perform an experiment."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reactant concentration"@en ; -. diff --git a/vocabularies/voc4cat/0000103.ttl b/vocabularies/voc4cat/0000103.ttl deleted file mode 100644 index 7a0a297d..00000000 --- a/vocabularies/voc4cat/0000103.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000103"^^xsd:token ; - skos:broader ; - skos:definition "Purity of reactants used in an experiment. Purity is a measure of the impurities contained in the reactants' supply. The highest purity reactants should be used to ensure the collection of reliable results."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reactant purity"@en ; -. diff --git a/vocabularies/voc4cat/0000104.ttl b/vocabularies/voc4cat/0000104.ttl deleted file mode 100644 index 204fa371..00000000 --- a/vocabularies/voc4cat/0000104.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000104"^^xsd:token ; - skos:broader ; - skos:definition "The rate of flow of reactants (often in ml per min) in the photoreactor. Flow rates are usually controlled by mass flow controllers (MFCs)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reactant flow rate"@en ; -. diff --git a/vocabularies/voc4cat/0000105.ttl b/vocabularies/voc4cat/0000105.ttl deleted file mode 100644 index 687b1de2..00000000 --- a/vocabularies/voc4cat/0000105.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000105"^^xsd:token ; - skos:broader ; - skos:definition "Electron donors or hole scavengers used to reduce the recombination tendency of electrons and holes. Sacrificial reagents are used in catalysis to study an oxidation or reduction reaction separately."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "sacrificial reagant"@en ; -. diff --git a/vocabularies/voc4cat/0000106.ttl b/vocabularies/voc4cat/0000106.ttl deleted file mode 100644 index 3424232d..00000000 --- a/vocabularies/voc4cat/0000106.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000106"^^xsd:token ; - skos:broader ; - skos:definition "A molecule that accepts electrons from photoexcited species in a redox reaction and is subsequently consumed or degraded."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "sacrificial acceptor"@en ; -. diff --git a/vocabularies/voc4cat/0000107.ttl b/vocabularies/voc4cat/0000107.ttl deleted file mode 100644 index 0445865e..00000000 --- a/vocabularies/voc4cat/0000107.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000107"^^xsd:token ; - skos:broader ; - skos:definition "A molecule that donates electrons from photoexcited species in a redox reaction and is subsequently consumed or degraded."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "sacrificial donor"@en ; -. diff --git a/vocabularies/voc4cat/0000108.ttl b/vocabularies/voc4cat/0000108.ttl deleted file mode 100644 index bad3b88e..00000000 --- a/vocabularies/voc4cat/0000108.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000108"^^xsd:token ; - skos:broader ; - skos:definition "Operation mode under the which the experiment takes place: batch of continuous flow mode."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "operation mode"@en ; -. diff --git a/vocabularies/voc4cat/0000109.ttl b/vocabularies/voc4cat/0000109.ttl deleted file mode 100644 index 3f8ff8d3..00000000 --- a/vocabularies/voc4cat/0000109.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000109"^^xsd:token ; - skos:altLabel - "continuous flow mode"@en , - "continuous-flow mode"@en , - "flow mode"@en , - "flow-mode"@en ; - skos:broader ; - skos:definition "Under flow conditions, a continuous flow of reactants is supplied to the reaction chamber and the formed products are removed and identified by an appropriate technique."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "flow operation"@en ; -. diff --git a/vocabularies/voc4cat/0000110.ttl b/vocabularies/voc4cat/0000110.ttl deleted file mode 100644 index 418c1938..00000000 --- a/vocabularies/voc4cat/0000110.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000110"^^xsd:token ; - skos:altLabel - "batch mode"@en , - "batch-mode"@en ; - skos:broader ; - skos:definition "Operation mode in which the reaction chamber is filled with the (reactant) gas(es) up to a certain pressure, and the reaction products accummulate over time."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "batch operation"@en ; -. diff --git a/vocabularies/voc4cat/0000111.ttl b/vocabularies/voc4cat/0000111.ttl deleted file mode 100644 index 33e64747..00000000 --- a/vocabularies/voc4cat/0000111.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000111"^^xsd:token ; - skos:broader ; - skos:definition "The total duration of an experiment."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "experiment duration"@en ; -. diff --git a/vocabularies/voc4cat/0000112.ttl b/vocabularies/voc4cat/0000112.ttl deleted file mode 100644 index 27a41371..00000000 --- a/vocabularies/voc4cat/0000112.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000112"^^xsd:token ; - skos:broader ; - skos:definition "Time for which a gas is purged through the reaction chamber."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "purging duration"@en ; -. diff --git a/vocabularies/voc4cat/0000113.ttl b/vocabularies/voc4cat/0000113.ttl deleted file mode 100644 index 9a43a30c..00000000 --- a/vocabularies/voc4cat/0000113.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000113"^^xsd:token ; - skos:broader ; - skos:definition "The time in between the collection of two data points."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "sampling interval"@en ; -. diff --git a/vocabularies/voc4cat/0000114.ttl b/vocabularies/voc4cat/0000114.ttl deleted file mode 100644 index ee86174e..00000000 --- a/vocabularies/voc4cat/0000114.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000114"^^xsd:token ; - skos:broader ; - skos:definition "The total duration in which a catalyst is under irradiation by the selected light source."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "irradiation duration"@en ; -. diff --git a/vocabularies/voc4cat/0000115.ttl b/vocabularies/voc4cat/0000115.ttl deleted file mode 100644 index 56a6e7e1..00000000 --- a/vocabularies/voc4cat/0000115.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000115"^^xsd:token ; - skos:broader ; - skos:definition "The temperature (range) under which the catalytic reaction takes place."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "experiment temperature"@en ; -. diff --git a/vocabularies/voc4cat/0000116.ttl b/vocabularies/voc4cat/0000116.ttl deleted file mode 100644 index 0fd43aaa..00000000 --- a/vocabularies/voc4cat/0000116.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000116"^^xsd:token ; - skos:broader ; - skos:definition "The temperature at the initiaton of the experiment."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "experiment initial temperature"@en ; -. diff --git a/vocabularies/voc4cat/0000117.ttl b/vocabularies/voc4cat/0000117.ttl deleted file mode 100644 index 43048a8c..00000000 --- a/vocabularies/voc4cat/0000117.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000117"^^xsd:token ; - skos:broader ; - skos:definition "The temperature at the end of the experiment."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "experiment final temperature"@en ; -. diff --git a/vocabularies/voc4cat/0000118.ttl b/vocabularies/voc4cat/0000118.ttl deleted file mode 100644 index a6dbe510..00000000 --- a/vocabularies/voc4cat/0000118.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000118"^^xsd:token ; - skos:broader ; - skos:definition "The pressure (range) under which the catalytic reaction takes place."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "experiment pressure"@en ; -. diff --git a/vocabularies/voc4cat/0000119.ttl b/vocabularies/voc4cat/0000119.ttl deleted file mode 100644 index d94b3b57..00000000 --- a/vocabularies/voc4cat/0000119.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000119"^^xsd:token ; - skos:broader ; - skos:definition "The pressure at the initiaton of the experiment or before a sampling event."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "experiment initial pressure"@en ; -. diff --git a/vocabularies/voc4cat/0000120.ttl b/vocabularies/voc4cat/0000120.ttl deleted file mode 100644 index 09aef987..00000000 --- a/vocabularies/voc4cat/0000120.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000120"^^xsd:token ; - skos:broader ; - skos:definition "The pressure at the end of the experiment or after a sampling event."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "experiment final pressure"@en ; -. diff --git a/vocabularies/voc4cat/0000121.ttl b/vocabularies/voc4cat/0000121.ttl deleted file mode 100644 index 42ba59b4..00000000 --- a/vocabularies/voc4cat/0000121.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000121"^^xsd:token ; - skos:broader ; - skos:definition "The pressure drop occurring when collecting a gaseous sample from the reaction chamber. This pressure drop should be taken into consideration when calculating the concentration of formed products."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "experiment pressure drop"@en ; -. diff --git a/vocabularies/voc4cat/0000122.ttl b/vocabularies/voc4cat/0000122.ttl deleted file mode 100644 index 66285066..00000000 --- a/vocabularies/voc4cat/0000122.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000122"^^xsd:token ; - skos:altLabel "sample pretreatment"@en ; - skos:broader ; - skos:definition "Pre-treatment of a catalyst before its introduction to the reaction chamber."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "sample pre-treatment"@en ; -. diff --git a/vocabularies/voc4cat/0000123.ttl b/vocabularies/voc4cat/0000123.ttl deleted file mode 100644 index e8615c3c..00000000 --- a/vocabularies/voc4cat/0000123.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000123"^^xsd:token ; - skos:altLabel "control experiment"@en ; - skos:broader ; - skos:definition "Measurements performed to ensure that the studied catalytic reaction occurs because of the interaction of the catalyst with the reactants under the selected experimental conditions, and not from the environment or the reactor."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "blank experiment"@en ; -. diff --git a/vocabularies/voc4cat/0000124.ttl b/vocabularies/voc4cat/0000124.ttl deleted file mode 100644 index d385425a..00000000 --- a/vocabularies/voc4cat/0000124.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000124"^^xsd:token ; - skos:broader ; - skos:definition "Quantitative and qualitative evaluation of the outcome of a catalytic reaction. The evaluation can lead to changes in the synthesis of the catalyst and / or selecting different experimental parameters."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "evaluation"@en ; -. diff --git a/vocabularies/voc4cat/0000125.ttl b/vocabularies/voc4cat/0000125.ttl deleted file mode 100644 index ba0e2f82..00000000 --- a/vocabularies/voc4cat/0000125.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000125"^^xsd:token ; - skos:broader - , - , - ; - skos:definition "A dimensionless physical quantity describing how effective a reactant is converted to the desired product in a chemical conversion. It is calculated as the ratio between the amount of the desired product and the amount of the desired product that could have been formed if all reactants were converted to the desired product. The selectivity is 1 (or 100 %) if no other than the desired product is formed."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-5898-1820 David Linke generalized the definition"@en ; - skos:inScheme ; - skos:prefLabel "selectivity"@en ; -. diff --git a/vocabularies/voc4cat/0000126.ttl b/vocabularies/voc4cat/0000126.ttl deleted file mode 100644 index 5fa21805..00000000 --- a/vocabularies/voc4cat/0000126.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000126"^^xsd:token ; - skos:altLabel - "AQY"@en , - "AQY%"@en , - "apparent photonic yield"@en ; - skos:broader ; - skos:definition "A measure of the efficiency of a photocatalytic reaction. It is expressed as the number of consumed charge carriers divided by the number of incident photons."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "apparent quantum yield"@en ; -. diff --git a/vocabularies/voc4cat/0000127.ttl b/vocabularies/voc4cat/0000127.ttl deleted file mode 100644 index 531c109b..00000000 --- a/vocabularies/voc4cat/0000127.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000127"^^xsd:token ; - skos:broader ; - skos:definition "The concentration (usually in ppm or mol) of the products formed during a reaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "product concentration"@en ; -. diff --git a/vocabularies/voc4cat/0000128.ttl b/vocabularies/voc4cat/0000128.ttl deleted file mode 100644 index 5fc789ea..00000000 --- a/vocabularies/voc4cat/0000128.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000128"^^xsd:token ; - skos:altLabel - "photoreactor engineering"@en , - "reactor design"@en , - "reactor engineering"@en ; - skos:broader ; - skos:definition "Details describing the construction, physical dimensions, and operation of the photoreactor used to perform a photocatalytic reaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photoreactor design"@en ; -. diff --git a/vocabularies/voc4cat/0000129.ttl b/vocabularies/voc4cat/0000129.ttl deleted file mode 100644 index 6f41bfcf..00000000 --- a/vocabularies/voc4cat/0000129.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000129"^^xsd:token ; - skos:broader ; - skos:definition "Spectroscopic or chromatographic methods used to identify the products of the reaction qualitatively and quantitatively. Such devices are usually attached to the reactor, or a sample is being transferred to an identification method via another medium (e.g., gastight syringes)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "product identification method"@en ; -. diff --git a/vocabularies/voc4cat/0000130.ttl b/vocabularies/voc4cat/0000130.ttl deleted file mode 100644 index e5c2961d..00000000 --- a/vocabularies/voc4cat/0000130.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000130"^^xsd:token ; - skos:altLabel "GC"@en ; - skos:broader ; - skos:definition "An analytical technique that separates and analyzes the components of a gas mixture by passing it though a stationary phase."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "gas chromatography"@en ; -. diff --git a/vocabularies/voc4cat/0000131.ttl b/vocabularies/voc4cat/0000131.ttl deleted file mode 100644 index 659eef1b..00000000 --- a/vocabularies/voc4cat/0000131.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000131"^^xsd:token ; - skos:broader ; - skos:definition "Detectors of the gas chromatogragh used to identify the reaction products and intemediates."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "gas chromatograph detector"@en ; -. diff --git a/vocabularies/voc4cat/0000132.ttl b/vocabularies/voc4cat/0000132.ttl deleted file mode 100644 index 637292c6..00000000 --- a/vocabularies/voc4cat/0000132.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000132"^^xsd:token ; - skos:altLabel "FID"@en ; - skos:broader ; - skos:definition "A type of gas chromatography detector that detects and quantifies the concentration of organic compounds in a gas sample emerging from a column, by measuring the electrical current generated by ionized gas constituents in a hydrogen flame."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "flame ionization detector"@en ; -. diff --git a/vocabularies/voc4cat/0000133.ttl b/vocabularies/voc4cat/0000133.ttl deleted file mode 100644 index a0a33c8e..00000000 --- a/vocabularies/voc4cat/0000133.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000133"^^xsd:token ; - skos:altLabel "TCD"@en ; - skos:broader ; - skos:definition "A type of gas chromatography detector that measures the thermal conductivity of a gas sample and identifies its constituent molecules through changes in a filament’s temperature."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "thermal conductivity detector"@en ; -. diff --git a/vocabularies/voc4cat/0000134.ttl b/vocabularies/voc4cat/0000134.ttl deleted file mode 100644 index 26719299..00000000 --- a/vocabularies/voc4cat/0000134.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000134"^^xsd:token ; - skos:altLabel "BID"@en ; - skos:broader ; - skos:definition "Detector incorporating Ionization via a new dielectric barrier discharge He plasma."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "dielectric-barrier discharge ionization detector"@en ; -. diff --git a/vocabularies/voc4cat/0000135.ttl b/vocabularies/voc4cat/0000135.ttl deleted file mode 100644 index d2405873..00000000 --- a/vocabularies/voc4cat/0000135.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000135"^^xsd:token ; - skos:broader ; - skos:definition "The minimum concentration of a product or intermediate that the gas chromatograph can identify."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "gas chromatograph sensitivity"@en ; -. diff --git a/vocabularies/voc4cat/0000136.ttl b/vocabularies/voc4cat/0000136.ttl deleted file mode 100644 index f87a9ccb..00000000 --- a/vocabularies/voc4cat/0000136.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000136"^^xsd:token ; - skos:broader ; - skos:definition "A process in which gaseous substances of known purity and concentration are introduced to the gas chromatograph and the respective area and retention time of the resulting peaks are identified. This process when concluded, allows for the calculation of concentrations of products and intermediates of the photoreaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "gas chromatograph calibration"@en ; -. diff --git a/vocabularies/voc4cat/0000137.ttl b/vocabularies/voc4cat/0000137.ttl deleted file mode 100644 index cf5eb177..00000000 --- a/vocabularies/voc4cat/0000137.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000137"^^xsd:token ; - skos:altLabel "MS"@en ; - skos:broader ; - skos:definition "An analytical technique which determines the mass-to-charge ratio of ions in a sample to give information about the composition of the sample."@en ; - skos:exactMatch ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "mass spectrometry"@en ; -. diff --git a/vocabularies/voc4cat/0000138.ttl b/vocabularies/voc4cat/0000138.ttl deleted file mode 100644 index a2542e7e..00000000 --- a/vocabularies/voc4cat/0000138.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000138"^^xsd:token ; - skos:broader ; - skos:definition "Detectors of the mass spectrometer used to identify the reaction products and intemediates."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "mass spectrometer detector"@en ; -. diff --git a/vocabularies/voc4cat/0000139.ttl b/vocabularies/voc4cat/0000139.ttl deleted file mode 100644 index b019df05..00000000 --- a/vocabularies/voc4cat/0000139.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000139"^^xsd:token ; - skos:broader ; - skos:definition "The minimum concentration of a product or intermediate that the mass spectrometer can identify."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "mass spectrometer sensitivity"@en ; -. diff --git a/vocabularies/voc4cat/0000140.ttl b/vocabularies/voc4cat/0000140.ttl deleted file mode 100644 index 5910b10d..00000000 --- a/vocabularies/voc4cat/0000140.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000140"^^xsd:token ; - skos:broader ; - skos:definition "A process in which gaseous substances of known purity and concentration are introduced to the mass spectrometer and the respective mass-to-charge ratios are identified. This process when concluded, allows for the calculation of concentrations of products and intermediates of the photoreaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "mass spectrometer calibration"@en ; -. diff --git a/vocabularies/voc4cat/0000141.ttl b/vocabularies/voc4cat/0000141.ttl deleted file mode 100644 index 4eb55193..00000000 --- a/vocabularies/voc4cat/0000141.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000141"^^xsd:token ; - skos:altLabel "LC"@en ; - skos:broader ; - skos:definition "A sepation technique that uses a liquid mobile phase to separate the components of a mixture based on their interactions with a stationary phase and a mobile phase."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "liquid chromatography"@en ; -. diff --git a/vocabularies/voc4cat/0000142.ttl b/vocabularies/voc4cat/0000142.ttl deleted file mode 100644 index 38ffde6e..00000000 --- a/vocabularies/voc4cat/0000142.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000142"^^xsd:token ; - skos:broader ; - skos:definition "The range of parameters, critical for the safe operation of a reactor."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "operation parameters"@en ; -. diff --git a/vocabularies/voc4cat/0000143.ttl b/vocabularies/voc4cat/0000143.ttl deleted file mode 100644 index 34a21e9a..00000000 --- a/vocabularies/voc4cat/0000143.ttl +++ /dev/null @@ -1,20 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000143"^^xsd:token ; - skos:altLabel - "operation pressure range"@en , - "pressure range"@en , - "range of operation pressure"@en ; - skos:broader ; - skos:definition "Maximum and minimum of operation pressure range within the reactor can operate safely. Higher operation temperatures can lead to higher pressure values."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "operation pressure"@en ; -. diff --git a/vocabularies/voc4cat/0000144.ttl b/vocabularies/voc4cat/0000144.ttl deleted file mode 100644 index c245cdab..00000000 --- a/vocabularies/voc4cat/0000144.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000144"^^xsd:token ; - skos:broader ; - skos:definition "Maximum of operation pressure range within the reactor can operate safely."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "maximum operation pressure"@en ; -. diff --git a/vocabularies/voc4cat/0000145.ttl b/vocabularies/voc4cat/0000145.ttl deleted file mode 100644 index a032fa9b..00000000 --- a/vocabularies/voc4cat/0000145.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000145"^^xsd:token ; - skos:broader ; - skos:definition "Minimum of operation pressure range within the reactor can operate safely."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "minimum operation pressure"@en ; -. diff --git a/vocabularies/voc4cat/0000146.ttl b/vocabularies/voc4cat/0000146.ttl deleted file mode 100644 index 6b3a6898..00000000 --- a/vocabularies/voc4cat/0000146.ttl +++ /dev/null @@ -1,19 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000146"^^xsd:token ; - skos:altLabel - "pressure controller"@en , - "pressure controller and monitor"@en , - "pressure gauge"@en , - "pressure monitor"@en ; - skos:broader ; - skos:definition "Equipment (e.g., a vacuum pump) used for controlling and / or monitoring the pressure in various parts of a reactor."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "pressure controller"@en ; -. diff --git a/vocabularies/voc4cat/0000147.ttl b/vocabularies/voc4cat/0000147.ttl deleted file mode 100644 index 602002df..00000000 --- a/vocabularies/voc4cat/0000147.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000147"^^xsd:token ; - skos:broader ; - skos:definition "Α mechanical device that removes gas molecules from a sealed chamber reaching pressures lower than the atmospheric pressure."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "vacuum pump"@en ; -. diff --git a/vocabularies/voc4cat/0000148.ttl b/vocabularies/voc4cat/0000148.ttl deleted file mode 100644 index 6478a664..00000000 --- a/vocabularies/voc4cat/0000148.ttl +++ /dev/null @@ -1,20 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000148"^^xsd:token ; - skos:altLabel - "operation temperature range"@en , - "range of operation temperature"@en , - "temperature range"@en ; - skos:broader ; - skos:definition "Maximum and minimum of operation temperature range within the reactor can operate safely."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "operation temperature"@en ; -. diff --git a/vocabularies/voc4cat/0000149.ttl b/vocabularies/voc4cat/0000149.ttl deleted file mode 100644 index 3a8203c5..00000000 --- a/vocabularies/voc4cat/0000149.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000149"^^xsd:token ; - skos:broader ; - skos:definition "Maximum of operation temperature range within the reactor can operate safely."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "maximum operation temperature"@en ; -. diff --git a/vocabularies/voc4cat/0000150.ttl b/vocabularies/voc4cat/0000150.ttl deleted file mode 100644 index 315e4e54..00000000 --- a/vocabularies/voc4cat/0000150.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000150"^^xsd:token ; - skos:broader ; - skos:definition "Minimum of operation temperature range within the reactor can operate safely."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "minimum operation temperature"@en ; -. diff --git a/vocabularies/voc4cat/0000151.ttl b/vocabularies/voc4cat/0000151.ttl deleted file mode 100644 index 95553566..00000000 --- a/vocabularies/voc4cat/0000151.ttl +++ /dev/null @@ -1,19 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000151"^^xsd:token ; - skos:altLabel - "cooling device"@en , - "heating device"@en , - "temperature controller and monitor"@en , - "temperature gauge"@en , - "temperature monitor"@en ; - skos:broader ; - skos:definition "Equipment used for controlling and/or monitoring the temperature in various parts of a reactor. This can include hot plates, heating elements and cryostats."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "temperature controller"@en ; -. diff --git a/vocabularies/voc4cat/0000152.ttl b/vocabularies/voc4cat/0000152.ttl deleted file mode 100644 index 9e30faa2..00000000 --- a/vocabularies/voc4cat/0000152.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000152"^^xsd:token ; - skos:altLabel "photoreaction chamber"@en ; - skos:broader ; - skos:definition "A construction inside of which the catalyst and the reactants coexist, and the reaction takes place."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction chamber"@en ; -. diff --git a/vocabularies/voc4cat/0000153.ttl b/vocabularies/voc4cat/0000153.ttl deleted file mode 100644 index beb63f19..00000000 --- a/vocabularies/voc4cat/0000153.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000153"^^xsd:token ; - skos:broader ; - skos:definition "Volume of the reaction chamber, calculated by its dimensions. Volume of pipes and valves connected to the reaction chamber should also be calculated and added to the total volume."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction chamber volume"@en ; -. diff --git a/vocabularies/voc4cat/0000154.ttl b/vocabularies/voc4cat/0000154.ttl deleted file mode 100644 index 85fc4d93..00000000 --- a/vocabularies/voc4cat/0000154.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000154"^^xsd:token ; - skos:broader ; - skos:definition "Height, width and depth (in cubic- or rectangular- shaped reaction chambers) or diameter and height (in cylindrer - shaped reaction chambers)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction chamber dimension"@en ; -. diff --git a/vocabularies/voc4cat/0000155.ttl b/vocabularies/voc4cat/0000155.ttl deleted file mode 100644 index d9e63b59..00000000 --- a/vocabularies/voc4cat/0000155.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000155"^^xsd:token ; - skos:broader ; - skos:definition "The shape of the reaction chamber. In gas-phase reactions, reaction chambers have usually a cylindrical, cubical or rectangular shape."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction chamber shape"@en ; -. diff --git a/vocabularies/voc4cat/0000156.ttl b/vocabularies/voc4cat/0000156.ttl deleted file mode 100644 index fa523190..00000000 --- a/vocabularies/voc4cat/0000156.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000156"^^xsd:token ; - skos:broader ; - skos:definition "Material used for the construction of the main body of the reaction chamber."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction chamber material"@en ; -. diff --git a/vocabularies/voc4cat/0000157.ttl b/vocabularies/voc4cat/0000157.ttl deleted file mode 100644 index 301adb81..00000000 --- a/vocabularies/voc4cat/0000157.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000157"^^xsd:token ; - skos:broader ; - skos:definition "A transparent material optimized to allow the transmission of electromagnetic radiation with low reflectance and scattering."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "optical window"@en ; -. diff --git a/vocabularies/voc4cat/0000158.ttl b/vocabularies/voc4cat/0000158.ttl deleted file mode 100644 index fdb22c23..00000000 --- a/vocabularies/voc4cat/0000158.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000158"^^xsd:token ; - skos:broader ; - skos:definition "Material that the optical window is made of. The window, usually attached to the lid sealing the reaction chamber, allows the incoming light to interact with the catalyst. The material of the window influences the wavelength range that the catalyst experiences."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "optical window material"@en ; -. diff --git a/vocabularies/voc4cat/0000159.ttl b/vocabularies/voc4cat/0000159.ttl deleted file mode 100644 index 2eeb2265..00000000 --- a/vocabularies/voc4cat/0000159.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000159"^^xsd:token ; - skos:broader ; - skos:definition "The dimension of the optical window (diameter / thickness) allowing the incoming light to enter the reaction chamber and interact with the catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "optical window dimensions"@en ; -. diff --git a/vocabularies/voc4cat/0000160.ttl b/vocabularies/voc4cat/0000160.ttl deleted file mode 100644 index 40c5842e..00000000 --- a/vocabularies/voc4cat/0000160.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000160"^^xsd:token ; - skos:broader ; - skos:definition "Diameter of the optical window allowing the incoming light to enter the reaction chamber and interact with the catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "optical window diameter"@en ; -. diff --git a/vocabularies/voc4cat/0000161.ttl b/vocabularies/voc4cat/0000161.ttl deleted file mode 100644 index fc3b5a8b..00000000 --- a/vocabularies/voc4cat/0000161.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000161"^^xsd:token ; - skos:broader ; - skos:definition "Thickness of the optical window allowing the incoming light to enter the reaction chamber and interact with the catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "optical window thickness"@en ; -. diff --git a/vocabularies/voc4cat/0000162.ttl b/vocabularies/voc4cat/0000162.ttl deleted file mode 100644 index 71e51455..00000000 --- a/vocabularies/voc4cat/0000162.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000162"^^xsd:token ; - skos:altLabel "gas flow"@en ; - skos:broader ; - skos:definition "Flow rates of gases used in an experiment. Gases can have either the role of a reactant (e.g., CO2) or be inert (e.g., Ar, He)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "gas feed"@en ; -. diff --git a/vocabularies/voc4cat/0000163.ttl b/vocabularies/voc4cat/0000163.ttl deleted file mode 100644 index 594021b5..00000000 --- a/vocabularies/voc4cat/0000163.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000163"^^xsd:token ; - skos:altLabel "gas flow controller and monitor"@en ; - skos:broader ; - skos:definition "Equipment used for controlling and / or monitoring the flow of gases (reactant or inert) needed for a catalytic experiment. Mass flow controllers (MFCs) are commonly used to control gas flows."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "gas flow controller"@en ; -. diff --git a/vocabularies/voc4cat/0000164.ttl b/vocabularies/voc4cat/0000164.ttl deleted file mode 100644 index 7fc8506d..00000000 --- a/vocabularies/voc4cat/0000164.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000164"^^xsd:token ; - skos:altLabel - "MFC"@en , - "MFCs"@en ; - skos:broader ; - skos:definition "A mass flow controller (MFC) is a device used to measure and control the flow of liquids and gases. A mass flow controller is designed and calibrated to control a specific type of liquid or gas at a particular range of flow rates."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "mass flow controller"@en ; -. diff --git a/vocabularies/voc4cat/0000165.ttl b/vocabularies/voc4cat/0000165.ttl deleted file mode 100644 index 7870ca99..00000000 --- a/vocabularies/voc4cat/0000165.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000165"^^xsd:token ; - skos:broader ; - skos:definition "All the necessary equipment needed to perform a catalytic experiment involving irradiation. The system apart from the light source can include, filters, power units, lamp cooling devices etc.."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "irradiation system"@en ; -. diff --git a/vocabularies/voc4cat/0000166.ttl b/vocabularies/voc4cat/0000166.ttl deleted file mode 100644 index 1767835c..00000000 --- a/vocabularies/voc4cat/0000166.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000166"^^xsd:token ; - skos:broader ; - skos:definition "Source used to irradiate a catalyst in a reaction chamber. These include sources with various intensities, power, and wavelength ranges, including Hg/Xe lamps, Xe lamps and LEDs."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - ; - skos:prefLabel "light source"@en ; -. diff --git a/vocabularies/voc4cat/0000167.ttl b/vocabularies/voc4cat/0000167.ttl deleted file mode 100644 index 213bb418..00000000 --- a/vocabularies/voc4cat/0000167.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000167"^^xsd:token ; - skos:altLabel - "Hg-Xe lamp"@en , - "Hg/Xe lamp"@en , - "mercury xenon lamp"@en ; - skos:broader ; - skos:definition "A lamp containing a mixture of mercury (Hg) and xenon (Xe) gases. Under electric current, the gas mixture gets ionized through a discharge electric charge creating a plasma generating UV and visible light."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "mercury-xenon lamp"@en ; -. diff --git a/vocabularies/voc4cat/0000168.ttl b/vocabularies/voc4cat/0000168.ttl deleted file mode 100644 index ca8ae4af..00000000 --- a/vocabularies/voc4cat/0000168.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000168"^^xsd:token ; - skos:altLabel - "Xe lamp"@en , - "Xe-lamp"@en ; - skos:broader ; - skos:definition "A lamp containing pure xenon (Xe) gas. Under electric current, the gas mixture gets ionized through a discharge electric charge creating a plasma generating UV and visible light."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "xenon lamp"@en ; -. diff --git a/vocabularies/voc4cat/0000169.ttl b/vocabularies/voc4cat/0000169.ttl deleted file mode 100644 index d9f1c760..00000000 --- a/vocabularies/voc4cat/0000169.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000169"^^xsd:token ; - skos:altLabel - "LED"@en , - "light-emitting diode"@en ; - skos:broader ; - skos:definition "A solid-state semiconductor emitting light at highly controllable (narrow) wavelength ranges."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "light emitting diode"@en ; -. diff --git a/vocabularies/voc4cat/0000170.ttl b/vocabularies/voc4cat/0000170.ttl deleted file mode 100644 index 7db7de88..00000000 --- a/vocabularies/voc4cat/0000170.ttl +++ /dev/null @@ -1,20 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000170"^^xsd:token ; - skos:broader ; - skos:definition "Specific of properties of the light source dictating its operation and its adequacy in the studied catalytic reaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - ; - skos:prefLabel "light source property"@en ; -. diff --git a/vocabularies/voc4cat/0000171.ttl b/vocabularies/voc4cat/0000171.ttl deleted file mode 100644 index 15a6d7a8..00000000 --- a/vocabularies/voc4cat/0000171.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000171"^^xsd:token ; - skos:broader ; - skos:definition "The distance of the light source from the reaction chamber and the catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "light source distance"@en ; -. diff --git a/vocabularies/voc4cat/0000172.ttl b/vocabularies/voc4cat/0000172.ttl deleted file mode 100644 index 74b3042b..00000000 --- a/vocabularies/voc4cat/0000172.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000172"^^xsd:token ; - skos:broader ; - skos:definition "The value of current (usually in A or mA) used to operate the selected light source."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "light operation current"@en ; -. diff --git a/vocabularies/voc4cat/0000173.ttl b/vocabularies/voc4cat/0000173.ttl deleted file mode 100644 index 2b9e0215..00000000 --- a/vocabularies/voc4cat/0000173.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000173"^^xsd:token ; - skos:broader ; - skos:definition "The value of voltage (usually in V or mV) used to operate the selected light source."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "light operation voltage"@en ; -. diff --git a/vocabularies/voc4cat/0000174.ttl b/vocabularies/voc4cat/0000174.ttl deleted file mode 100644 index dab2cff1..00000000 --- a/vocabularies/voc4cat/0000174.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000174"^^xsd:token ; - skos:broader ; - skos:definition "The power of the light source (usually in W or mW). The power can be calculated by the multiplication of the current and voltage used to operate the light source."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "light power output"@en ; -. diff --git a/vocabularies/voc4cat/0000175.ttl b/vocabularies/voc4cat/0000175.ttl deleted file mode 100644 index abdc2ce0..00000000 --- a/vocabularies/voc4cat/0000175.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000175"^^xsd:token ; - skos:broader ; - skos:definition "The light intensity (usually in mW cm-2) of the selected light source. The light intensity should be measured at the same distance as the one between the light source and the reaction chamber / sample."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "light intensity"@en ; -. diff --git a/vocabularies/voc4cat/0000176.ttl b/vocabularies/voc4cat/0000176.ttl deleted file mode 100644 index e924ba3c..00000000 --- a/vocabularies/voc4cat/0000176.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000176"^^xsd:token ; - skos:altLabel "λ"@en ; - skos:broader ; - skos:definition "The distance between two successive peaks or troughs in a wave."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "light wavelength"@en ; -. diff --git a/vocabularies/voc4cat/0000177.ttl b/vocabularies/voc4cat/0000177.ttl deleted file mode 100644 index 5fee96fe..00000000 --- a/vocabularies/voc4cat/0000177.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000177"^^xsd:token ; - skos:altLabel - "IR"@en , - "Ir"@en ; - skos:broader ; - skos:definition "Electromagnetic radiation with wavelengths typically in the range of 800 nm - 20000 nm."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "infrared"@en ; -. diff --git a/vocabularies/voc4cat/0000178.ttl b/vocabularies/voc4cat/0000178.ttl deleted file mode 100644 index 230fb71c..00000000 --- a/vocabularies/voc4cat/0000178.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000178"^^xsd:token ; - skos:altLabel - "VIS"@en , - "Vis"@en , - "visible light"@en ; - skos:broader ; - skos:definition "Electromagnetic radiation with wavelengths visible to the human eye, typically in the range of 400-800 nm."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "visible"@en ; -. diff --git a/vocabularies/voc4cat/0000179.ttl b/vocabularies/voc4cat/0000179.ttl deleted file mode 100644 index fba59a37..00000000 --- a/vocabularies/voc4cat/0000179.ttl +++ /dev/null @@ -1,19 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000179"^^xsd:token ; - skos:altLabel - "UV"@en , - "UV-A"@en , - "UV-B"@en , - "UV-C"@en , - "VUV"@en ; - skos:broader ; - skos:definition "Electromagnetic radiation with a wavelength typically in the range of 100-400 nanometers."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "ultraviolet"@en ; -. diff --git a/vocabularies/voc4cat/0000180.ttl b/vocabularies/voc4cat/0000180.ttl deleted file mode 100644 index 56ba2ca3..00000000 --- a/vocabularies/voc4cat/0000180.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000180"^^xsd:token ; - skos:definition "Entity with a concrete and physical nature."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - ; - skos:prefLabel "physical entity"@en ; - skos:topConceptOf ; -. diff --git a/vocabularies/voc4cat/0000181.ttl b/vocabularies/voc4cat/0000181.ttl deleted file mode 100644 index 799ba0e8..00000000 --- a/vocabularies/voc4cat/0000181.ttl +++ /dev/null @@ -1,72 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000181"^^xsd:token ; - skos:definition "Any entity that cannot be located in space-time. E.g., mathematical entities, formal semantics elements, regions within dimensional spaces, ideas, conceptual models."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "non-temporal abstract entity"@en ; - skos:topConceptOf ; -. diff --git a/vocabularies/voc4cat/0000182.ttl b/vocabularies/voc4cat/0000182.ttl deleted file mode 100644 index b5270d6d..00000000 --- a/vocabularies/voc4cat/0000182.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000182"^^xsd:token ; - skos:definition "Anything that has a temporal dimension, whether it is an instantaneous point in time, a duration, or a sequence of events."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - ; - skos:prefLabel "temporal abstract entity"@en ; - skos:topConceptOf ; -. diff --git a/vocabularies/voc4cat/0000183.ttl b/vocabularies/voc4cat/0000183.ttl deleted file mode 100644 index 11fcf463..00000000 --- a/vocabularies/voc4cat/0000183.ttl +++ /dev/null @@ -1,56 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000183"^^xsd:token ; - skos:broader ; - skos:definition "An occurrence or happening, marked by a specific point in time. Events can be observed, recorded, and may have an impact on the state of the system or entities involved."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "events"@en ; -. diff --git a/vocabularies/voc4cat/0000184.ttl b/vocabularies/voc4cat/0000184.ttl deleted file mode 100644 index b0be8509..00000000 --- a/vocabularies/voc4cat/0000184.ttl +++ /dev/null @@ -1,27 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000184"^^xsd:token ; - skos:broader ; - skos:definition "Temporal entities that have a duration and occur at specific points in time."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "actions"@en ; -. diff --git a/vocabularies/voc4cat/0000185.ttl b/vocabularies/voc4cat/0000185.ttl deleted file mode 100644 index 712a8f19..00000000 --- a/vocabularies/voc4cat/0000185.ttl +++ /dev/null @@ -1,52 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000185"^^xsd:token ; - skos:broader ; - skos:definition "A series of temporal entities, like actions, events, changes, or functions that are not isolated but rather a connected sequence of activities. Processes often involve the transformation of inputs into outputs and can be conceptualized as workflows."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "processes"@en ; -. diff --git a/vocabularies/voc4cat/0000186.ttl b/vocabularies/voc4cat/0000186.ttl deleted file mode 100644 index 2e06bfee..00000000 --- a/vocabularies/voc4cat/0000186.ttl +++ /dev/null @@ -1,155 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000186"^^xsd:token ; - skos:definition "A characteristic of an entity that is intrinsic to and cannot exist without the entity. E.g., properties, characteristics, qualities of things, states."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "attributes"@en ; - skos:topConceptOf ; -. diff --git a/vocabularies/voc4cat/0000187.ttl b/vocabularies/voc4cat/0000187.ttl deleted file mode 100644 index 63ff1397..00000000 --- a/vocabularies/voc4cat/0000187.ttl +++ /dev/null @@ -1,33 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000187"^^xsd:token ; - skos:broader ; - skos:definition "Apparatus, devices, and instruments employed in the construction and operation of experimental setups and the analysis of catalytic reactions and materials."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "equipment"@en ; -. diff --git a/vocabularies/voc4cat/0000188.ttl b/vocabularies/voc4cat/0000188.ttl deleted file mode 100644 index ff309ee3..00000000 --- a/vocabularies/voc4cat/0000188.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000188"^^xsd:token ; - skos:broader ; - skos:definition "Components being integral parts of a catalytic reactor."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "reactor equipment"@en ; -. diff --git a/vocabularies/voc4cat/0000189.ttl b/vocabularies/voc4cat/0000189.ttl deleted file mode 100644 index 1b23a667..00000000 --- a/vocabularies/voc4cat/0000189.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000189"^^xsd:token ; - skos:broader ; - skos:definition "Optical systems involved in light irradiation."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "optical equipment"@en ; -. diff --git a/vocabularies/voc4cat/0000190.ttl b/vocabularies/voc4cat/0000190.ttl deleted file mode 100644 index 7868673f..00000000 --- a/vocabularies/voc4cat/0000190.ttl +++ /dev/null @@ -1,27 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000190"^^xsd:token ; - skos:broader ; - skos:definition "Substances used as catalysts, supports, or reactants in catalytic processes."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "material"@en ; -. diff --git a/vocabularies/voc4cat/0000191.ttl b/vocabularies/voc4cat/0000191.ttl deleted file mode 100644 index adfdcff5..00000000 --- a/vocabularies/voc4cat/0000191.ttl +++ /dev/null @@ -1,20 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000191"^^xsd:token ; - skos:broader ; - skos:definition "A device designed to identify a measurable change or signal in a system, often providing a binary (detected / not detected) or a qualitative response."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0009-0004-3786-0773 Carla Terboven added a child"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - ; - skos:prefLabel "detector"@en ; -. diff --git a/vocabularies/voc4cat/0000192.ttl b/vocabularies/voc4cat/0000192.ttl deleted file mode 100644 index ce385d02..00000000 --- a/vocabularies/voc4cat/0000192.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000192"^^xsd:token ; - skos:broader ; - skos:definition "A device that measures a specific physical or chemical property and converts it into readable signal, often for continuous monitoring."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "sensor"@en ; -. diff --git a/vocabularies/voc4cat/0000193.ttl b/vocabularies/voc4cat/0000193.ttl deleted file mode 100644 index f80fd2da..00000000 --- a/vocabularies/voc4cat/0000193.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000193"^^xsd:token ; - skos:broader ; - skos:definition "A reactor used to perform and study electrochemical reactions."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrochemical reactor"@en ; -. diff --git a/vocabularies/voc4cat/0000194.ttl b/vocabularies/voc4cat/0000194.ttl deleted file mode 100644 index 6f68cb2c..00000000 --- a/vocabularies/voc4cat/0000194.ttl +++ /dev/null @@ -1,22 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000194"^^xsd:token ; - skos:broader ; - skos:definition "A material that initiates or increases the rate of a catalytic reaction, without it being consumed in the process."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - ; - skos:prefLabel "catalyst"@en ; -. diff --git a/vocabularies/voc4cat/0000195.ttl b/vocabularies/voc4cat/0000195.ttl deleted file mode 100644 index e38cab6a..00000000 --- a/vocabularies/voc4cat/0000195.ttl +++ /dev/null @@ -1,147 +0,0 @@ -PREFIX dcterms: -PREFIX rdfs: -PREFIX skos: -PREFIX xsd: - - - a skos:Collection ; - dcterms:identifier "voc4cat_0000195"^^xsd:token ; - dcterms:isPartOf ; - rdfs:isDefinedBy ; - skos:definition "A collection of concepts most often appearing as publication keywords in the journal ChemCatChem (Wiley)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the collection"@en ; - skos:inScheme ; - skos:member - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "ChemCatChem keyword collection"@en ; -. diff --git a/vocabularies/voc4cat/0000196.ttl b/vocabularies/voc4cat/0000196.ttl deleted file mode 100644 index 1812bc2f..00000000 --- a/vocabularies/voc4cat/0000196.ttl +++ /dev/null @@ -1,28 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000196"^^xsd:token ; - skos:altLabel "catalysis domain"@en ; - skos:broader ; - skos:definition "An area of study, focusing in a specific sub-section of the general field of catalysis."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "catalysis research field"@en ; -. diff --git a/vocabularies/voc4cat/0000197.ttl b/vocabularies/voc4cat/0000197.ttl deleted file mode 100644 index e1ed8278..00000000 --- a/vocabularies/voc4cat/0000197.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000197"^^xsd:token ; - skos:altLabel "MOF"@en ; - skos:broader ; - skos:definition "Porous crystalline materials composed of metal nodes or clusters connected by organic linkers, forming highly ordered one-, two-, or three-dimensional structures with tunable properties."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "metal-organic framework"@en ; -. diff --git a/vocabularies/voc4cat/0000198.ttl b/vocabularies/voc4cat/0000198.ttl deleted file mode 100644 index 704a8347..00000000 --- a/vocabularies/voc4cat/0000198.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000198"^^xsd:token ; - skos:broader ; - skos:definition "A porous solid material containing pores with width between 2 and 50 nm."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "mesoporous material"@en ; -. diff --git a/vocabularies/voc4cat/0000199.ttl b/vocabularies/voc4cat/0000199.ttl deleted file mode 100644 index 6b1aa748..00000000 --- a/vocabularies/voc4cat/0000199.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000199"^^xsd:token ; - skos:broader ; - skos:definition "A reaction mechanism is the step-by-step sequence of elementary reactions at the molecular level that explains how an overall chemical reaction proceeds."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction mechanism"@en ; -. diff --git a/vocabularies/voc4cat/0000200.ttl b/vocabularies/voc4cat/0000200.ttl deleted file mode 100644 index e2186abd..00000000 --- a/vocabularies/voc4cat/0000200.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000200"^^xsd:token ; - skos:altLabel "sustainable chemistry"@en ; - skos:broader ; - skos:definition "The science and technology of sustainable and environment friendly chemical processes and products that reduce or eliminate hazardous substances, while minimizing waste and energy consumption."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "green chemistry"@en ; -. diff --git a/vocabularies/voc4cat/0000201.ttl b/vocabularies/voc4cat/0000201.ttl deleted file mode 100644 index c60522c1..00000000 --- a/vocabularies/voc4cat/0000201.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000201"^^xsd:token ; - skos:altLabel "cross-coupling"@en ; - skos:broader ; - skos:definition "A cross-coupling reaction is a catalytic, metal-mediated reaction that forms carbon-carbon or carbon-heteroatom bonds by joining two different molecular fragments, typically through the activation of electrophilic and nucleophilic partners."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "cross-coupling reaction"@en ; -. diff --git a/vocabularies/voc4cat/0000202.ttl b/vocabularies/voc4cat/0000202.ttl deleted file mode 100644 index 1d8e3312..00000000 --- a/vocabularies/voc4cat/0000202.ttl +++ /dev/null @@ -1,19 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000202"^^xsd:token ; - skos:altLabel - "C-H activation"@en , - "C-H bond activation"@en , - "carbon-hydrogen activation"@en , - "carbon-hydrogen activation reaction"@en , - "carbon-hydrogen bond activation"@en ; - skos:broader ; - skos:definition "A type of organic reaction in which a stable carbon-hydrogen (C-H) bond is cleaved and replaced with a C-X bond."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "C-H activation reaction"@en ; -. diff --git a/vocabularies/voc4cat/0000203.ttl b/vocabularies/voc4cat/0000203.ttl deleted file mode 100644 index f521cb47..00000000 --- a/vocabularies/voc4cat/0000203.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000203"^^xsd:token ; - skos:broader ; - skos:definition "A branch of chemistry studying chemical reactions and processes driven and affected by light and the absorption of photons."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "photochemistry"@en ; -. diff --git a/vocabularies/voc4cat/0000204.ttl b/vocabularies/voc4cat/0000204.ttl deleted file mode 100644 index e3f155c0..00000000 --- a/vocabularies/voc4cat/0000204.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000204"^^xsd:token ; - skos:broader ; - skos:definition "A catalytic process catalyzed by the presence of biological entities."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "biocatalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000205.ttl b/vocabularies/voc4cat/0000205.ttl deleted file mode 100644 index e484ca6d..00000000 --- a/vocabularies/voc4cat/0000205.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000205"^^xsd:token ; - skos:broader ; - skos:definition "Epoxidation is the chemical process of converting an alkene into an epoxide, a three-membered cyclic ether, by adding a single oxygen atom across a carbon-carbon double bond."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "epoxidation"@en ; -. diff --git a/vocabularies/voc4cat/0000206.ttl b/vocabularies/voc4cat/0000206.ttl deleted file mode 100644 index 2891862a..00000000 --- a/vocabularies/voc4cat/0000206.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000206"^^xsd:token ; - skos:altLabel "H2O splitting"@en ; - skos:broader ; - skos:definition "A chemical reaction in which water molecules are dissociated into gaseous hydrogen and oxygen, typically facilitted by catalysts and an external energy source."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "water splitting"@en ; -. diff --git a/vocabularies/voc4cat/0000207.ttl b/vocabularies/voc4cat/0000207.ttl deleted file mode 100644 index 47f6e79e..00000000 --- a/vocabularies/voc4cat/0000207.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000207"^^xsd:token ; - skos:broader ; - skos:definition "A biocatalytic process performed in the presence of an enzyme."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "enzyme catalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000208.ttl b/vocabularies/voc4cat/0000208.ttl deleted file mode 100644 index 7b5c5f79..00000000 --- a/vocabularies/voc4cat/0000208.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000208"^^xsd:token ; - skos:broader ; - skos:definition "A type of catalysis where the rate of a chemical reaction is increased by the addition of a substoichiometric quantity of an organic (non-metallic) compound."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "organocatalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000209.ttl b/vocabularies/voc4cat/0000209.ttl deleted file mode 100644 index 1b1cd0c7..00000000 --- a/vocabularies/voc4cat/0000209.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000209"^^xsd:token ; - skos:broader ; - skos:definition "A fuel cell is an electrochemical device that converts the chemical energy of a fuel, often hydrogen, and an oxidizing agent, typically oxygen, into electrical energy, with water and heat as the main byproducts."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "fuel cell"@en ; -. diff --git a/vocabularies/voc4cat/0000210.ttl b/vocabularies/voc4cat/0000210.ttl deleted file mode 100644 index 5eae34b5..00000000 --- a/vocabularies/voc4cat/0000210.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000210"^^xsd:token ; - skos:broader ; - skos:definition "A hollow cylindrical tube-like material structure at the nanoscale."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "nanotube"@en ; -. diff --git a/vocabularies/voc4cat/0000211.ttl b/vocabularies/voc4cat/0000211.ttl deleted file mode 100644 index a6191aac..00000000 --- a/vocabularies/voc4cat/0000211.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000211"^^xsd:token ; - skos:broader ; - skos:definition "The property of a chemical reaction to occur at a specific reactive site on a molecule, leading to the preferential formation of one regiosomer over others."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "regioselectivity"@en ; -. diff --git a/vocabularies/voc4cat/0000212.ttl b/vocabularies/voc4cat/0000212.ttl deleted file mode 100644 index 3e69b193..00000000 --- a/vocabularies/voc4cat/0000212.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000212"^^xsd:token ; - skos:broader ; - skos:definition "is the preference of a chemical reaction to selectively react with one functional group in the presence of other reactive groups, leaving the latter unaffected."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "chemoselectivity"@en ; -. diff --git a/vocabularies/voc4cat/0000213.ttl b/vocabularies/voc4cat/0000213.ttl deleted file mode 100644 index ad875221..00000000 --- a/vocabularies/voc4cat/0000213.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000213"^^xsd:token ; - skos:broader ; - skos:definition "A one-, two-, or three-, dimensional structure that has at least one dimension in the nanometer scale."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "nanostructure"@en ; -. diff --git a/vocabularies/voc4cat/0000214.ttl b/vocabularies/voc4cat/0000214.ttl deleted file mode 100644 index af5691ca..00000000 --- a/vocabularies/voc4cat/0000214.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000214"^^xsd:token ; - skos:broader ; - skos:definition "The ability of a chemical reaction to differentiate between enantiomers, leading to the preferential formation of one stereoisomer, often controlled by a chiral catalyst or reagent."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "enantioselectivity"@en ; -. diff --git a/vocabularies/voc4cat/0000215.ttl b/vocabularies/voc4cat/0000215.ttl deleted file mode 100644 index 5ad99450..00000000 --- a/vocabularies/voc4cat/0000215.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000215"^^xsd:token ; - skos:altLabel "DFT"@en ; - skos:broader ; - skos:definition "A computational quantum mechanical modeling method used to investigate the electronic structure of atoms, molecules and solids, approximating their energy by using electron density as the key variable rather than wavefunctions."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "density functional theory"@en ; -. diff --git a/vocabularies/voc4cat/0000216.ttl b/vocabularies/voc4cat/0000216.ttl deleted file mode 100644 index c4c9815f..00000000 --- a/vocabularies/voc4cat/0000216.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000216"^^xsd:token ; - skos:broader ; - skos:definition "A catalytic process that facilitates reactions by controlling charge transfer at the electrode-electrolyte interface."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrocatalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000217.ttl b/vocabularies/voc4cat/0000217.ttl deleted file mode 100644 index 19789da0..00000000 --- a/vocabularies/voc4cat/0000217.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000217"^^xsd:token ; - skos:broader ; - skos:definition "Asymmetric catalysis is a catalytic process in which a chiral catalyst directs the formation of a chiral compound, preferentially producing one enantiomer over the other, thereby enhancing enantioselectivity in chemical reactions."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "asymmetric catalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000218.ttl b/vocabularies/voc4cat/0000218.ttl deleted file mode 100644 index 82dbdaa3..00000000 --- a/vocabularies/voc4cat/0000218.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000218"^^xsd:token ; - skos:broader ; - skos:definition "The branch of chemistry that studies the relationship between electrical potential and chemical transformations, focusing on electron transfer processes, particularly redox reactions at electrode interfaces."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrochemistry"@en ; -. diff --git a/vocabularies/voc4cat/0000219.ttl b/vocabularies/voc4cat/0000219.ttl deleted file mode 100644 index 2413e55b..00000000 --- a/vocabularies/voc4cat/0000219.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000219"^^xsd:token ; - skos:altLabel "heterocyclic compound"@en ; - skos:broader ; - skos:definition "A cyclic compound composed of at least one atom other than carbon in its ring structure."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "heterocycle"@en ; -. diff --git a/vocabularies/voc4cat/0000220.ttl b/vocabularies/voc4cat/0000220.ttl deleted file mode 100644 index d32f1324..00000000 --- a/vocabularies/voc4cat/0000220.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000220"^^xsd:token ; - skos:altLabel "cyclization"@en ; - skos:broader ; - skos:definition "A chemical reaction in which an acyclic (open-chain) precursor molecule is transformed into a cyclic structure."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "cyclization reaction"@en ; -. diff --git a/vocabularies/voc4cat/0000221.ttl b/vocabularies/voc4cat/0000221.ttl deleted file mode 100644 index 5cca0b8b..00000000 --- a/vocabularies/voc4cat/0000221.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000221"^^xsd:token ; - skos:broader ; - skos:definition "The process of designing and modifying protein structures via genetic or chemical alterations to improve their stability, activity, specificity, and functionality."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "protein engineering"@en ; -. diff --git a/vocabularies/voc4cat/0000222.ttl b/vocabularies/voc4cat/0000222.ttl deleted file mode 100644 index ae6a517b..00000000 --- a/vocabularies/voc4cat/0000222.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000222"^^xsd:token ; - skos:altLabel - "hydroformylation reaction"@en , - "oxo process"@en , - "oxo synthesis"@en ; - skos:broader ; - skos:definition "A catalytic reaction for synthesizing an aldehyde from an alkene, by adding a formyl group (-CHO) and a hydrogen atom to a carbon-carbon double bond."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydroformylation"@en ; -. diff --git a/vocabularies/voc4cat/0000223.ttl b/vocabularies/voc4cat/0000223.ttl deleted file mode 100644 index c003a217..00000000 --- a/vocabularies/voc4cat/0000223.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000223"^^xsd:token ; - skos:altLabel - "C-C coupling"@en , - "carbon-carbon coupling"@en , - "carbon-carbon coupling reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction where a carbon-carbon bond is formed from two carbon-containing fragments."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "C-C coupling reaction"@en ; -. diff --git a/vocabularies/voc4cat/0000224.ttl b/vocabularies/voc4cat/0000224.ttl deleted file mode 100644 index af056101..00000000 --- a/vocabularies/voc4cat/0000224.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000224"^^xsd:token ; - skos:altLabel - "catalytic hydrosilation"@en , - "hydrosilation"@en , - "hydrosilylation reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction where a silicon-hydrogen (Si-H) bond is added across an unsaturated bond typically catalyzed by a transition metal catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydrosilylation"@en ; -. diff --git a/vocabularies/voc4cat/0000225.ttl b/vocabularies/voc4cat/0000225.ttl deleted file mode 100644 index f81c1f37..00000000 --- a/vocabularies/voc4cat/0000225.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000225"^^xsd:token ; - skos:altLabel - "SAR"@en , - "structure activity relationship"@en ; - skos:broader ; - skos:definition "A study of the correlation between the chemical structure of a molecule, its functional properties and its biological activity."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "structure-activity relationship"@en ; -. diff --git a/vocabularies/voc4cat/0000226.ttl b/vocabularies/voc4cat/0000226.ttl deleted file mode 100644 index 39652431..00000000 --- a/vocabularies/voc4cat/0000226.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000226"^^xsd:token ; - skos:altLabel - "HDO"@en , - "hydrodeoxygenation reaction"@en ; - skos:broader ; - skos:definition "A catalytic process in which oxygen is removed from oxygenated organic compounds using hydrogen."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydrodeoxygenation"@en ; -. diff --git a/vocabularies/voc4cat/0000227.ttl b/vocabularies/voc4cat/0000227.ttl deleted file mode 100644 index 5e3f5527..00000000 --- a/vocabularies/voc4cat/0000227.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000227"^^xsd:token ; - skos:broader ; - skos:definition "The process by which molecules or particles spontaneously organize into structured, well-defined functional systems, without external stimuli, but driven by local interactions."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "self-assembly"@en ; -. diff --git a/vocabularies/voc4cat/0000228.ttl b/vocabularies/voc4cat/0000228.ttl deleted file mode 100644 index f2287416..00000000 --- a/vocabularies/voc4cat/0000228.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000228"^^xsd:token ; - skos:broader ; - skos:definition "The property of an asymmetric molecule that makes it non-superposable on its mirror image, resulting in enantiomers with distinct chemical or biological properties."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "chirality"@en ; -. diff --git a/vocabularies/voc4cat/0000229.ttl b/vocabularies/voc4cat/0000229.ttl deleted file mode 100644 index b141169d..00000000 --- a/vocabularies/voc4cat/0000229.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000229"^^xsd:token ; - skos:broader ; - skos:definition "A chemical species that contains at least one unpaired valence electron."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "radical"@en ; -. diff --git a/vocabularies/voc4cat/0000230.ttl b/vocabularies/voc4cat/0000230.ttl deleted file mode 100644 index 8d2e0a78..00000000 --- a/vocabularies/voc4cat/0000230.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000230"^^xsd:token ; - skos:altLabel - "cascade reaction"@en , - "domino reaction"@en , - "tandem reaction"@en ; - skos:broader ; - skos:definition "A domino reaction is a chemical process of at least two consecutive sub-reactions occurring spontaneously in the same reaction vessel, without the need to add additional reagents, change reaction conditions and isolate intermediates. Each sub-reaction uses the product(s) already formed in the previous steps as reactant(s)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "sequential reaction"@en ; -. diff --git a/vocabularies/voc4cat/0000231.ttl b/vocabularies/voc4cat/0000231.ttl deleted file mode 100644 index b27967ed..00000000 --- a/vocabularies/voc4cat/0000231.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000231"^^xsd:token ; - skos:broader ; - skos:definition "A natural resource that can be ecologically or artificially replenished at a rate faster than consumed and over a reasonable period on the human time scale."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "renewable resource"@en ; -. diff --git a/vocabularies/voc4cat/0000232.ttl b/vocabularies/voc4cat/0000232.ttl deleted file mode 100644 index e989066e..00000000 --- a/vocabularies/voc4cat/0000232.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000232"^^xsd:token ; - skos:broader ; - skos:definition "A process in which an acid donates protons (protonation or electron withdrawal) or stabilizes reaction intermediates to accelerate a chemical reaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "acid catalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000233.ttl b/vocabularies/voc4cat/0000233.ttl deleted file mode 100644 index 0105d44a..00000000 --- a/vocabularies/voc4cat/0000233.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000233"^^xsd:token ; - skos:broader ; - skos:definition "A process in which base abstracts protons (deprotonation or electron donation) or stabilizes reaction intermediates to accelerate a chemical reaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "base catalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000234.ttl b/vocabularies/voc4cat/0000234.ttl deleted file mode 100644 index 9463d924..00000000 --- a/vocabularies/voc4cat/0000234.ttl +++ /dev/null @@ -1,19 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000234"^^xsd:token ; - skos:altLabel - "micro-channel reactor"@en , - "micro-reactor"@en , - "micro-structured reactor"@en , - "microchannel reactor"@en , - "microstructured reactor"@en ; - skos:broader ; - skos:definition "A small-scale chemical reactor, with lateral dimensions in the submillimeter range, typically employing microchannels to facilitate reactions within a well-controlled confined space."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "microreactor"@en ; -. diff --git a/vocabularies/voc4cat/0000235.ttl b/vocabularies/voc4cat/0000235.ttl deleted file mode 100644 index fea8c6eb..00000000 --- a/vocabularies/voc4cat/0000235.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000235"^^xsd:token ; - skos:broader ; - skos:definition "The interaction between at least two constituent parts (e.g., substances, processes, chemical species) to produce a combined effect greater than the sum of their individual effects, resulting in a more significant outcome than each part could achieve alone."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "synergistic effect"@en ; -. diff --git a/vocabularies/voc4cat/0000236.ttl b/vocabularies/voc4cat/0000236.ttl deleted file mode 100644 index eba8c8cf..00000000 --- a/vocabularies/voc4cat/0000236.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000236"^^xsd:token ; - skos:altLabel "OER"@en ; - skos:broader ; - skos:definition "A chemical reaction of generating molecular oxygen in electrochemistry."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "oxygen evolution reaction"@en ; -. diff --git a/vocabularies/voc4cat/0000237.ttl b/vocabularies/voc4cat/0000237.ttl deleted file mode 100644 index 44750c69..00000000 --- a/vocabularies/voc4cat/0000237.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000237"^^xsd:token ; - skos:altLabel "ORR"@en ; - skos:broader ; - skos:definition "The reduction half reaction where oxygen is reduced to water or hydrogen peroxide. In electrochemistry it takes place in the cathode."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "oxygen reduction reaction"@en ; -. diff --git a/vocabularies/voc4cat/0000238.ttl b/vocabularies/voc4cat/0000238.ttl deleted file mode 100644 index 32db97cd..00000000 --- a/vocabularies/voc4cat/0000238.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000238"^^xsd:token ; - skos:broader ; - skos:definition "A chemical processes occurring at surfaces and interfaces."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "surface chemistry"@en ; -. diff --git a/vocabularies/voc4cat/0000239.ttl b/vocabularies/voc4cat/0000239.ttl deleted file mode 100644 index 374b728e..00000000 --- a/vocabularies/voc4cat/0000239.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000239"^^xsd:token ; - skos:altLabel "enantioselective synthesis"@en ; - skos:broader ; - skos:definition "A chemical synthesis process yielding stereoisomeric (enantiomeric or diastereomeric) products in different rations."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "asymmetric synthesis"@en ; -. diff --git a/vocabularies/voc4cat/0000240.ttl b/vocabularies/voc4cat/0000240.ttl deleted file mode 100644 index 219f74bb..00000000 --- a/vocabularies/voc4cat/0000240.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000240"^^xsd:token ; - skos:broader ; - skos:definition "Molecules with the same formula and atomic connectivity, but with different spatial arrangement of atoms."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "stereoisomer"@en ; -. diff --git a/vocabularies/voc4cat/0000241.ttl b/vocabularies/voc4cat/0000241.ttl deleted file mode 100644 index d374097b..00000000 --- a/vocabularies/voc4cat/0000241.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000241"^^xsd:token ; - skos:altLabel "HER"@en ; - skos:broader ; - skos:definition "A chemical reaction of generating molecular hydrogen in electrochemistry."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydrogen evolution reaction"@en ; -. diff --git a/vocabularies/voc4cat/0000242.ttl b/vocabularies/voc4cat/0000242.ttl deleted file mode 100644 index 517bae66..00000000 --- a/vocabularies/voc4cat/0000242.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000242"^^xsd:token ; - skos:altLabel "amination reaction"@en ; - skos:broader ; - skos:definition "The chemical reaction of adding an amino (-NH2) into a molecule to generate an amine."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "amination"@en ; -. diff --git a/vocabularies/voc4cat/0000243.ttl b/vocabularies/voc4cat/0000243.ttl deleted file mode 100644 index 0fd7887a..00000000 --- a/vocabularies/voc4cat/0000243.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000243"^^xsd:token ; - skos:altLabel "cycloaddition reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction where two or more unsaturated molecules unite to form a ring-shaped (cyclic) compound."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "cycloaddition"@en ; -. diff --git a/vocabularies/voc4cat/0000244.ttl b/vocabularies/voc4cat/0000244.ttl deleted file mode 100644 index 77ed5e5f..00000000 --- a/vocabularies/voc4cat/0000244.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000244"^^xsd:token ; - skos:altLabel - "hydrogen transfer"@en , - "transfer hydrogenation reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction in which hydrogen (not directly from molecular hydrogen) is transferred to a molecule."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "transfer hydrogenation"@en ; -. diff --git a/vocabularies/voc4cat/0000245.ttl b/vocabularies/voc4cat/0000245.ttl deleted file mode 100644 index d028a9da..00000000 --- a/vocabularies/voc4cat/0000245.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000245"^^xsd:token ; - skos:altLabel "metathesis reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction in which double bonds between atoms in two molecules are rearranged, yielding products formed by the exchange of molecular fragments between the reactants while keeping the number of double bonds the same."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "metathesis"@en ; -. diff --git a/vocabularies/voc4cat/0000246.ttl b/vocabularies/voc4cat/0000246.ttl deleted file mode 100644 index e327b040..00000000 --- a/vocabularies/voc4cat/0000246.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000246"^^xsd:token ; - skos:broader ; - skos:definition "The application of materials with dimensions in the nanoscale, to catalyze chemical reactions."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "nanocatalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000247.ttl b/vocabularies/voc4cat/0000247.ttl deleted file mode 100644 index 29e994fe..00000000 --- a/vocabularies/voc4cat/0000247.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000247"^^xsd:token ; - skos:altLabel "carbonylation reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction in which a carbonyl group (C=O) is introduced into a molecule, typically through the addition of carbon monoxide (CO) to a substrate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "carbonylation"@en ; -. diff --git a/vocabularies/voc4cat/0000248.ttl b/vocabularies/voc4cat/0000248.ttl deleted file mode 100644 index 9decc284..00000000 --- a/vocabularies/voc4cat/0000248.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000248"^^xsd:token ; - skos:broader ; - skos:definition "The modification of chemical compounds by biological entities (e.g., enzymes) to yield more biologically active products."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "biotransformation"@en ; -. diff --git a/vocabularies/voc4cat/0000249.ttl b/vocabularies/voc4cat/0000249.ttl deleted file mode 100644 index a21b3530..00000000 --- a/vocabularies/voc4cat/0000249.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000249"^^xsd:token ; - skos:broader ; - skos:definition "A process of separating two enantiomers of a chiral compound in a racemic mixture based on their different reaction rates in a chemical reaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "kinetic resolution"@en ; -. diff --git a/vocabularies/voc4cat/0000250.ttl b/vocabularies/voc4cat/0000250.ttl deleted file mode 100644 index 1fe74ccd..00000000 --- a/vocabularies/voc4cat/0000250.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000250"^^xsd:token ; - skos:altLabel "water oxidation reaction"@en ; - skos:broader ; - skos:definition "The reaction in which water is converted (usually electrochemically or photocatalytically) into oxygen and protons."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "water oxidation"@en ; -. diff --git a/vocabularies/voc4cat/0000251.ttl b/vocabularies/voc4cat/0000251.ttl deleted file mode 100644 index 5f0e0b7e..00000000 --- a/vocabularies/voc4cat/0000251.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000251"^^xsd:token ; - skos:altLabel "MCR"@en ; - skos:broader ; - skos:definition "A synthesis process where three or more compounds react in the same reactor (one-pot reaction) to form a structurally complex single product that incorporates most of the atoms of the starting compounds."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "multicomponent reaction"@en ; -. diff --git a/vocabularies/voc4cat/0000252.ttl b/vocabularies/voc4cat/0000252.ttl deleted file mode 100644 index e80da63a..00000000 --- a/vocabularies/voc4cat/0000252.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000252"^^xsd:token ; - skos:altLabel "arylation reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction in which one or more aryl groups are added into a molecule, commonly facilitated by a catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "arylation"@en ; -. diff --git a/vocabularies/voc4cat/0000253.ttl b/vocabularies/voc4cat/0000253.ttl deleted file mode 100644 index 63b5cfb4..00000000 --- a/vocabularies/voc4cat/0000253.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000253"^^xsd:token ; - skos:altLabel "hydrogenolysis reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction which involves the cleavage of a chemical bond in the presence of hydrogen, often performed catalytically."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydrogenolysis"@en ; -. diff --git a/vocabularies/voc4cat/0000254.ttl b/vocabularies/voc4cat/0000254.ttl deleted file mode 100644 index 6f6e35fa..00000000 --- a/vocabularies/voc4cat/0000254.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000254"^^xsd:token ; - skos:broader ; - skos:definition "A material which directs and accelerates an electrochemical reaction while remaining unchanged in the process."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrocatalyst"@en ; -. diff --git a/vocabularies/voc4cat/0000255.ttl b/vocabularies/voc4cat/0000255.ttl deleted file mode 100644 index 57667e0b..00000000 --- a/vocabularies/voc4cat/0000255.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000255"^^xsd:token ; - skos:broader ; - skos:definition "The characteristics of a material or substance that determine how it interacts or responds to a magnetic field."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-5898-1820 David Linke edited the definition"@en ; - skos:inScheme ; - skos:prefLabel "magnetic property"@en ; -. diff --git a/vocabularies/voc4cat/0000256.ttl b/vocabularies/voc4cat/0000256.ttl deleted file mode 100644 index c261b574..00000000 --- a/vocabularies/voc4cat/0000256.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000256"^^xsd:token ; - skos:broader ; - skos:definition "A process that utilizes physical, chemical, or biological processes to turn organic substances, like plant material and animal waste, into high-value products and energy forms (e.g., biofuels)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "biomass conversion"@en ; -. diff --git a/vocabularies/voc4cat/0000257.ttl b/vocabularies/voc4cat/0000257.ttl deleted file mode 100644 index 4369622e..00000000 --- a/vocabularies/voc4cat/0000257.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000257"^^xsd:token ; - skos:broader ; - skos:definition "The effects a solvent exerts on chemical reactions and molecular properties."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "solvent effect"@en ; -. diff --git a/vocabularies/voc4cat/0000258.ttl b/vocabularies/voc4cat/0000258.ttl deleted file mode 100644 index 88e0b909..00000000 --- a/vocabularies/voc4cat/0000258.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000258"^^xsd:token ; - skos:altLabel "hydroxylation reaction"@en ; - skos:broader ; - skos:definition "The addition of a hydroxyl group (-OH) to a molecule, typically by replacing a hydrogen atom."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydroxylation"@en ; -. diff --git a/vocabularies/voc4cat/0000259.ttl b/vocabularies/voc4cat/0000259.ttl deleted file mode 100644 index 08f99313..00000000 --- a/vocabularies/voc4cat/0000259.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000259"^^xsd:token ; - skos:altLabel - "CO hydrogenation reaction"@en , - "carbon dioxide hydrogenation"@en , - "carbon dioxide hydrogenation reaction"@en ; - skos:broader ; - skos:definition "The reaction of carbon dioxide (CO2) with molecular hydrogen (H2) to produce value-added hydrocarbons or alcohols."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "CO2 hydrogenation"@en ; -. diff --git a/vocabularies/voc4cat/0000260.ttl b/vocabularies/voc4cat/0000260.ttl deleted file mode 100644 index 99dcb03b..00000000 --- a/vocabularies/voc4cat/0000260.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000260"^^xsd:token ; - skos:altLabel "hydrogenation reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction of molecular hydrogen (H2) and another chemical species, typically facilitated by a catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydrogenation"@en ; -. diff --git a/vocabularies/voc4cat/0000261.ttl b/vocabularies/voc4cat/0000261.ttl deleted file mode 100644 index 27d5e37c..00000000 --- a/vocabularies/voc4cat/0000261.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000261"^^xsd:token ; - skos:altLabel "selective oxidation reaction"@en ; - skos:broader ; - skos:definition "The targeted oxidation of a specific bond or functional group in a molecule leaving other sites unaffected, often directed by a catalyst."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "selective oxidation"@en ; -. diff --git a/vocabularies/voc4cat/0000262.ttl b/vocabularies/voc4cat/0000262.ttl deleted file mode 100644 index 93a8d2e2..00000000 --- a/vocabularies/voc4cat/0000262.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000262"^^xsd:token ; - skos:altLabel "reductive amination reaction"@en ; - skos:broader ; - skos:definition "The typically catalyzed reduction of carbonyl groups to form primary and secondary amines, through an imine intermediate."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reductive amination"@en ; -. diff --git a/vocabularies/voc4cat/0000263.ttl b/vocabularies/voc4cat/0000263.ttl deleted file mode 100644 index f5707838..00000000 --- a/vocabularies/voc4cat/0000263.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000263"^^xsd:token ; - skos:broader ; - skos:definition "The tendency of a reaction to yield one stereoisomer preferentially over another."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "stereoselectivity"@en ; -. diff --git a/vocabularies/voc4cat/0000264.ttl b/vocabularies/voc4cat/0000264.ttl deleted file mode 100644 index c03b77fb..00000000 --- a/vocabularies/voc4cat/0000264.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000264"^^xsd:token ; - skos:broader ; - skos:definition "A field of chemistry focused in solving chemical problems through the use of mathematical modelling, chemical theory and computational techniques."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "computational chemistry"@en ; -. diff --git a/vocabularies/voc4cat/0000265.ttl b/vocabularies/voc4cat/0000265.ttl deleted file mode 100644 index b8108a26..00000000 --- a/vocabularies/voc4cat/0000265.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000265"^^xsd:token ; - skos:broader ; - skos:definition "The application of analytical techniques (e.g., spectroscopy and microscopy) to examine the composition, structure, and properties of surfaces."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "surface analysis"@en ; -. diff --git a/vocabularies/voc4cat/0000266.ttl b/vocabularies/voc4cat/0000266.ttl deleted file mode 100644 index 72ef5ac9..00000000 --- a/vocabularies/voc4cat/0000266.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000266"^^xsd:token ; - skos:altLabel "DE"@en ; - skos:broader ; - skos:definition "A process of accelerating natural evolution of biological molecules (e.g., proteins, enzymes, nucleic acids) and systems by random mutagenesis and selective screening leading to tailored properties and functionality."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "directed evolution"@en ; -. diff --git a/vocabularies/voc4cat/0000267.ttl b/vocabularies/voc4cat/0000267.ttl deleted file mode 100644 index 1e59523c..00000000 --- a/vocabularies/voc4cat/0000267.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000267"^^xsd:token ; - skos:broader ; - skos:definition "A single catalyst, integrating two distinct active sites with complementary functionalities, that participate synergistically in a chemical reaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "bifunctional catalyst"@en ; -. diff --git a/vocabularies/voc4cat/0000268.ttl b/vocabularies/voc4cat/0000268.ttl deleted file mode 100644 index 12c10350..00000000 --- a/vocabularies/voc4cat/0000268.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000268"^^xsd:token ; - skos:altLabel "syngas"@en ; - skos:broader ; - skos:definition "A gas mixture comprised primarily of hydrogen (H2) and carbon monoxide (CO) in various ratios."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "synthesis gas"@en ; -. diff --git a/vocabularies/voc4cat/0000269.ttl b/vocabularies/voc4cat/0000269.ttl deleted file mode 100644 index 730e5863..00000000 --- a/vocabularies/voc4cat/0000269.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000269"^^xsd:token ; - skos:altLabel "continuous flow chemistry"@en ; - skos:broader ; - skos:definition "A chemical reaction that is performed in a continuous flow stream of reagents."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "flow chemistry"@en ; -. diff --git a/vocabularies/voc4cat/0000270.ttl b/vocabularies/voc4cat/0000270.ttl deleted file mode 100644 index f16b035e..00000000 --- a/vocabularies/voc4cat/0000270.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000270"^^xsd:token ; - skos:altLabel "porous media"@en ; - skos:broader ; - skos:definition "A solid substance featuring pores, the size, arrangement and shape of which govern the material’s permeability, adsorption properties, and mechanical properties."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - ; - skos:prefLabel "porous material"@en ; -. diff --git a/vocabularies/voc4cat/0000271.ttl b/vocabularies/voc4cat/0000271.ttl deleted file mode 100644 index 5c004e3d..00000000 --- a/vocabularies/voc4cat/0000271.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000271"^^xsd:token ; - skos:broader ; - skos:definition "A porous solid material containing pores with width smaller than 2nm."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "microporous material"@en ; -. diff --git a/vocabularies/voc4cat/0000272.ttl b/vocabularies/voc4cat/0000272.ttl deleted file mode 100644 index f97450e1..00000000 --- a/vocabularies/voc4cat/0000272.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000272"^^xsd:token ; - skos:broader ; - skos:definition "A porous solid material containing pores with width larger than 50nm"@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "macroporous material"@en ; -. diff --git a/vocabularies/voc4cat/0000273.ttl b/vocabularies/voc4cat/0000273.ttl deleted file mode 100644 index 6e59c2dd..00000000 --- a/vocabularies/voc4cat/0000273.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000273"^^xsd:token ; - skos:broader ; - skos:definition "A technique of synthesizing substances from high-temperature and high-pressure aqueous solutions, typically performed in a sealed vessel."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydrothermal synthesis"@en ; -. diff --git a/vocabularies/voc4cat/0000274.ttl b/vocabularies/voc4cat/0000274.ttl deleted file mode 100644 index 0e8cc605..00000000 --- a/vocabularies/voc4cat/0000274.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000274"^^xsd:token ; - skos:broader ; - skos:definition "The ability of a chemical action to differentiate between diastereoisomers, leading to the preferential formation of one diastereoisomers over another."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "diastereoselectivity"@en ; -. diff --git a/vocabularies/voc4cat/0000275.ttl b/vocabularies/voc4cat/0000275.ttl deleted file mode 100644 index 95ad0325..00000000 --- a/vocabularies/voc4cat/0000275.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000275"^^xsd:token ; - skos:broader ; - skos:definition "The study of water’s properties and its interactions with other substances in chemical reactions."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "water chemistry"@en ; -. diff --git a/vocabularies/voc4cat/0000276.ttl b/vocabularies/voc4cat/0000276.ttl deleted file mode 100644 index 0710cebf..00000000 --- a/vocabularies/voc4cat/0000276.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000276"^^xsd:token ; - skos:broader ; - skos:definition "A carbon-carbon bond-forming reaction between the carbonyl groups of two compounds (typically aldehydes or ketones). A carbonyl group of one compound and the α-position of another carbonyl molecule react to form a β-hydroxycarbonyl compound."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "aldol reaction"@en ; -. diff --git a/vocabularies/voc4cat/0000277.ttl b/vocabularies/voc4cat/0000277.ttl deleted file mode 100644 index b425f417..00000000 --- a/vocabularies/voc4cat/0000277.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000277"^^xsd:token ; - skos:altLabel "carbon-hydrogen functionalization"@en ; - skos:broader ; - skos:definition "The process of introducing new functional groups by cleaving and modifying a carbon-hydrogen (C-H) bond into C-X (X=heteroatom or functional group)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "C-H functionalization"@en ; -. diff --git a/vocabularies/voc4cat/0000278.ttl b/vocabularies/voc4cat/0000278.ttl deleted file mode 100644 index 35fe9b8e..00000000 --- a/vocabularies/voc4cat/0000278.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000278"^^xsd:token ; - skos:altLabel - "Michael addition reaction"@en , - "Michael reaction"@en ; - skos:broader ; - skos:definition "A C-C (or C-X) bond forming reaction in which a nucleophile (typically an enolate), reacts with an α,β-unsaturated carbonyl compound."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "Michael addition"@en ; -. diff --git a/vocabularies/voc4cat/0000279.ttl b/vocabularies/voc4cat/0000279.ttl deleted file mode 100644 index e621feb1..00000000 --- a/vocabularies/voc4cat/0000279.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000279"^^xsd:token ; - skos:altLabel "OV"@en ; - skos:broader ; - skos:definition "A type of a structural point defect in a crystal lattice where an oxygen atom is missing from its expected position."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "oxygen vacancy"@en ; -. diff --git a/vocabularies/voc4cat/0000280.ttl b/vocabularies/voc4cat/0000280.ttl deleted file mode 100644 index f55b9bd7..00000000 --- a/vocabularies/voc4cat/0000280.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000280"^^xsd:token ; - skos:broader ; - skos:definition "A catalytic chemical reaction in which a mixture of carbon monoxide (CO) and hydrogen (H2), is converted via a chain-growth mechanism into long-chain hydrocarbons (e.g., alkanes, alkenes or alcohols)—typically using iron or cobalt catalysts under moderate to high pressures and temperatures."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "Fischer-Tropsch synthesis"@en ; -. diff --git a/vocabularies/voc4cat/0000281.ttl b/vocabularies/voc4cat/0000281.ttl deleted file mode 100644 index b0e20c9a..00000000 --- a/vocabularies/voc4cat/0000281.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000281"^^xsd:token ; - skos:broader ; - skos:definition "The industrial implementation of Fischer–Tropsch synthesis, encompassing in addition the associated engineering, reactor design, feedstock preparation, heat management, and product upgrading steps required for large-scale operation."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "Fischer-Tropsch process"@en ; -. diff --git a/vocabularies/voc4cat/0000282.ttl b/vocabularies/voc4cat/0000282.ttl deleted file mode 100644 index a5bf4db9..00000000 --- a/vocabularies/voc4cat/0000282.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000282"^^xsd:token ; - skos:altLabel "density functional theory calculation"@en ; - skos:broader ; - skos:definition "The application of density functional theory (DFT) to compute the electonic structure of atoms, molecules and solids."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "DFT calculation"@en ; -. diff --git a/vocabularies/voc4cat/0000283.ttl b/vocabularies/voc4cat/0000283.ttl deleted file mode 100644 index 690681a7..00000000 --- a/vocabularies/voc4cat/0000283.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000283"^^xsd:token ; - skos:broader ; - skos:definition "The relocation of an electron from one donor chemical species (atom, ion, or molecule) to another chemical entity (acceptor) changing their oxidation states in the process."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electron transfer"@en ; -. diff --git a/vocabularies/voc4cat/0000284.ttl b/vocabularies/voc4cat/0000284.ttl deleted file mode 100644 index 8df38d03..00000000 --- a/vocabularies/voc4cat/0000284.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000284"^^xsd:token ; - skos:broader ; - skos:definition "A ring-shaped compound that contains at least one nitrogen atom as part of its cyclic structure along with carbon atoms."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "nitrogen heterocycle"@en ; -. diff --git a/vocabularies/voc4cat/0000285.ttl b/vocabularies/voc4cat/0000285.ttl deleted file mode 100644 index c42ecd9d..00000000 --- a/vocabularies/voc4cat/0000285.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000285"^^xsd:token ; - skos:broader ; - skos:definition "The chemical or enzymatic incorporation of carbon dioxide into organic compounds (typically carbohydrates)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "carbon dioxide fixation"@en ; -. diff --git a/vocabularies/voc4cat/0000286.ttl b/vocabularies/voc4cat/0000286.ttl deleted file mode 100644 index cdfe1399..00000000 --- a/vocabularies/voc4cat/0000286.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000286"^^xsd:token ; - skos:altLabel "XAS"@en ; - skos:broader ; - skos:definition "An element- and orbital- specific analytical technique that probes the energy-dependent absorption of X-rays from synchrotron radiation, to study the electronic and geometric properties of materials."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0009-0004-3786-0773 Carla Terboven added children"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "X-ray absorption spectroscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000287.ttl b/vocabularies/voc4cat/0000287.ttl deleted file mode 100644 index b897811c..00000000 --- a/vocabularies/voc4cat/0000287.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000287"^^xsd:token ; - skos:broader ; - skos:definition "An ion or molecule that binds to a central atom through electron pair donation, to form a coordination complex compound."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "ligand"@en ; -. diff --git a/vocabularies/voc4cat/0000288.ttl b/vocabularies/voc4cat/0000288.ttl deleted file mode 100644 index 48744e4f..00000000 --- a/vocabularies/voc4cat/0000288.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000288"^^xsd:token ; - skos:broader ; - skos:definition "A microscopy technique that uses an electron beam as a source of sample illumination."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electron microscopy"@en ; -. diff --git a/vocabularies/voc4cat/0000289.ttl b/vocabularies/voc4cat/0000289.ttl deleted file mode 100644 index 1ab38802..00000000 --- a/vocabularies/voc4cat/0000289.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000289"^^xsd:token ; - skos:altLabel - "CO oxidation reaction"@en , - "carbon monoxide oxidation"@en , - "carbon monoxide oxidation reaction"@en ; - skos:broader ; - skos:definition "The reaction in which carbon monoxide (CO) is converted to carbon dioxide (CO₂) through interaction with an oxidizing agent, typically oxygen (O₂)."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "CO oxidation"@en ; -. diff --git a/vocabularies/voc4cat/0000290.ttl b/vocabularies/voc4cat/0000290.ttl deleted file mode 100644 index cf5ee24a..00000000 --- a/vocabularies/voc4cat/0000290.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000290"^^xsd:token ; - skos:altLabel - "CO2 reduction reaction"@en , - "carbon dioxide reduction"@en , - "carbon dioxide reduction reaction"@en ; - skos:broader ; - skos:definition "The chemical reaction in which carbon dioxide (CO₂) is converted into value-added chemicals or fuels through electron and proton transfer, typically facilitated by a catalyst under electrochemical, photochemical, or thermochemical conditions."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "CO2 reduction"@en ; -. diff --git a/vocabularies/voc4cat/0000291.ttl b/vocabularies/voc4cat/0000291.ttl deleted file mode 100644 index 55566a41..00000000 --- a/vocabularies/voc4cat/0000291.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000291"^^xsd:token ; - skos:broader ; - skos:definition "The generation of molecular hydrogen (H2) through chemical transformations."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydrogen production"@en ; -. diff --git a/vocabularies/voc4cat/0000292.ttl b/vocabularies/voc4cat/0000292.ttl deleted file mode 100644 index b8eb3def..00000000 --- a/vocabularies/voc4cat/0000292.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000292"^^xsd:token ; - skos:broader ; - skos:definition "An industrial term that covers the Fischer-Tropsch process and all the systems, equipment, and engineering methods used to apply it at commercial scale. This includes reactors, control systems, and plant designs used to produce synthetic fuels using the Fischer-Tropsch synthesis."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0001-6434-6623 Aleksandr Fedorov defined the resource"@en ; - skos:inScheme ; - skos:prefLabel "Fischer-Tropsch technology"@en ; -. diff --git a/vocabularies/voc4cat/0000293.ttl b/vocabularies/voc4cat/0000293.ttl deleted file mode 100644 index a452917e..00000000 --- a/vocabularies/voc4cat/0000293.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000293"^^xsd:token ; - skos:broader ; - skos:definition "A particle with dimensions in the nanoscale range."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "nanoparticle"@en ; -. diff --git a/vocabularies/voc4cat/0000294.ttl b/vocabularies/voc4cat/0000294.ttl deleted file mode 100644 index 086bdfe2..00000000 --- a/vocabularies/voc4cat/0000294.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000294"^^xsd:token ; - skos:broader ; - skos:definition "A catalytic process where the catalytic species is present in the same physical phase as the reactants, typically in a sinlge liquid phase."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "homogeneous catalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000295.ttl b/vocabularies/voc4cat/0000295.ttl deleted file mode 100644 index dbe0b01b..00000000 --- a/vocabularies/voc4cat/0000295.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000295"^^xsd:token ; - skos:broader ; - skos:definition "Organic mass of biological origin."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-2367-1988 Norbert Kockmann defined the resource"@en ; - skos:inScheme ; - skos:prefLabel "biomass"@en ; -. diff --git a/vocabularies/voc4cat/0000296.ttl b/vocabularies/voc4cat/0000296.ttl deleted file mode 100644 index 665fee98..00000000 --- a/vocabularies/voc4cat/0000296.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000296"^^xsd:token ; - skos:broader ; - skos:definition "Acceleration of a chemical reaction induced by the presence of material that is chemically unchanged at the end of the reaction."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "catalysis"@en ; -. diff --git a/vocabularies/voc4cat/0000297.ttl b/vocabularies/voc4cat/0000297.ttl deleted file mode 100644 index 0a6b665d..00000000 --- a/vocabularies/voc4cat/0000297.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000297"^^xsd:token ; - skos:altLabel "dehydrogenation reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction that involves the removal of two or more hydrogen atoms from a molecule."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "dehydrogenation"@en ; -. diff --git a/vocabularies/voc4cat/0000298.ttl b/vocabularies/voc4cat/0000298.ttl deleted file mode 100644 index 4e9c2070..00000000 --- a/vocabularies/voc4cat/0000298.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000298"^^xsd:token ; - skos:broader ; - skos:definition "The study and characterization of the temporal progression of physical and (bio-)chemical processes, with particular emphasis on the rates and mechanisms by which chemical transformations occur."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "kinetics"@en ; -. diff --git a/vocabularies/voc4cat/0000299.ttl b/vocabularies/voc4cat/0000299.ttl deleted file mode 100644 index 6dfa0fcd..00000000 --- a/vocabularies/voc4cat/0000299.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000299"^^xsd:token ; - skos:broader ; - skos:definition "Measure of the acidic strength of a solution."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-2367-1988 Norbert Kockmann defined the resource"@en ; - skos:inScheme ; - skos:prefLabel "acidity"@en ; -. diff --git a/vocabularies/voc4cat/0000300.ttl b/vocabularies/voc4cat/0000300.ttl deleted file mode 100644 index 30ee84fb..00000000 --- a/vocabularies/voc4cat/0000300.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000300"^^xsd:token ; - skos:broader ; - skos:definition "Mixture of metals with certain (often improved) mechanical, chemical, electrical, magnetic or other properties."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-2367-1988 Norbert Kockmann defined the resource"@en ; - skos:inScheme ; - skos:prefLabel "alloy"@en ; -. diff --git a/vocabularies/voc4cat/0000301.ttl b/vocabularies/voc4cat/0000301.ttl deleted file mode 100644 index 9a3ca77d..00000000 --- a/vocabularies/voc4cat/0000301.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000301"^^xsd:token ; - skos:broader ; - skos:definition "A Lewis acid is a molecular entity that functions as an electron-pair acceptor, forming a coordinate covalent bond with a Lewis base through interaction with its lone electron pair."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "Lewis acid"@en ; -. diff --git a/vocabularies/voc4cat/0000302.ttl b/vocabularies/voc4cat/0000302.ttl deleted file mode 100644 index 2c84e51f..00000000 --- a/vocabularies/voc4cat/0000302.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000302"^^xsd:token ; - skos:altLabel - "isomerisation reaction"@en , - "isomerization"@en , - "isomerization reaction"@en ; - skos:broader ; - skos:definition "A chemical reaction in which the main product is an isomer of the main reactant, entailing a change in molecular structure without altering the overall molecular composition."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "isomerisation"@en ; -. diff --git a/vocabularies/voc4cat/0000303.ttl b/vocabularies/voc4cat/0000303.ttl deleted file mode 100644 index 9d8bc12a..00000000 --- a/vocabularies/voc4cat/0000303.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000303"^^xsd:token ; - skos:broader ; - skos:definition "A chemical reaction where one or more alkyl groups is introduced into a molecular structure via covalent bond formation."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "alkylation"@en ; -. diff --git a/vocabularies/voc4cat/0000304.ttl b/vocabularies/voc4cat/0000304.ttl deleted file mode 100644 index d0734200..00000000 --- a/vocabularies/voc4cat/0000304.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000304"^^xsd:token ; - skos:altLabel - "polymerisation reaction"@en , - "polymerization"@en , - "polymerization reaction"@en ; - skos:broader ; - skos:definition "A process in which low molecular weight monomers (of the same or different kind) are combined forming a long-chain or three-dimensional, high molecular weight polymer molecule."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "polymerisation"@en ; -. diff --git a/vocabularies/voc4cat/0000305.ttl b/vocabularies/voc4cat/0000305.ttl deleted file mode 100644 index 9379bccc..00000000 --- a/vocabularies/voc4cat/0000305.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000305"^^xsd:token ; - skos:broader ; - skos:definition "The quality of being free from change or variation or not taking part in chemical change."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "stability"@en ; -. diff --git a/vocabularies/voc4cat/0000306.ttl b/vocabularies/voc4cat/0000306.ttl deleted file mode 100644 index a7a9f675..00000000 --- a/vocabularies/voc4cat/0000306.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000306"^^xsd:token ; - skos:altLabel "hydrolysis reaction"@en ; - skos:broader ; - skos:definition "A solvolysis reaction where the solvent material is water."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydrolysis"@en ; -. diff --git a/vocabularies/voc4cat/0000307.ttl b/vocabularies/voc4cat/0000307.ttl deleted file mode 100644 index 3866dc7f..00000000 --- a/vocabularies/voc4cat/0000307.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000307"^^xsd:token ; - skos:altLabel "POM"@en ; - skos:broader ; - skos:definition "An anionic metal-oxygen cluster composed of early transition metals in high oxidation states, interconnected by shared oxygen atoms to form a closed 3-dimensional framework."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "polyoxometalate"@en ; -. diff --git a/vocabularies/voc4cat/0000308.ttl b/vocabularies/voc4cat/0000308.ttl deleted file mode 100644 index d7a85f5a..00000000 --- a/vocabularies/voc4cat/0000308.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000308"^^xsd:token ; - skos:broader ; - skos:definition "Measure of the basic strength from OH- ions of a solution."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-2367-1988 Norbert Kockmann defined the resource"@en ; - skos:inScheme ; - skos:prefLabel "basicity"@en ; -. diff --git a/vocabularies/voc4cat/0000309.ttl b/vocabularies/voc4cat/0000309.ttl deleted file mode 100644 index 6b0ce68e..00000000 --- a/vocabularies/voc4cat/0000309.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0000309"^^xsd:token ; - skos:broader ; - skos:definition "A chemical element in the d-block of the periodic table with a partially filled d-orbital."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:prefLabel "transition metal"@en ; -. diff --git a/vocabularies/voc4cat/0001900.ttl b/vocabularies/voc4cat/0001900.ttl deleted file mode 100644 index 0aedddcf..00000000 --- a/vocabularies/voc4cat/0001900.ttl +++ /dev/null @@ -1,36 +0,0 @@ -PREFIX dcterms: -PREFIX rdfs: -PREFIX skos: -PREFIX xsd: - - - a skos:Collection ; - dcterms:identifier "voc4cat_0001900"^^xsd:token ; - dcterms:isPartOf ; - rdfs:isDefinedBy ; - skos:definition "A collection of concepts referring to material characterization techniques and methods to evaluate their efficiency in photocatalysis."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; - skos:inScheme ; - skos:member - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "Characterization and evaluation techniques"@en ; -. diff --git a/vocabularies/voc4cat/0001901.ttl b/vocabularies/voc4cat/0001901.ttl deleted file mode 100644 index 955c8a70..00000000 --- a/vocabularies/voc4cat/0001901.ttl +++ /dev/null @@ -1,192 +0,0 @@ -PREFIX dcterms: -PREFIX rdfs: -PREFIX skos: -PREFIX xsd: - - - a skos:Collection ; - dcterms:identifier "voc4cat_0001901"^^xsd:token ; - dcterms:isPartOf ; - rdfs:isDefinedBy ; - skos:definition "A collection of concepts referring to photocatalysis."@en ; - skos:historyNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the collection, 0000-0002-5898-1820 David Linke updated members"@en ; - skos:inScheme ; - skos:member - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "Photocatalysis collection"@en ; -. diff --git a/vocabularies/voc4cat/0005001.ttl b/vocabularies/voc4cat/0005001.ttl deleted file mode 100644 index 289e4f60..00000000 --- a/vocabularies/voc4cat/0005001.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005001"^^xsd:token ; - skos:broader ; - skos:definition "A measure to quantify how fast and selective a chemical conversion occurs in a reactor. A chemical conversion may include multiple reactions."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - ; - skos:prefLabel "reactor performance measure"@en ; -. diff --git a/vocabularies/voc4cat/0005002.ttl b/vocabularies/voc4cat/0005002.ttl deleted file mode 100644 index e4e50f6a..00000000 --- a/vocabularies/voc4cat/0005002.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005002"^^xsd:token ; - skos:broader ; - skos:definition "A measure to quantify how fast and selective a chemical conversion occurs. A chemical conversion may include multiple reactions."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - ; - skos:prefLabel "chemical conversion performance measure"@en ; -. diff --git a/vocabularies/voc4cat/0005003.ttl b/vocabularies/voc4cat/0005003.ttl deleted file mode 100644 index d57b8283..00000000 --- a/vocabularies/voc4cat/0005003.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005003"^^xsd:token ; - skos:broader ; - skos:definition "A measure to quantify how fast and selective a chemical conversion occurs over in presence of a catalyst. A chemical conversion may include multiple reactions."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - ; - skos:prefLabel "catalyst performance measure"@en ; -. diff --git a/vocabularies/voc4cat/0005004.ttl b/vocabularies/voc4cat/0005004.ttl deleted file mode 100644 index d539e7c5..00000000 --- a/vocabularies/voc4cat/0005004.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005004"^^xsd:token ; - skos:broader - , - , - ; - skos:definition "A dimensionless physical quantity describing the fraction of a reactant that reacts in a chemical conversion. If a reactant is consumed completely its conversion is 1 (or 100 %)."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "conversion"@en ; -. diff --git a/vocabularies/voc4cat/0005005.ttl b/vocabularies/voc4cat/0005005.ttl deleted file mode 100644 index 6c7a7b57..00000000 --- a/vocabularies/voc4cat/0005005.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005005"^^xsd:token ; - skos:broader - , - , - ; - skos:definition "A dimensionless physical quantity describing the fraction of a product B that is formed from a reactant A taking into account the stoichiometry. If A fully reacts to B without side-reactions, the yield of product B is 1 (or 100 %)."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "yield"@en ; -. diff --git a/vocabularies/voc4cat/0005006.ttl b/vocabularies/voc4cat/0005006.ttl deleted file mode 100644 index 4efeb79a..00000000 --- a/vocabularies/voc4cat/0005006.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005006"^^xsd:token ; - skos:broader - , - , - ; - skos:definition """A physical quantity that describes the amount of product produced per unit of time and unit of producing entity. The producing entity is for example the volume of a chemical reactor or in catalysis the mass or volume or moles of catalyst. -Example unit: kg{product} / (hour * cubicmeter{catalyst})"""@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "space-time yield"@en ; -. diff --git a/vocabularies/voc4cat/0005007.ttl b/vocabularies/voc4cat/0005007.ttl deleted file mode 100644 index 7cb20a02..00000000 --- a/vocabularies/voc4cat/0005007.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005007"^^xsd:token ; - skos:broader ; - skos:definition "Describes a transformation that changes the chemical composition of involved materials."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "chemical conversion"@en ; -. diff --git a/vocabularies/voc4cat/0005008.ttl b/vocabularies/voc4cat/0005008.ttl deleted file mode 100644 index ed8644a1..00000000 --- a/vocabularies/voc4cat/0005008.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005008"^^xsd:token ; - skos:broader ; - skos:definition "A quantity describing the progress of a chemical reaction. For any chemical entitiy taking part in the reaction it is defined by the amount of chemical entity formed devided by its stoichiometric number in the reaction."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource, 0000-0002-4041-0165 Julia Schumann modified the resource"@en ; - skos:inScheme ; - skos:prefLabel "extent of reaction"@en ; -. diff --git a/vocabularies/voc4cat/0005009.ttl b/vocabularies/voc4cat/0005009.ttl deleted file mode 100644 index 15d12bd9..00000000 --- a/vocabularies/voc4cat/0005009.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005009"^^xsd:token ; - skos:altLabel "formation rate"@en ; - skos:broader ; - skos:definition "Is a quantity describing how fast a product is formed in a chemical reaction. It is defined by the amount of product formed per unit of time."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "rate of formation"@en ; -. diff --git a/vocabularies/voc4cat/0005010.ttl b/vocabularies/voc4cat/0005010.ttl deleted file mode 100644 index 30037ece..00000000 --- a/vocabularies/voc4cat/0005010.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005010"^^xsd:token ; - skos:altLabel "consumption rate"@en ; - skos:broader ; - skos:definition "Is a quantity describing how fast a reactant is consumed in a chemical reaction. It is defined by the amount of reactant consumed per unit of time."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "rate of consumption"@en ; -. diff --git a/vocabularies/voc4cat/0005011.ttl b/vocabularies/voc4cat/0005011.ttl deleted file mode 100644 index 937c177e..00000000 --- a/vocabularies/voc4cat/0005011.ttl +++ /dev/null @@ -1,20 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005011"^^xsd:token ; - skos:broader ; - skos:definition "A collection of the resource categories used in pid4cat. Resource categories classify for which type of resource the PID is used, e.g. if the PID is for a sample or a device."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - ; - skos:prefLabel "PID resource categories"@en ; -. diff --git a/vocabularies/voc4cat/0005012.ttl b/vocabularies/voc4cat/0005012.ttl deleted file mode 100644 index 28bc7fbb..00000000 --- a/vocabularies/voc4cat/0005012.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005012"^^xsd:token ; - skos:broader ; - skos:definition "A PID resource category for a collection, which is a group of resources and/or other collections."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "collection"@en ; -. diff --git a/vocabularies/voc4cat/0005013.ttl b/vocabularies/voc4cat/0005013.ttl deleted file mode 100644 index fbad50c0..00000000 --- a/vocabularies/voc4cat/0005013.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005013"^^xsd:token ; - skos:broader ; - skos:definition "A PID resource category for a material sample ([voc4cat:0005056](https://w3id.org/nfdi4cat/voc4cat_0005056))."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "sample"@en ; -. diff --git a/vocabularies/voc4cat/0005014.ttl b/vocabularies/voc4cat/0005014.ttl deleted file mode 100644 index 851e6312..00000000 --- a/vocabularies/voc4cat/0005014.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005014"^^xsd:token ; - skos:broader ; - skos:definition "A PID resource category for a material used in the research process. Note that in the PID resource categorization, a \"material\" is distinct from \"sample\" ([voc4cat:0005013](https://w3id.org/nfdi4cat/voc4cat_0005013)) and distinct from \"device\" ([voc4cat:0005015](https://w3id.org/nfdi4cat/voc4cat_0005015)) ."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "material"@en ; -. diff --git a/vocabularies/voc4cat/0005015.ttl b/vocabularies/voc4cat/0005015.ttl deleted file mode 100644 index 7dbdf837..00000000 --- a/vocabularies/voc4cat/0005015.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005015"^^xsd:token ; - skos:broader ; - skos:definition "A PID resource category for a physical device used in a research or manufacturing process."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "device"@en ; -. diff --git a/vocabularies/voc4cat/0005016.ttl b/vocabularies/voc4cat/0005016.ttl deleted file mode 100644 index 47826bb7..00000000 --- a/vocabularies/voc4cat/0005016.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005016"^^xsd:token ; - skos:broader ; - skos:definition "A PID resource category for a collection of data available for access or download. A data object might be a data file, a data set, a data collection."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "data object"@en ; -. diff --git a/vocabularies/voc4cat/0005017.ttl b/vocabularies/voc4cat/0005017.ttl deleted file mode 100644 index 075c5ab2..00000000 --- a/vocabularies/voc4cat/0005017.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005017"^^xsd:token ; - skos:broader ; - skos:definition "A PID resource category for a data service, which is an organized system of operations that provide data processing functions or access to datasets."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "data service"@en ; -. diff --git a/vocabularies/voc4cat/0005018.ttl b/vocabularies/voc4cat/0005018.ttl deleted file mode 100644 index 0a0a350a..00000000 --- a/vocabularies/voc4cat/0005018.ttl +++ /dev/null @@ -1,47 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005018"^^xsd:token ; - skos:broader ; - skos:definition "The type of relation between two resources. These relations are for example used to express relations between resources identified by their persistent identifiers."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "resource relation"@en ; -. diff --git a/vocabularies/voc4cat/0005019.ttl b/vocabularies/voc4cat/0005019.ttl deleted file mode 100644 index 5a93264c..00000000 --- a/vocabularies/voc4cat/0005019.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005019"^^xsd:token ; - skos:broader ; - skos:definition "The resource is cited by another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is cited by"@en ; -. diff --git a/vocabularies/voc4cat/0005020.ttl b/vocabularies/voc4cat/0005020.ttl deleted file mode 100644 index 93c8f46d..00000000 --- a/vocabularies/voc4cat/0005020.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005020"^^xsd:token ; - skos:broader ; - skos:definition "The resource cites another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "cites"@en ; -. diff --git a/vocabularies/voc4cat/0005021.ttl b/vocabularies/voc4cat/0005021.ttl deleted file mode 100644 index b1398978..00000000 --- a/vocabularies/voc4cat/0005021.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005021"^^xsd:token ; - skos:broader ; - skos:definition "The resource is supplemented by another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is supplement to"@en ; -. diff --git a/vocabularies/voc4cat/0005022.ttl b/vocabularies/voc4cat/0005022.ttl deleted file mode 100644 index 538f8ce9..00000000 --- a/vocabularies/voc4cat/0005022.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005022"^^xsd:token ; - skos:broader ; - skos:definition "The resource supplements another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is supplemented by"@en ; -. diff --git a/vocabularies/voc4cat/0005023.ttl b/vocabularies/voc4cat/0005023.ttl deleted file mode 100644 index d3494d19..00000000 --- a/vocabularies/voc4cat/0005023.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005023"^^xsd:token ; - skos:broader ; - skos:definition "The resource is continued by another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is continued by"@en ; -. diff --git a/vocabularies/voc4cat/0005024.ttl b/vocabularies/voc4cat/0005024.ttl deleted file mode 100644 index 716c4c16..00000000 --- a/vocabularies/voc4cat/0005024.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005024"^^xsd:token ; - skos:broader ; - skos:definition "The resource continues another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "continues"@en ; -. diff --git a/vocabularies/voc4cat/0005025.ttl b/vocabularies/voc4cat/0005025.ttl deleted file mode 100644 index f1ebbc53..00000000 --- a/vocabularies/voc4cat/0005025.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005025"^^xsd:token ; - skos:broader ; - skos:definition "The resource has metadata in another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "has metadata"@en ; -. diff --git a/vocabularies/voc4cat/0005026.ttl b/vocabularies/voc4cat/0005026.ttl deleted file mode 100644 index 77452471..00000000 --- a/vocabularies/voc4cat/0005026.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005026"^^xsd:token ; - skos:broader ; - skos:definition "The resource is metadata for another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is metadata for"@en ; -. diff --git a/vocabularies/voc4cat/0005027.ttl b/vocabularies/voc4cat/0005027.ttl deleted file mode 100644 index 4fbffd76..00000000 --- a/vocabularies/voc4cat/0005027.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005027"^^xsd:token ; - skos:broader ; - skos:definition "The resource has a version. This is useful to refer to different versions of an abstract resource, for example, \"Python has version Python 3.12.4\"."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "has version"@en ; -. diff --git a/vocabularies/voc4cat/0005028.ttl b/vocabularies/voc4cat/0005028.ttl deleted file mode 100644 index 5a85123f..00000000 --- a/vocabularies/voc4cat/0005028.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005028"^^xsd:token ; - skos:broader ; - skos:definition "The resource is a version of another resource. This is useful to refer to an abstract resource that has different versions, for example, \"Python 3.12.4 is version of Python\"."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is version of"@en ; -. diff --git a/vocabularies/voc4cat/0005029.ttl b/vocabularies/voc4cat/0005029.ttl deleted file mode 100644 index 493b06bf..00000000 --- a/vocabularies/voc4cat/0005029.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005029"^^xsd:token ; - skos:broader ; - skos:definition "The resource is a new version of another versioned resource. This is useful to refer between versioned resources, for example, \"Python 3.12.1 is_new_version_of Python 3.12.0\"."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is new version of"@en ; -. diff --git a/vocabularies/voc4cat/0005030.ttl b/vocabularies/voc4cat/0005030.ttl deleted file mode 100644 index 292c7276..00000000 --- a/vocabularies/voc4cat/0005030.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005030"^^xsd:token ; - skos:broader ; - skos:definition "The resource is a previous version of another versioned resource. This is useful to refer between versioned resources, for example, \"Python 3.12.0 is_previous_version_of Python 3.12.1\"."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is previous version of"@en ; -. diff --git a/vocabularies/voc4cat/0005031.ttl b/vocabularies/voc4cat/0005031.ttl deleted file mode 100644 index c8548964..00000000 --- a/vocabularies/voc4cat/0005031.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005031"^^xsd:token ; - skos:broader ; - skos:definition """The resource is part of another resource. This relation applies to container-contained type relationships. -If the relation refers to publishing one resource as part of another resource, use "IS_PUBLISHED_IN" instead. If the relation refers to a versioned resource and non-versioned resource, use "IS_VERSION_OF" instead."""@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is part of"@en ; -. diff --git a/vocabularies/voc4cat/0005032.ttl b/vocabularies/voc4cat/0005032.ttl deleted file mode 100644 index 9dd102cf..00000000 --- a/vocabularies/voc4cat/0005032.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005032"^^xsd:token ; - skos:broader ; - skos:definition """The resource has part another resource. This relation applies to container-contained type relationships. -If the relation refers to publishing one resource as part of another resource, "IS_PUBLISHED_IN" instead. If the relation refers to a versioned resource and non-versioned resource, use "HAS_VERSION" instead."""@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "has part"@en ; -. diff --git a/vocabularies/voc4cat/0005033.ttl b/vocabularies/voc4cat/0005033.ttl deleted file mode 100644 index ae952127..00000000 --- a/vocabularies/voc4cat/0005033.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005033"^^xsd:token ; - skos:broader ; - skos:definition """The resource is published in another resource. -A resource A that is_published_in a resource B is independent from other resources published in the same resource B."""@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is published in"@en ; -. diff --git a/vocabularies/voc4cat/0005034.ttl b/vocabularies/voc4cat/0005034.ttl deleted file mode 100644 index 2eeb510f..00000000 --- a/vocabularies/voc4cat/0005034.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005034"^^xsd:token ; - skos:broader ; - skos:definition "The resource is referenced by another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is referenced by"@en ; -. diff --git a/vocabularies/voc4cat/0005035.ttl b/vocabularies/voc4cat/0005035.ttl deleted file mode 100644 index 3b83c598..00000000 --- a/vocabularies/voc4cat/0005035.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005035"^^xsd:token ; - skos:broader ; - skos:definition "The resource references another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "references"@en ; -. diff --git a/vocabularies/voc4cat/0005036.ttl b/vocabularies/voc4cat/0005036.ttl deleted file mode 100644 index e22364d5..00000000 --- a/vocabularies/voc4cat/0005036.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005036"^^xsd:token ; - skos:broader ; - skos:definition "The resource is documented by another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is documented by"@en ; -. diff --git a/vocabularies/voc4cat/0005037.ttl b/vocabularies/voc4cat/0005037.ttl deleted file mode 100644 index 4ceeeb83..00000000 --- a/vocabularies/voc4cat/0005037.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005037"^^xsd:token ; - skos:broader ; - skos:definition "The resource documents another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "documents"@en ; -. diff --git a/vocabularies/voc4cat/0005038.ttl b/vocabularies/voc4cat/0005038.ttl deleted file mode 100644 index 9e0b622b..00000000 --- a/vocabularies/voc4cat/0005038.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005038"^^xsd:token ; - skos:broader ; - skos:definition "The resource is compiled by another resource. Resources may be text or software. The compiler may be a computer program or a person."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is compiled by"@en ; -. diff --git a/vocabularies/voc4cat/0005039.ttl b/vocabularies/voc4cat/0005039.ttl deleted file mode 100644 index 81f6459e..00000000 --- a/vocabularies/voc4cat/0005039.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005039"^^xsd:token ; - skos:broader ; - skos:definition "The resource compiles another resource. Resources may be text or software. The compiler may be a computer program or a person."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "compiles"@en ; -. diff --git a/vocabularies/voc4cat/0005040.ttl b/vocabularies/voc4cat/0005040.ttl deleted file mode 100644 index 36f78f6d..00000000 --- a/vocabularies/voc4cat/0005040.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005040"^^xsd:token ; - skos:broader ; - skos:definition "The resource is variant form of another resource. This may be used e.g. for relating architecture-specific builds of a software program to a source-code release. It may also be used to express the relation between data in different formats (e.g. PNG, JPEG) of the same image."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is variant form of"@en ; -. diff --git a/vocabularies/voc4cat/0005041.ttl b/vocabularies/voc4cat/0005041.ttl deleted file mode 100644 index 25d1bd9f..00000000 --- a/vocabularies/voc4cat/0005041.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005041"^^xsd:token ; - skos:broader ; - skos:definition "The resource is original form of another resource. This may be used e.g. for relating architecture-specific builds of a software program to a source-code release. It may also be used to express the relation between data in different formats (e.g. PNG, JPEG) of the same image."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is original form of"@en ; -. diff --git a/vocabularies/voc4cat/0005042.ttl b/vocabularies/voc4cat/0005042.ttl deleted file mode 100644 index 7107215a..00000000 --- a/vocabularies/voc4cat/0005042.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005042"^^xsd:token ; - skos:broader ; - skos:definition "The resource is identical to another resource. May be used to indicate the relationship between an exact copy of a resource that is published at another location."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is identical to"@en ; -. diff --git a/vocabularies/voc4cat/0005043.ttl b/vocabularies/voc4cat/0005043.ttl deleted file mode 100644 index 54ba6713..00000000 --- a/vocabularies/voc4cat/0005043.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005043"^^xsd:token ; - skos:broader ; - skos:definition "The resource is derived from another resource. This may be used for relating a new dataset created by data processing to its original source dataset. For samples it may express the relation between the original sample and another sample derived from it by physical or chemical treatment."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is derived from"@en ; -. diff --git a/vocabularies/voc4cat/0005044.ttl b/vocabularies/voc4cat/0005044.ttl deleted file mode 100644 index 7b17d706..00000000 --- a/vocabularies/voc4cat/0005044.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005044"^^xsd:token ; - skos:broader ; - skos:definition "The resource is source of another resource. This may be used for example to express the relation between a source dataset and a new dataset derived from it by data processing. For samples it may express the relation between a sample processed by physical or chemical treatment and the original sample."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is source of"@en ; -. diff --git a/vocabularies/voc4cat/0005045.ttl b/vocabularies/voc4cat/0005045.ttl deleted file mode 100644 index 05ea63bd..00000000 --- a/vocabularies/voc4cat/0005045.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005045"^^xsd:token ; - skos:broader ; - skos:definition "The resource is collected by another resource. May be used to indicate the relationship between a dataset and an instrument that is used to collect, measure, obtain, or observe data."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is collected by"@en ; -. diff --git a/vocabularies/voc4cat/0005046.ttl b/vocabularies/voc4cat/0005046.ttl deleted file mode 100644 index 01eedb24..00000000 --- a/vocabularies/voc4cat/0005046.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005046"^^xsd:token ; - skos:broader ; - skos:definition """The resource collects another resource. May be used to indicate the relationship between an instrument and -where it has been used to collect, measure, obtain, or observe data."""@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "collects"@en ; -. diff --git a/vocabularies/voc4cat/0005047.ttl b/vocabularies/voc4cat/0005047.ttl deleted file mode 100644 index cfa153a2..00000000 --- a/vocabularies/voc4cat/0005047.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005047"^^xsd:token ; - skos:broader ; - skos:definition "The resource is required by another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is required by"@en ; -. diff --git a/vocabularies/voc4cat/0005048.ttl b/vocabularies/voc4cat/0005048.ttl deleted file mode 100644 index 53beda12..00000000 --- a/vocabularies/voc4cat/0005048.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005048"^^xsd:token ; - skos:broader ; - skos:definition "The resource requires another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "requires"@en ; -. diff --git a/vocabularies/voc4cat/0005049.ttl b/vocabularies/voc4cat/0005049.ttl deleted file mode 100644 index 17be4a21..00000000 --- a/vocabularies/voc4cat/0005049.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005049"^^xsd:token ; - skos:broader ; - skos:definition "The resource is obsoleted by another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "is obsoleted by"@en ; -. diff --git a/vocabularies/voc4cat/0005050.ttl b/vocabularies/voc4cat/0005050.ttl deleted file mode 100644 index 382ea36d..00000000 --- a/vocabularies/voc4cat/0005050.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005050"^^xsd:token ; - skos:broader ; - skos:definition "The resource obsoletes another resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "obsoletes"@en ; -. diff --git a/vocabularies/voc4cat/0005051.ttl b/vocabularies/voc4cat/0005051.ttl deleted file mode 100644 index 1f19eeb5..00000000 --- a/vocabularies/voc4cat/0005051.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005051"^^xsd:token ; - skos:broader ; - skos:definition "A usage status of a pid4cat persistent identifier (PID)."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - ; - skos:prefLabel "pid4cat status"@en ; -. diff --git a/vocabularies/voc4cat/0005052.ttl b/vocabularies/voc4cat/0005052.ttl deleted file mode 100644 index 59ebb106..00000000 --- a/vocabularies/voc4cat/0005052.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005052"^^xsd:token ; - skos:broader ; - skos:definition "The persistent identifier is reserved but the resource is not yet linked."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "submitted"@en ; -. diff --git a/vocabularies/voc4cat/0005053.ttl b/vocabularies/voc4cat/0005053.ttl deleted file mode 100644 index d002c8c9..00000000 --- a/vocabularies/voc4cat/0005053.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005053"^^xsd:token ; - skos:broader ; - skos:definition "The persistent identifier is linked to a concrete resource."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "registered"@en ; -. diff --git a/vocabularies/voc4cat/0005054.ttl b/vocabularies/voc4cat/0005054.ttl deleted file mode 100644 index eb1522c5..00000000 --- a/vocabularies/voc4cat/0005054.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005054"^^xsd:token ; - skos:broader ; - skos:definition "The persistent identifier is obsolete, e.g. because the resource is referenced by another persistent identifier."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "obsoleted"@en ; -. diff --git a/vocabularies/voc4cat/0005055.ttl b/vocabularies/voc4cat/0005055.ttl deleted file mode 100644 index 07154e3f..00000000 --- a/vocabularies/voc4cat/0005055.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005055"^^xsd:token ; - skos:broader ; - skos:definition "The persistent identifier is deprecated, e.g. because the resource can no longer be found."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "deprecated"@en ; -. diff --git a/vocabularies/voc4cat/0005056.ttl b/vocabularies/voc4cat/0005056.ttl deleted file mode 100644 index 5fbe7bef..00000000 --- a/vocabularies/voc4cat/0005056.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005056"^^xsd:token ; - skos:altLabel "specimen"@en ; - skos:broadMatch ; - skos:broader ; - skos:definition "A representative part of a material of interest on which observations are made."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "material sample"@en ; -. diff --git a/vocabularies/voc4cat/0005057.ttl b/vocabularies/voc4cat/0005057.ttl deleted file mode 100644 index 093aa6bd..00000000 --- a/vocabularies/voc4cat/0005057.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005057"^^xsd:token ; - skos:broadMatch ; - skos:broader ; - skos:definition "A representative part of an entity of interest on which observations are made and which is created by time-based or spatial selection. It may have a lower dimension than the entity of interest. For example, an image may be a spatio-temporal sample of a 3D object."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "spatio-temporal sample"@en ; -. diff --git a/vocabularies/voc4cat/0005058.ttl b/vocabularies/voc4cat/0005058.ttl deleted file mode 100644 index 944a7dbf..00000000 --- a/vocabularies/voc4cat/0005058.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005058"^^xsd:token ; - skos:broadMatch ; - skos:broader ; - skos:definition "A representative part of an entity of interest on which observations are made and which is created by statistical sampling or subset selection."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "statistical sample"@en ; -. diff --git a/vocabularies/voc4cat/0005059.ttl b/vocabularies/voc4cat/0005059.ttl deleted file mode 100644 index 2a230ef4..00000000 --- a/vocabularies/voc4cat/0005059.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0005059"^^xsd:token ; - skos:broader ; - skos:definition "An established standard to which the described resource conforms. This relation should be used to indicate the model, schema, ontology, or profile that the resource content conforms to."@en ; - skos:historyNote "0000-0002-5898-1820 David Linke created the resource"@en ; - skos:inScheme ; - skos:prefLabel "conforms to"@en ; -. diff --git a/vocabularies/voc4cat/0007001.ttl b/vocabularies/voc4cat/0007001.ttl deleted file mode 100644 index 09c211ba..00000000 --- a/vocabularies/voc4cat/0007001.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007001"^^xsd:token ; - skos:broader ; - skos:definition "A process during which a chemical reaction is accelerated by the presence of a catalyst in a different phase than the reactant. The reaction generally proceeds at the interface."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "heterogeneous catalysis"@en ; -. diff --git a/vocabularies/voc4cat/0007002.ttl b/vocabularies/voc4cat/0007002.ttl deleted file mode 100644 index 216271a9..00000000 --- a/vocabularies/voc4cat/0007002.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007002"^^xsd:token ; - skos:broader ; - skos:definition "A process, during which elevated temperature is applied to increase the reaction rate of a reaction in presence of a catalyst."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "thermal catalysis"@en ; -. diff --git a/vocabularies/voc4cat/0007003.ttl b/vocabularies/voc4cat/0007003.ttl deleted file mode 100644 index c7ee2af8..00000000 --- a/vocabularies/voc4cat/0007003.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007003"^^xsd:token ; - skos:broader ; - skos:definition "A substance that increases the rate of a chemical reaction that is in a different phase than the reagents."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "heterogeneous catalyst"@en ; -. diff --git a/vocabularies/voc4cat/0007004.ttl b/vocabularies/voc4cat/0007004.ttl deleted file mode 100644 index 751be748..00000000 --- a/vocabularies/voc4cat/0007004.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007004"^^xsd:token ; - skos:broader ; - skos:definition "The composition of chemical species fed to the inlet of a chemical reactor."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "reactor feed"@en ; -. diff --git a/vocabularies/voc4cat/0007005.ttl b/vocabularies/voc4cat/0007005.ttl deleted file mode 100644 index e72c8758..00000000 --- a/vocabularies/voc4cat/0007005.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007005"^^xsd:token ; - skos:broader ; - skos:definition "A substance that is added to a chemical reaction."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reagent"@en ; -. diff --git a/vocabularies/voc4cat/0007006.ttl b/vocabularies/voc4cat/0007006.ttl deleted file mode 100644 index 96d84ab1..00000000 --- a/vocabularies/voc4cat/0007006.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007006"^^xsd:token ; - skos:altLabel "active centre"@en ; - skos:broader ; - skos:definition "Those sites for adsorption which are the effective sites for a particular heterogeneous catalytic reaction."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "active site"@en ; -. diff --git a/vocabularies/voc4cat/0007007.ttl b/vocabularies/voc4cat/0007007.ttl deleted file mode 100644 index 8123ff31..00000000 --- a/vocabularies/voc4cat/0007007.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007007"^^xsd:token ; - skos:broader ; - skos:definition "A type of catalytic test, where the performance of the catalyst is measured over an extended time period. Not to be performed at full conversion to be able to see catalyst deactivation, but usually also not at differential conditions to see the effect of product concentration on the catalyst."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "stability measurement"@en ; -. diff --git a/vocabularies/voc4cat/0007008.ttl b/vocabularies/voc4cat/0007008.ttl deleted file mode 100644 index b8113064..00000000 --- a/vocabularies/voc4cat/0007008.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007008"^^xsd:token ; - skos:broader ; - skos:definition "A type of catalytic test, where the depletion of formation of chemical substances is measured, usually performed under differential conditions"@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "kinetic measurement"@en ; -. diff --git a/vocabularies/voc4cat/0007009.ttl b/vocabularies/voc4cat/0007009.ttl deleted file mode 100644 index 0acaa7c3..00000000 --- a/vocabularies/voc4cat/0007009.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007009"^^xsd:token ; - skos:broader ; - skos:definition "A name for a chemical reaction which assigns the reactants and (desired) products."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction name"@en ; -. diff --git a/vocabularies/voc4cat/0007010.ttl b/vocabularies/voc4cat/0007010.ttl deleted file mode 100644 index 18e846a7..00000000 --- a/vocabularies/voc4cat/0007010.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007010"^^xsd:token ; - skos:altLabel "reaction class"@en ; - skos:broader ; - skos:definition "A group of chemical reactions with common conditions or reactants, e.g. Oxidation, Hydrogenation, Reduction, Cracking."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction type"@en ; -. diff --git a/vocabularies/voc4cat/0007012.ttl b/vocabularies/voc4cat/0007012.ttl deleted file mode 100644 index a90d2580..00000000 --- a/vocabularies/voc4cat/0007012.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007012"^^xsd:token ; - skos:broader ; - skos:definition "A definition of best practice procedures to measure consistent datasets."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "handbook"@en ; -. diff --git a/vocabularies/voc4cat/0007013.ttl b/vocabularies/voc4cat/0007013.ttl deleted file mode 100644 index 49ffc86f..00000000 --- a/vocabularies/voc4cat/0007013.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007013"^^xsd:token ; - skos:broader ; - skos:definition "The temperature at which a chemical reaction is happening."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction temperature"@en ; -. diff --git a/vocabularies/voc4cat/0007014.ttl b/vocabularies/voc4cat/0007014.ttl deleted file mode 100644 index cfd386c0..00000000 --- a/vocabularies/voc4cat/0007014.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007014"^^xsd:token ; - skos:broader ; - skos:definition "Some characteristics that define the catalyst, which can be related to composition, active phase, or role."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "catalyst type"@en ; -. diff --git a/vocabularies/voc4cat/0007015.ttl b/vocabularies/voc4cat/0007015.ttl deleted file mode 100644 index 44b21bc3..00000000 --- a/vocabularies/voc4cat/0007015.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007015"^^xsd:token ; - skos:broader ; - skos:definition "A catalyst that consists mainly of the active ingredient or phase."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "bulk catalyst"@en ; -. diff --git a/vocabularies/voc4cat/0007016.ttl b/vocabularies/voc4cat/0007016.ttl deleted file mode 100644 index 133c967b..00000000 --- a/vocabularies/voc4cat/0007016.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007016"^^xsd:token ; - skos:broader ; - skos:definition "The main technique applied to make the catalyst material out of pure substances."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "preparation method"@en ; -. diff --git a/vocabularies/voc4cat/0007017.ttl b/vocabularies/voc4cat/0007017.ttl deleted file mode 100644 index 8f1eef4d..00000000 --- a/vocabularies/voc4cat/0007017.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007017"^^xsd:token ; - skos:broader ; - skos:definition "An apparatus or system designed for the controlled execution of reactions, encompassing a wide range of processes including chemical, nuclear, biochemical, or other physical transformations."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - ; - skos:prefLabel "reactor"@en ; -. diff --git a/vocabularies/voc4cat/0007018.ttl b/vocabularies/voc4cat/0007018.ttl deleted file mode 100644 index 8f7c4b04..00000000 --- a/vocabularies/voc4cat/0007018.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007018"^^xsd:token ; - skos:broader ; - skos:definition "A classification of chemical reactors based on the distinct design, configuration, and operational characteristics. Examples are stirred tank reactors, loop reactors, trickle beds, multitubular reactors, fluidized beds, and others. Each type is tailored to accomodate a specific combinations of reaction kinetics, thermodynamics, mass transfer requirements, and process variables."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke provided the definition"@en ; - skos:inScheme ; - skos:prefLabel "reactor design type"@en ; -. diff --git a/vocabularies/voc4cat/0007019.ttl b/vocabularies/voc4cat/0007019.ttl deleted file mode 100644 index 7e00946b..00000000 --- a/vocabularies/voc4cat/0007019.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007019"^^xsd:token ; - skos:altLabel "CSTR"@en ; - skos:broader ; - skos:definition "A reaction vessel characterized by continuously fed reactnts, thorough mixing of fed reactants with the contents already present in the reactor by stirring and continous removal of a product stream from the system to maintain a constant volume."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "continuous stirred tank reactor"@en ; -. diff --git a/vocabularies/voc4cat/0007020.ttl b/vocabularies/voc4cat/0007020.ttl deleted file mode 100644 index fd6c395e..00000000 --- a/vocabularies/voc4cat/0007020.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007020"^^xsd:token ; - skos:broader ; - skos:definition "The part of the reactor where the catalyst is located, characterized by length, diameter, volume."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "catalyst bed"@en ; -. diff --git a/vocabularies/voc4cat/0007021.ttl b/vocabularies/voc4cat/0007021.ttl deleted file mode 100644 index 8e5107c6..00000000 --- a/vocabularies/voc4cat/0007021.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007021"^^xsd:token ; - skos:altLabel "apparent catalyst volume"@en ; - skos:broader ; - skos:definition "The bulk volume taken up by the catalyst and potential diluent in a fixed bed reactor."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "catalyst bed volume"@en ; -. diff --git a/vocabularies/voc4cat/0007022.ttl b/vocabularies/voc4cat/0007022.ttl deleted file mode 100644 index 8f86c944..00000000 --- a/vocabularies/voc4cat/0007022.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007022"^^xsd:token ; - skos:broader ; - skos:definition "The portion of a powder catalyst sample that passes through a standard sieve of specified number and is retained by some finer sieve."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "sieve fraction"@en ; -. diff --git a/vocabularies/voc4cat/0007023.ttl b/vocabularies/voc4cat/0007023.ttl deleted file mode 100644 index 4976654a..00000000 --- a/vocabularies/voc4cat/0007023.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007023"^^xsd:token ; - skos:altLabel "GHSV"@en ; - skos:broader ; - skos:definition "A physical quantity given by the volumetric flow entering a control volume divided by the size of the control volume; the quantity must be given in the unit 1/hour. In heterogeneous catalysis the volume of the undiluted catalyst bed is used as characteristic control volume. In case of gases the flow at reference conditions (0°C, 100 kPa = 1 bar) is used."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "gas hourly space velocity"@en ; -. diff --git a/vocabularies/voc4cat/0007024.ttl b/vocabularies/voc4cat/0007024.ttl deleted file mode 100644 index 69022af9..00000000 --- a/vocabularies/voc4cat/0007024.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007024"^^xsd:token ; - skos:altLabel "rate of reaction"@en ; - skos:broader ; - skos:definition "A physical quantity describing how fast a chemical reaction proceeds. It is defined by the change of the extend of reaction per unit of time."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction rate"@en ; -. diff --git a/vocabularies/voc4cat/0007025.ttl b/vocabularies/voc4cat/0007025.ttl deleted file mode 100644 index d1c6bf88..00000000 --- a/vocabularies/voc4cat/0007025.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007025"^^xsd:token ; - skos:broader ; - skos:definition "A reaction rate that is normalized either to mass of active ingredient, surface area or certain measured adsorption sites."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "specific reaction rate"@en ; -. diff --git a/vocabularies/voc4cat/0007026.ttl b/vocabularies/voc4cat/0007026.ttl deleted file mode 100644 index 3c42c249..00000000 --- a/vocabularies/voc4cat/0007026.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007026"^^xsd:token ; - skos:broader ; - skos:definition "The number of datapoints per unit of time. Inverse of sampling interval."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "sampling frequency"@en ; -. diff --git a/vocabularies/voc4cat/0007027.ttl b/vocabularies/voc4cat/0007027.ttl deleted file mode 100644 index 44a95379..00000000 --- a/vocabularies/voc4cat/0007027.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007027"^^xsd:token ; - skos:broader ; - skos:definition "A synthesis method in which a solid material (a precipitate) sediments from a liquid solution in which the material is present in a concentration greater than its solubility in the liquid."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "precipitation"@en ; -. diff --git a/vocabularies/voc4cat/0007028.ttl b/vocabularies/voc4cat/0007028.ttl deleted file mode 100644 index 1d48bcd4..00000000 --- a/vocabularies/voc4cat/0007028.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007028"^^xsd:token ; - skos:broader ; - skos:definition "A synthesis method in which inorganic compounds are dissolved in a solvent and brought into contact with a solid support in order to deposit them completely or in parts onto the surface."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "impregnation"@en ; -. diff --git a/vocabularies/voc4cat/0007029.ttl b/vocabularies/voc4cat/0007029.ttl deleted file mode 100644 index c2f6959d..00000000 --- a/vocabularies/voc4cat/0007029.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007029"^^xsd:token ; - skos:broader ; - skos:definition "A synthesis method involving the thermal treatment of a mixture of substances in aqueous solution or in form of a slurry in water characterised by heating the mixture in a sealed reaction vessel to a temperature greater than the boiling point at standard pressure ."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "hydrothermal synthesis"@en ; -. diff --git a/vocabularies/voc4cat/0007030.ttl b/vocabularies/voc4cat/0007030.ttl deleted file mode 100644 index 8b0afeb1..00000000 --- a/vocabularies/voc4cat/0007030.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007030"^^xsd:token ; - skos:broader ; - skos:definition "Treatment of a solid substance or mixtures of solids at elevated temperatures."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "calcination"@en ; -. diff --git a/vocabularies/voc4cat/0007031.ttl b/vocabularies/voc4cat/0007031.ttl deleted file mode 100644 index 65182596..00000000 --- a/vocabularies/voc4cat/0007031.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007031"^^xsd:token ; - skos:broader ; - skos:definition "A method to synthesize mixed oxide/non-oxide powders by combustion of liquid precursor droplets in a flame."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "flame spray pyrolysis"@en ; -. diff --git a/vocabularies/voc4cat/0007032.ttl b/vocabularies/voc4cat/0007032.ttl deleted file mode 100644 index 3f3198c7..00000000 --- a/vocabularies/voc4cat/0007032.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007032"^^xsd:token ; - skos:broader ; - skos:definition "A representative temperature value for the operating temperature of a reactor. In the special case of an isothermal chemical reactor, this is the same as the reaction temperature."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reactor temperature"@en ; -. diff --git a/vocabularies/voc4cat/0007034.ttl b/vocabularies/voc4cat/0007034.ttl deleted file mode 100644 index 475a867b..00000000 --- a/vocabularies/voc4cat/0007034.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007034"^^xsd:token ; - skos:broader ; - skos:definition "A catalyst where the active material is usually the minority phase and fixed on a high surface area, relatively inert solid."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "supported catalyst"@en ; -. diff --git a/vocabularies/voc4cat/0007035.ttl b/vocabularies/voc4cat/0007035.ttl deleted file mode 100644 index 0cb57943..00000000 --- a/vocabularies/voc4cat/0007035.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007035"^^xsd:token ; - skos:broader ; - skos:definition "A device designed for the controlled execution of chemical reactions."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "chemical reactor"@en ; -. diff --git a/vocabularies/voc4cat/0007036.ttl b/vocabularies/voc4cat/0007036.ttl deleted file mode 100644 index 9142619a..00000000 --- a/vocabularies/voc4cat/0007036.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007036"^^xsd:token ; - skos:broader - , - ; - skos:definition "A chemical reactor in which the reaction is carried out in the presence of a catalyst."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "catalytic reactor"@en ; -. diff --git a/vocabularies/voc4cat/0007038.ttl b/vocabularies/voc4cat/0007038.ttl deleted file mode 100644 index 746c70ba..00000000 --- a/vocabularies/voc4cat/0007038.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007038"^^xsd:token ; - skos:broader ; - skos:definition "The mass of a material sample."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "sample mass"@en ; -. diff --git a/vocabularies/voc4cat/0007039.ttl b/vocabularies/voc4cat/0007039.ttl deleted file mode 100644 index 6d1d807a..00000000 --- a/vocabularies/voc4cat/0007039.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007039"^^xsd:token ; - skos:broader ; - skos:definition "Collection of environmental variables of a reaction such as temperature, pressure, reagent concentrations and flow rate."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reaction conditions"@en ; -. diff --git a/vocabularies/voc4cat/0007040.ttl b/vocabularies/voc4cat/0007040.ttl deleted file mode 100644 index 30154f77..00000000 --- a/vocabularies/voc4cat/0007040.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX rdfs: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007040"^^xsd:token ; - rdfs:isDefinedBy ; - skos:altLabel "reaction mechanism"@en ; - skos:broader ; - skos:definition "A detailed description of the process leading from the reactants to the products of a reaction, including a description as complete as possible of the composition, structure, energy and other properties of reaction intermediates, products and transition states."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "chemical reaction mechanism"@en ; -. diff --git a/vocabularies/voc4cat/0007041.ttl b/vocabularies/voc4cat/0007041.ttl deleted file mode 100644 index 0af81a17..00000000 --- a/vocabularies/voc4cat/0007041.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX rdfs: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007041"^^xsd:token ; - rdfs:isDefinedBy ; - skos:altLabel "elementary step"@en ; - skos:broader ; - skos:definition "A reaction for which no reaction intermediates have been detected or need to be postulated in order to describe the chemical reaction on a molecular scale. An elementary reaction is assumed to occur in a single step and to pass through a single transition state."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "elementary reaction"@en ; -. diff --git a/vocabularies/voc4cat/0007042.ttl b/vocabularies/voc4cat/0007042.ttl deleted file mode 100644 index c0574983..00000000 --- a/vocabularies/voc4cat/0007042.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007042"^^xsd:token ; - skos:broader ; - skos:definition "The person carrying out a synthesis preparation."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "preparator"@en ; -. diff --git a/vocabularies/voc4cat/0007043.ttl b/vocabularies/voc4cat/0007043.ttl deleted file mode 100644 index bef23e93..00000000 --- a/vocabularies/voc4cat/0007043.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007043"^^xsd:token ; - skos:broader ; - skos:definition "The person starting or carrying out a planned process."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "experimenter"@en ; -. diff --git a/vocabularies/voc4cat/0007044.ttl b/vocabularies/voc4cat/0007044.ttl deleted file mode 100644 index a2d00066..00000000 --- a/vocabularies/voc4cat/0007044.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007044"^^xsd:token ; - skos:broader ; - skos:definition "The fractions of atoms of a specific chemical element located at the surface of a material versus the total number of atoms of this specific element in the material."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:prefLabel "dispersion"@en ; -. diff --git a/vocabularies/voc4cat/0007045.ttl b/vocabularies/voc4cat/0007045.ttl deleted file mode 100644 index 543a4bbc..00000000 --- a/vocabularies/voc4cat/0007045.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007045"^^xsd:token ; - skos:broader ; - skos:definition "A physical entity which is a human beeing."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "person"@en ; -. diff --git a/vocabularies/voc4cat/0007046.ttl b/vocabularies/voc4cat/0007046.ttl deleted file mode 100644 index d88ea24a..00000000 --- a/vocabularies/voc4cat/0007046.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007046"^^xsd:token ; - skos:altLabel "WHSV"@en ; - skos:broader ; - skos:definition "A physical quantity given by the volumetric flow entering a catalytic reactor divided by the mass of the undiluted catalyst bed in this control volume. In case of gases the flow at reference conditions (0°C, 100 kPa = 1 bar) is used."@en ; - skos:historyNote "0000-0002-4041-0165 Julia Schumann created the resource,"@en ; - skos:inScheme ; - skos:prefLabel "weight hourly space velocity"@en ; -. diff --git a/vocabularies/voc4cat/0007101.ttl b/vocabularies/voc4cat/0007101.ttl deleted file mode 100644 index 0d38d48d..00000000 --- a/vocabularies/voc4cat/0007101.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007101"^^xsd:token ; - skos:broader ; - skos:definition "Chemical reactors are often classified by their abstract concept. The reactor model type characterizes the basic physicochemical behavior of a reactor and thus creates a level of comparability between reactors. Different reactor model types are often used in simulation to simplify complex equations and physical behaviors."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - ; - skos:prefLabel "reactor model type"@en ; -. diff --git a/vocabularies/voc4cat/0007102.ttl b/vocabularies/voc4cat/0007102.ttl deleted file mode 100644 index d84d3e8c..00000000 --- a/vocabularies/voc4cat/0007102.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007102"^^xsd:token ; - skos:altLabel "PFR model"@en ; - skos:broader ; - skos:definition "An abstract concept/ideal reactor model type in which a liquid flows uniformly through the tube, resulting in a straight wave/flow front. Each fluid element has the same residence time."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "plug flow reactor model"@en ; -. diff --git a/vocabularies/voc4cat/0007103.ttl b/vocabularies/voc4cat/0007103.ttl deleted file mode 100644 index c82cc5ce..00000000 --- a/vocabularies/voc4cat/0007103.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007103"^^xsd:token ; - skos:broader ; - skos:definition "An abstract concept/ideal reactor model type, in which the volume of fluid in the reaction vessel is considered to be perfectly mixed which results in the same concentration of all components in the whole reaction volume."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "stirred tank reactor model"@en ; -. diff --git a/vocabularies/voc4cat/0007104.ttl b/vocabularies/voc4cat/0007104.ttl deleted file mode 100644 index 2c80e56f..00000000 --- a/vocabularies/voc4cat/0007104.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007104"^^xsd:token ; - skos:broader ; - skos:definition "A reactor model, in which opposing to the ideal plug flow behavior, friction is acting on the fluid, thus creating a residence time distribution."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "tubular reactor model"@en ; -. diff --git a/vocabularies/voc4cat/0007105.ttl b/vocabularies/voc4cat/0007105.ttl deleted file mode 100644 index 4d1d7535..00000000 --- a/vocabularies/voc4cat/0007105.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007105"^^xsd:token ; - skos:broader ; - skos:definition "An extension of the concept of the tubular reactor model, in that the fluid does not flow though a straight tube but through a tube with regular bends, e.g. a coiled tube, which modifies the residence time distribution as compared to a straight tube."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "coiled tubular reactor model"@en ; -. diff --git a/vocabularies/voc4cat/0007106.ttl b/vocabularies/voc4cat/0007106.ttl deleted file mode 100644 index a4bbbbd6..00000000 --- a/vocabularies/voc4cat/0007106.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007106"^^xsd:token ; - skos:altLabel "CSTR model"@en ; - skos:broader ; - skos:definition "A stirred tank reactor model with always present feed and effluent streams."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "continuous stirred tank reactor model"@en ; -. diff --git a/vocabularies/voc4cat/0007107.ttl b/vocabularies/voc4cat/0007107.ttl deleted file mode 100644 index c2657ded..00000000 --- a/vocabularies/voc4cat/0007107.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007107"^^xsd:token ; - skos:altLabel "batch stirred tank reactor model"@en ; - skos:broader ; - skos:definition "A stirred tank reactor model characterized by the absence of either feed or effluent flows. Examples modes of operation are batch (neither feed nor effluent), feed batch (only feed) , or drained batch (only effluent)."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "discontinuous stirred tank reactor model"@en ; -. diff --git a/vocabularies/voc4cat/0007108.ttl b/vocabularies/voc4cat/0007108.ttl deleted file mode 100644 index 103073f9..00000000 --- a/vocabularies/voc4cat/0007108.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007108"^^xsd:token ; - skos:altLabel "primary energy; accelerating voltage; electron beam energy"@en ; - skos:broader ; - skos:definition "The kinetic energy of the incident electron beam, typically measured in kiloelectronvolts (keV), which influences the interaction volume and excitation of X-rays in the sample."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "beam energy"@en ; -. diff --git a/vocabularies/voc4cat/0007109.ttl b/vocabularies/voc4cat/0007109.ttl deleted file mode 100644 index cb6af149..00000000 --- a/vocabularies/voc4cat/0007109.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007109"^^xsd:token ; - skos:altLabel "tilt angle"@en ; - skos:broader ; - skos:definition "The angle between the sample holder (stage) surface and the incident electron beam axis, used to optimize geometry for imaging or detection."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "stage tilt"@en ; -. diff --git a/vocabularies/voc4cat/0007111.ttl b/vocabularies/voc4cat/0007111.ttl deleted file mode 100644 index d7b9415c..00000000 --- a/vocabularies/voc4cat/0007111.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007111"^^xsd:token ; - skos:altLabel - "azimuth angle"@en , - "in-plane rotation"@en ; - skos:broader ; - skos:definition "The in-plane rotation angle of the specimen around the beam axis, used to align crystallographic directions or detector orientation relative to the sample."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "sample azimuth angle"@en ; -. diff --git a/vocabularies/voc4cat/0007112.ttl b/vocabularies/voc4cat/0007112.ttl deleted file mode 100644 index 04fbcf81..00000000 --- a/vocabularies/voc4cat/0007112.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007112"^^xsd:token ; - skos:altLabel "real time; clock time; elapsed acquisition time"@en ; - skos:broader ; - skos:definition "The total elapsed time during the data acquisition process, including both periods when the detector is actively collecting data and when it is not (due to dead time or processing delays)."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "measurement reference time"@en ; -. diff --git a/vocabularies/voc4cat/0007113.ttl b/vocabularies/voc4cat/0007113.ttl deleted file mode 100644 index d1d9feb0..00000000 --- a/vocabularies/voc4cat/0007113.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007113"^^xsd:token ; - skos:altLabel "live time; effective counting time; life time"@en ; - skos:broader ; - skos:definition "The net time during which the detector is actively recording, excluding time lost to processing (dead time)."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "active acquisition time"@en ; -. diff --git a/vocabularies/voc4cat/0007114.ttl b/vocabularies/voc4cat/0007114.ttl deleted file mode 100644 index 71b5abe4..00000000 --- a/vocabularies/voc4cat/0007114.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007114"^^xsd:token ; - skos:broader ; - skos:definition "The classification of a detector according to its underlying detection principle, design, or intended measurement mode"@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "detector type"@en ; -. diff --git a/vocabularies/voc4cat/0007115.ttl b/vocabularies/voc4cat/0007115.ttl deleted file mode 100644 index d1b4d59d..00000000 --- a/vocabularies/voc4cat/0007115.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007115"^^xsd:token ; - skos:altLabel "entrance dead layer; inactive detection surface region"@en ; - skos:broader ; - skos:definition "A non-sensitive region at the surface of a detector, typically composed of silicon or other passive materials, in which incident rays of various kinds may be absorbed without generating a measurable signal. This layer reduces sensitivity."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "detector window dead layer"@en ; -. diff --git a/vocabularies/voc4cat/0007116.ttl b/vocabularies/voc4cat/0007116.ttl deleted file mode 100644 index a4e82a8a..00000000 --- a/vocabularies/voc4cat/0007116.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007116"^^xsd:token ; - skos:altLabel "detector active layer thickness"@en ; - skos:broader ; - skos:definition "The physical thickness of the active region in a detector that is responsible for absorbing and converting incoming rays into charge carriers for signal generation."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "detector excitation material thickness"@en ; -. diff --git a/vocabularies/voc4cat/0007117.ttl b/vocabularies/voc4cat/0007117.ttl deleted file mode 100644 index 52467380..00000000 --- a/vocabularies/voc4cat/0007117.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007117"^^xsd:token ; - skos:altLabel "sensor window material;"@en ; - skos:broader ; - skos:definition "The material and structural configuration of the barrier or interface at the front of a detector that allows selected input signals to pass through while protecting internal components or maintaining internal conditions."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "detector window material"@en ; -. diff --git a/vocabularies/voc4cat/0007118.ttl b/vocabularies/voc4cat/0007118.ttl deleted file mode 100644 index f6850b66..00000000 --- a/vocabularies/voc4cat/0007118.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007118"^^xsd:token ; - skos:altLabel "energy fluctuation coefficient; charge generation variability factor"@en ; - skos:broader ; - skos:definition "A dimensionless constant that quantifies the statistical variation in the number of charge carriers generated per absorbed X-ray photon. Lower Fano factors indicate better intrinsic energy resolution of the detector material."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "Fano factor"@en ; -. diff --git a/vocabularies/voc4cat/0007119.ttl b/vocabularies/voc4cat/0007119.ttl deleted file mode 100644 index f87e2b37..00000000 --- a/vocabularies/voc4cat/0007119.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007119"^^xsd:token ; - skos:altLabel "Mn FWHM; energy resolution at Mn Kα; manganese peak width; Mn resolution"@en ; - skos:broader ; - skos:definition "The spectral linewidth of a peak, expressed as the width between the two points on either side of the maximum intensity where the intensity is half of the maximum value.Also known as full width at half maximum (FWHM)."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "Peak full width at half maximum"@en ; -. diff --git a/vocabularies/voc4cat/0007120.ttl b/vocabularies/voc4cat/0007120.ttl deleted file mode 100644 index e35526ad..00000000 --- a/vocabularies/voc4cat/0007120.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007120"^^xsd:token ; - skos:altLabel "linear scaling calibration"@en ; - skos:broader ; - skos:definition "A method of scaling measurement output using a constant proportional relationship between the measured signal and its corresponding physical quantity."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "linear calibration"@en ; -. diff --git a/vocabularies/voc4cat/0007121.ttl b/vocabularies/voc4cat/0007121.ttl deleted file mode 100644 index e3bc8e33..00000000 --- a/vocabularies/voc4cat/0007121.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007121"^^xsd:token ; - skos:altLabel "data channel; signal bin"@en ; - skos:broader ; - skos:definition "A distinct signal pathway in a measurement system, defined by a particular detector, detector element, or signal processing range, through which data are collected. In setups with multiple detectors or detector arrays, each channel represents one of the parallel streams of measurement that can be acquired and analyzed separately."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "measurement channel"@en ; -. diff --git a/vocabularies/voc4cat/0007122.ttl b/vocabularies/voc4cat/0007122.ttl deleted file mode 100644 index 667bba40..00000000 --- a/vocabularies/voc4cat/0007122.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007122"^^xsd:token ; - skos:broader ; - skos:definition "A material or specimen with known and well-characterized properties that is used as a standard for calibration or validation of measurements."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; - skos:inScheme ; - skos:prefLabel "measurement reference material"@en ; -. diff --git a/vocabularies/voc4cat/0007123.ttl b/vocabularies/voc4cat/0007123.ttl deleted file mode 100644 index ac057868..00000000 --- a/vocabularies/voc4cat/0007123.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007123"^^xsd:token ; - skos:broader ; - skos:definition "A numerical value representing the ratio of the apparent size of a specimen as observed in an image to its true, physical size."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; - skos:inScheme ; - skos:prefLabel "sample magnification"@en ; -. diff --git a/vocabularies/voc4cat/0007124.ttl b/vocabularies/voc4cat/0007124.ttl deleted file mode 100644 index fee8766b..00000000 --- a/vocabularies/voc4cat/0007124.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007124"^^xsd:token ; - skos:broader ; - skos:definition "The specific interval of time that a scanning probe, beam, or sensor remains stationary at a single, discrete coordinate or pixel to acquire data."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; - skos:inScheme ; - skos:prefLabel "scanning dwell time"@en ; -. diff --git a/vocabularies/voc4cat/0007125.ttl b/vocabularies/voc4cat/0007125.ttl deleted file mode 100644 index c35fe319..00000000 --- a/vocabularies/voc4cat/0007125.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007125"^^xsd:token ; - skos:broader ; - skos:definition "The complete period during which a detector actively accumulates photons or other signal-generating particles to constitute a single, distinct measurement."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; - skos:inScheme ; - skos:prefLabel "signal integration time"@en ; -. diff --git a/vocabularies/voc4cat/0007126.ttl b/vocabularies/voc4cat/0007126.ttl deleted file mode 100644 index ccb5a87f..00000000 --- a/vocabularies/voc4cat/0007126.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007126"^^xsd:token ; - skos:broader ; - skos:definition "A predefined operational setting or configured strategy that dictates the specific protocol, parameters, and method by which experimental data is collected."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; - skos:inScheme ; - skos:prefLabel "acquisition mode"@en ; -. diff --git a/vocabularies/voc4cat/0007127.ttl b/vocabularies/voc4cat/0007127.ttl deleted file mode 100644 index 719ca442..00000000 --- a/vocabularies/voc4cat/0007127.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007127"^^xsd:token ; - skos:broader ; - skos:definition "The calibrated span, from a minimum to a maximum intensity, within which an analytical instrument or detector can quantitatively measure or process an incoming signal."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; - skos:inScheme ; - skos:prefLabel "signal range"@en ; -. diff --git a/vocabularies/voc4cat/0007128.ttl b/vocabularies/voc4cat/0007128.ttl deleted file mode 100644 index 808bf1c0..00000000 --- a/vocabularies/voc4cat/0007128.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007128"^^xsd:token ; - skos:broader ; - skos:definition "The defined set of dimensions, often expressed as the total number of discrete points or pixels in one or more coordinates, that constitute the structural grid for a data recording."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; - skos:inScheme ; - skos:prefLabel "measurement matrix size"@en ; -. diff --git a/vocabularies/voc4cat/0007129.ttl b/vocabularies/voc4cat/0007129.ttl deleted file mode 100644 index 98d59d44..00000000 --- a/vocabularies/voc4cat/0007129.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007129"^^xsd:token ; - skos:broader ; - skos:definition "The precise physical distance or step size that separates the centers of adjacent, discrete data acquisition points within a measurement scan or image."@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; - skos:inScheme ; - skos:prefLabel "spatial sampling interval"@en ; -. diff --git a/vocabularies/voc4cat/0007130.ttl b/vocabularies/voc4cat/0007130.ttl deleted file mode 100644 index 6178e2ff..00000000 --- a/vocabularies/voc4cat/0007130.ttl +++ /dev/null @@ -1,23 +0,0 @@ -PREFIX dcterms: -PREFIX rdfs: -PREFIX skos: -PREFIX xsd: - - - a skos:Collection ; - dcterms:identifier "voc4cat_0007130"^^xsd:token ; - dcterms:isPartOf ; - rdfs:isDefinedBy ; - skos:definition "Metadata attributes relevant for Scanning Electron Microscopy (SEM)"@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; - skos:inScheme ; - skos:member - , - , - , - , - , - , - ; - skos:prefLabel "SEM measurement attribute"@en ; -. diff --git a/vocabularies/voc4cat/0007131.ttl b/vocabularies/voc4cat/0007131.ttl deleted file mode 100644 index 46c89610..00000000 --- a/vocabularies/voc4cat/0007131.ttl +++ /dev/null @@ -1,37 +0,0 @@ -PREFIX dcterms: -PREFIX rdfs: -PREFIX skos: -PREFIX xsd: - - - a skos:Collection ; - dcterms:identifier "voc4cat_0007131"^^xsd:token ; - dcterms:isPartOf ; - rdfs:isDefinedBy ; - skos:definition "A collection of terms used in various measurement techniques, relevant in the domain of catalysis. (This collection is not exclusive)"@en ; - skos:historyNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; - skos:inScheme ; - skos:member - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "measurement metadata attribute collection"@en ; -. diff --git a/vocabularies/voc4cat/0007201.ttl b/vocabularies/voc4cat/0007201.ttl deleted file mode 100644 index d1e76a1c..00000000 --- a/vocabularies/voc4cat/0007201.ttl +++ /dev/null @@ -1,21 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007201"^^xsd:token ; - skos:broader ; - skos:definition "The two electronically conducting parts of an electrochemical cell."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - , - ; - skos:prefLabel "electrode"@en ; -. diff --git a/vocabularies/voc4cat/0007202.ttl b/vocabularies/voc4cat/0007202.ttl deleted file mode 100644 index b3070010..00000000 --- a/vocabularies/voc4cat/0007202.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007202"^^xsd:token ; - skos:altLabel "WE"@en ; - skos:broader ; - skos:definition "The electrode in a three-electrode cell where \"the action is\"."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "working electrode"@en ; -. diff --git a/vocabularies/voc4cat/0007203.ttl b/vocabularies/voc4cat/0007203.ttl deleted file mode 100644 index 54866832..00000000 --- a/vocabularies/voc4cat/0007203.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007203"^^xsd:token ; - skos:altLabel "CE"@en ; - skos:broader ; - skos:definition "An electrode in a three-electrode cell that is used only to make an electrical connection to the electrolyte so that a current can be applied to the working electrode."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "counter electrode"@en ; -. diff --git a/vocabularies/voc4cat/0007204.ttl b/vocabularies/voc4cat/0007204.ttl deleted file mode 100644 index 3e17ed1c..00000000 --- a/vocabularies/voc4cat/0007204.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007204"^^xsd:token ; - skos:altLabel "reaction class"@en ; - skos:broader ; - skos:definition "An electrode that has a well known and stable equilibrium electrode potential."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reference electrode"@en ; -. diff --git a/vocabularies/voc4cat/0007205.ttl b/vocabularies/voc4cat/0007205.ttl deleted file mode 100644 index 9d567f61..00000000 --- a/vocabularies/voc4cat/0007205.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007205"^^xsd:token ; - skos:broader ; - skos:definition "An electronic instrument that controls the electrical potential difference between the working and reference electrodes of a three-electrode cell at a preset value."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "potentiostat"@en ; -. diff --git a/vocabularies/voc4cat/0007206.ttl b/vocabularies/voc4cat/0007206.ttl deleted file mode 100644 index 15b6da64..00000000 --- a/vocabularies/voc4cat/0007206.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007206"^^xsd:token ; - skos:broader ; - skos:definition "An electroanalytical technique based on the measurement of the electromotive force of an electrochemical cell comprised of a measuring and a reference electrode."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - ; - skos:prefLabel "potentiometry"@en ; -. diff --git a/vocabularies/voc4cat/0007207.ttl b/vocabularies/voc4cat/0007207.ttl deleted file mode 100644 index 2033c083..00000000 --- a/vocabularies/voc4cat/0007207.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007207"^^xsd:token ; - skos:altLabel "CA"@en ; - skos:broader ; - skos:definition "An electrochemical measuring technique used for electrochemical analysis or for the determination of the kinetics and mechanism of electrode reactions. A fast-rising potential pulse is enforced on the working electrode of an electrochemical cell and the current flowing through this electrode is measured as a function of time."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "chronoamperometry"@en ; -. diff --git a/vocabularies/voc4cat/0007208.ttl b/vocabularies/voc4cat/0007208.ttl deleted file mode 100644 index a7ea9a1e..00000000 --- a/vocabularies/voc4cat/0007208.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007208"^^xsd:token ; - skos:altLabel "CP"@en ; - skos:broader ; - skos:definition "An electrochemical measuring technique used for electrochemical analysis or for the determination of the kinetics and mechanism of electrode reactions. A fast-rising current pulse is enforced on the working electrode of an electrochemical cell and the potential of this electrode is measured against a reference electrode as a function of time."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "chronopotentiometry"@en ; -. diff --git a/vocabularies/voc4cat/0007209.ttl b/vocabularies/voc4cat/0007209.ttl deleted file mode 100644 index 910ac94e..00000000 --- a/vocabularies/voc4cat/0007209.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007209"^^xsd:token ; - skos:altLabel "EIS"@en ; - skos:broader ; - skos:definition "A powerful tool for examining processes occurring at electrode surfaces. A small amplitude ac (sinusoidal) excitation signal (potential or current), covering a wide range of frequencies, is applied to the system under investigation and the response (current or voltage or another signal of interest) is measured. It is routinely used in electrode kinetics and mechanism investigations, and in the characterization of batteries, fuel cells, and corrosion phenomena."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrochemical impedance spectroscopy"@en ; -. diff --git a/vocabularies/voc4cat/0007210.ttl b/vocabularies/voc4cat/0007210.ttl deleted file mode 100644 index 26e58c02..00000000 --- a/vocabularies/voc4cat/0007210.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007210"^^xsd:token ; - skos:altLabel "OCV"@en ; - skos:broader ; - skos:definition "The cell voltage under zero current conditions."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "open circuit voltage"@en ; -. diff --git a/vocabularies/voc4cat/0007211.ttl b/vocabularies/voc4cat/0007211.ttl deleted file mode 100644 index 5e979021..00000000 --- a/vocabularies/voc4cat/0007211.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007211"^^xsd:token ; - skos:altLabel "LSV"@en ; - skos:broader ; - skos:definition "A voltammetry where the voltage changes linearly over time from a initial potential to a final potential."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "linear sweep voltammetry"@en ; -. diff --git a/vocabularies/voc4cat/0007212.ttl b/vocabularies/voc4cat/0007212.ttl deleted file mode 100644 index 3648b814..00000000 --- a/vocabularies/voc4cat/0007212.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007212"^^xsd:token ; - skos:altLabel "CC"@en ; - skos:broader ; - skos:definition "An electrochemical measuring technique used for electrochemical analysis or for the determination of the kinetics and mechanism of electrode reactions. A fast-rising potential pulse is enforced on the working electrode of an electrochemical cell and the electrical charge passing through this electrode is measured as a function of time."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "chronocoulometry"@en ; -. diff --git a/vocabularies/voc4cat/0007213.ttl b/vocabularies/voc4cat/0007213.ttl deleted file mode 100644 index 09fba90a..00000000 --- a/vocabularies/voc4cat/0007213.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007213"^^xsd:token ; - skos:altLabel "sweep rate potential"@en ; - skos:broader ; - skos:definition "In cyclic voltammetry, the rate at which the potential of the working electrode is varied, i.e., = (dE/dt). The value of is always cited as positive."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "scan rate potential"@en ; -. diff --git a/vocabularies/voc4cat/0007214.ttl b/vocabularies/voc4cat/0007214.ttl deleted file mode 100644 index 62a99b38..00000000 --- a/vocabularies/voc4cat/0007214.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007214"^^xsd:token ; - skos:broader ; - skos:definition "The minimal electrical potential in a cyclic voltammetry. This is where the sweep turns."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "lower limit potential"@en ; -. diff --git a/vocabularies/voc4cat/0007215.ttl b/vocabularies/voc4cat/0007215.ttl deleted file mode 100644 index d015de0a..00000000 --- a/vocabularies/voc4cat/0007215.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007215"^^xsd:token ; - skos:broader ; - skos:definition "The maximal electrical potential in a cyclic voltammetry. This is where the sweep turns."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "upper limit potential"@en ; -. diff --git a/vocabularies/voc4cat/0007216.ttl b/vocabularies/voc4cat/0007216.ttl deleted file mode 100644 index f453d866..00000000 --- a/vocabularies/voc4cat/0007216.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007216"^^xsd:token ; - skos:broader ; - skos:definition "The electrical potential at which a linear sweep or cyclic voltammetry starts."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "initial potential"@en ; -. diff --git a/vocabularies/voc4cat/0007217.ttl b/vocabularies/voc4cat/0007217.ttl deleted file mode 100644 index 744d3b72..00000000 --- a/vocabularies/voc4cat/0007217.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007217"^^xsd:token ; - skos:broader ; - skos:definition "The electrical potential at which a linear sweep or cyclic voltammetry ends."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "final potential"@en ; -. diff --git a/vocabularies/voc4cat/0007218.ttl b/vocabularies/voc4cat/0007218.ttl deleted file mode 100644 index b4c45b51..00000000 --- a/vocabularies/voc4cat/0007218.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007218"^^xsd:token ; - skos:broader ; - skos:definition "The electrical potential difference at which the potential in a linear sweep or cyclic voltammetry is altered."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "step size potential"@en ; -. diff --git a/vocabularies/voc4cat/0007219.ttl b/vocabularies/voc4cat/0007219.ttl deleted file mode 100644 index 64ecd89d..00000000 --- a/vocabularies/voc4cat/0007219.ttl +++ /dev/null @@ -1,21 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007219"^^xsd:token ; - skos:altLabel "voltage"@en ; - skos:broader ; - skos:definition "Defined as the amount of work needed per unit of electric charge to move the charge from a reference point to a specific point in an electric field. By definition, the electric potential at the reference point is zero units. A typical reference point is earth (ground)."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - ; - skos:prefLabel "electrical potential"@en ; -. diff --git a/vocabularies/voc4cat/0007220.ttl b/vocabularies/voc4cat/0007220.ttl deleted file mode 100644 index e2165815..00000000 --- a/vocabularies/voc4cat/0007220.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007220"^^xsd:token ; - skos:broader ; - skos:definition "The movement of electrical charges in a conductor; carried by electrons in an electronic conductor (electronic current) or by ions in an ionic conductor (ionic current)."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "current"@en ; -. diff --git a/vocabularies/voc4cat/0007221.ttl b/vocabularies/voc4cat/0007221.ttl deleted file mode 100644 index 8d6690e4..00000000 --- a/vocabularies/voc4cat/0007221.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007221"^^xsd:token ; - skos:broader ; - skos:definition "Current referred to the unit area of the electrode. Current divided by the true electrode area."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "current density"@en ; -. diff --git a/vocabularies/voc4cat/0007222.ttl b/vocabularies/voc4cat/0007222.ttl deleted file mode 100644 index bcd5b447..00000000 --- a/vocabularies/voc4cat/0007222.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007222"^^xsd:token ; - skos:broader ; - skos:definition "The measure of an electrical circuit element's inability to carry electrical current."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "resistance"@en ; -. diff --git a/vocabularies/voc4cat/0007223.ttl b/vocabularies/voc4cat/0007223.ttl deleted file mode 100644 index fa1955dc..00000000 --- a/vocabularies/voc4cat/0007223.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007223"^^xsd:token ; - skos:broader ; - skos:definition "The final environment in which the electrochemical reaction happens. Includes possibly purged electrolyte."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrochemical environment"@en ; -. diff --git a/vocabularies/voc4cat/0007224.ttl b/vocabularies/voc4cat/0007224.ttl deleted file mode 100644 index 9fbb0092..00000000 --- a/vocabularies/voc4cat/0007224.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007224"^^xsd:token ; - skos:broader ; - skos:definition "A chemical compound (salt, acid, or base) that dissociates into electrically charged ions when dissolved in a solvent."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrolyte"@en ; -. diff --git a/vocabularies/voc4cat/0007225.ttl b/vocabularies/voc4cat/0007225.ttl deleted file mode 100644 index 221ab9de..00000000 --- a/vocabularies/voc4cat/0007225.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007225"^^xsd:token ; - skos:broader ; - skos:definition "The process of treating an electrolyte solution with gas."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "purging"@en ; -. diff --git a/vocabularies/voc4cat/0007226.ttl b/vocabularies/voc4cat/0007226.ttl deleted file mode 100644 index ac38efd6..00000000 --- a/vocabularies/voc4cat/0007226.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007226"^^xsd:token ; - skos:broader ; - skos:definition "Gas which is used in purging."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "purging gas"@en ; -. diff --git a/vocabularies/voc4cat/0007227.ttl b/vocabularies/voc4cat/0007227.ttl deleted file mode 100644 index f133dafd..00000000 --- a/vocabularies/voc4cat/0007227.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007227"^^xsd:token ; - skos:broader ; - skos:definition "Temperature for which a gas is purged through the reaction chamber."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "purging temperature"@en ; -. diff --git a/vocabularies/voc4cat/0007228.ttl b/vocabularies/voc4cat/0007228.ttl deleted file mode 100644 index 33eefaa5..00000000 --- a/vocabularies/voc4cat/0007228.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007228"^^xsd:token ; - skos:broader ; - skos:definition "The number of cycles in a measurement, such as a cyclic voltammetry."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "number of voltammetry cycles"@en ; -. diff --git a/vocabularies/voc4cat/0007229.ttl b/vocabularies/voc4cat/0007229.ttl deleted file mode 100644 index f86ff73b..00000000 --- a/vocabularies/voc4cat/0007229.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007229"^^xsd:token ; - skos:broader ; - skos:definition "The quotient of faradaic current to total current passed."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "faradaic efficiency"@en ; -. diff --git a/vocabularies/voc4cat/0007230.ttl b/vocabularies/voc4cat/0007230.ttl deleted file mode 100644 index 33abb4db..00000000 --- a/vocabularies/voc4cat/0007230.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007230"^^xsd:token ; - skos:broader ; - skos:definition "The collection of instruments and devices used in an electochemical reaction. Can include electrodes, flow cells, beaker, does not include the electrochemical environment."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrochemical setup"@en ; -. diff --git a/vocabularies/voc4cat/0007231.ttl b/vocabularies/voc4cat/0007231.ttl deleted file mode 100644 index 5e81f771..00000000 --- a/vocabularies/voc4cat/0007231.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007231"^^xsd:token ; - skos:altLabel - "becker"@en , - "beker"@en ; - skos:broader ; - skos:definition "In laboratory equipment, a beaker is generally a cylindrical container with a flat bottom."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "beaker"@en ; -. diff --git a/vocabularies/voc4cat/0007232.ttl b/vocabularies/voc4cat/0007232.ttl deleted file mode 100644 index f184faaa..00000000 --- a/vocabularies/voc4cat/0007232.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007232"^^xsd:token ; - skos:broader ; - skos:definition "Electrochemical cell in which analyte solution flows at a constant velocity through stationary tubular electrode(s)."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "flow cell"@en ; -. diff --git a/vocabularies/voc4cat/0007233.ttl b/vocabularies/voc4cat/0007233.ttl deleted file mode 100644 index 4385b680..00000000 --- a/vocabularies/voc4cat/0007233.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007233"^^xsd:token ; - skos:broader ; - skos:definition "In voltammetry: a complementary pair of forward and reverse potential sweeps."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "voltammetry cycle"@en ; -. diff --git a/vocabularies/voc4cat/0007234.ttl b/vocabularies/voc4cat/0007234.ttl deleted file mode 100644 index 6ce0ed60..00000000 --- a/vocabularies/voc4cat/0007234.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007234"^^xsd:token ; - skos:broader ; - skos:definition "The phenomenon of movement (transportation) of electrical charge (that is, the electrical current) from one part of the electrochemical cell to another, occurring mainly as electromigration of ions, but it can also occur by diffusion of ions. See electrochemical potential."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "charge transport"@en ; -. diff --git a/vocabularies/voc4cat/0007235.ttl b/vocabularies/voc4cat/0007235.ttl deleted file mode 100644 index c0ae4292..00000000 --- a/vocabularies/voc4cat/0007235.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007235"^^xsd:token ; - skos:altLabel "separator"@en ; - skos:broader ; - skos:definition "A thin structural material (usually a sheet) used to separate the electrolyte of a divided electrochemical cell into two or more compartments."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "membrane"@en ; -. diff --git a/vocabularies/voc4cat/0007236.ttl b/vocabularies/voc4cat/0007236.ttl deleted file mode 100644 index 7d8a1bd8..00000000 --- a/vocabularies/voc4cat/0007236.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007236"^^xsd:token ; - skos:altLabel "H-cell"@en ; - skos:broader ; - skos:definition "The H-Cell is a two-compartment electrochemical cell used for membrane testing, hydrogen permeation, or any other experiment where two separate electrode chambers are required."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "H cell"@en ; -. diff --git a/vocabularies/voc4cat/0007237.ttl b/vocabularies/voc4cat/0007237.ttl deleted file mode 100644 index 54eaaaa4..00000000 --- a/vocabularies/voc4cat/0007237.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007237"^^xsd:token ; - skos:broader ; - skos:definition "An electrochemical measuring technique used for electrochemical analysis, for the determination of the kinetics and mechanism of electrode reactions, and for corrosion studies. \"Voltammetry\" is a family of techniques with the common characteristics that the potential of the working electrode is controlled (typically with a potentiostat) and the current flowing through the electrode is measured."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - ; - skos:prefLabel "voltammetry"@en ; -. diff --git a/vocabularies/voc4cat/0007238.ttl b/vocabularies/voc4cat/0007238.ttl deleted file mode 100644 index 9e3ae76e..00000000 --- a/vocabularies/voc4cat/0007238.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007238"^^xsd:token ; - skos:broader ; - skos:definition "Graphical representation of the results of a voltammetric measurement."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "voltammogramm"@en ; -. diff --git a/vocabularies/voc4cat/0007239.ttl b/vocabularies/voc4cat/0007239.ttl deleted file mode 100644 index e8960e22..00000000 --- a/vocabularies/voc4cat/0007239.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007239"^^xsd:token ; - skos:broader ; - skos:definition "The frequency of an alternating (ac) current is a measure of how many times the direction of the current flow changes, in the same direction, per second. As the direction of flow changes back and forth, the total number of directional changes, per second, is twice the frequency."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "frequency"@en ; -. diff --git a/vocabularies/voc4cat/0007240.ttl b/vocabularies/voc4cat/0007240.ttl deleted file mode 100644 index b331c055..00000000 --- a/vocabularies/voc4cat/0007240.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007240"^^xsd:token ; - skos:broader ; - skos:definition "Impedance is the analogue of the resistance when applied to alternating current. That is, it is a measure of a circuit element's inability to carry the electrical current."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "impedance"@en ; -. diff --git a/vocabularies/voc4cat/0007241.ttl b/vocabularies/voc4cat/0007241.ttl deleted file mode 100644 index 4eb3c6a2..00000000 --- a/vocabularies/voc4cat/0007241.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007241"^^xsd:token ; - skos:broader ; - skos:definition "Initial frequency in for example an electrochemical impedance spectroscopy."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "initial frequency"@en ; -. diff --git a/vocabularies/voc4cat/0007242.ttl b/vocabularies/voc4cat/0007242.ttl deleted file mode 100644 index 3d008c94..00000000 --- a/vocabularies/voc4cat/0007242.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007242"^^xsd:token ; - skos:broader ; - skos:definition "Final frequency in for example an electrochemical impedance spectroscopy."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "final frequency"@en ; -. diff --git a/vocabularies/voc4cat/0007243.ttl b/vocabularies/voc4cat/0007243.ttl deleted file mode 100644 index 67cd2cf1..00000000 --- a/vocabularies/voc4cat/0007243.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007243"^^xsd:token ; - skos:altLabel "RHE"@en ; - skos:broader ; - skos:definition "A commonly used reference electrode. A hydrogen electrode immersed directly into the electrolyte of the electrochemical cell and usually (unless otherwise stated) operated with one atmosphere pressure hydrogen gas. The equilibrium potential depends on the hydrogen ion concentration (strictly speaking, activity) of the cell electrolyte."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "reversible hydrogen electrode"@en ; -. diff --git a/vocabularies/voc4cat/0007244.ttl b/vocabularies/voc4cat/0007244.ttl deleted file mode 100644 index a582b5cf..00000000 --- a/vocabularies/voc4cat/0007244.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007244"^^xsd:token ; - skos:broader ; - skos:definition "The measure of the amount of dissolved material (solute) in a solution."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "concentration"@en ; -. diff --git a/vocabularies/voc4cat/0007245.ttl b/vocabularies/voc4cat/0007245.ttl deleted file mode 100644 index 0ceb7d45..00000000 --- a/vocabularies/voc4cat/0007245.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007245"^^xsd:token ; - skos:broader ; - skos:definition "The mass per area on a thin film sample, i.e. the working electrode."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "mass coverage"@en ; -. diff --git a/vocabularies/voc4cat/0007246.ttl b/vocabularies/voc4cat/0007246.ttl deleted file mode 100644 index b56ecc98..00000000 --- a/vocabularies/voc4cat/0007246.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007246"^^xsd:token ; - skos:broader ; - skos:definition "A liquid that dissolves another material."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "solvent"@en ; -. diff --git a/vocabularies/voc4cat/0007247.ttl b/vocabularies/voc4cat/0007247.ttl deleted file mode 100644 index adf8996e..00000000 --- a/vocabularies/voc4cat/0007247.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007247"^^xsd:token ; - skos:broader ; - skos:definition "The dissolved species (e.g., a salt) in a solution."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "solute"@en ; -. diff --git a/vocabularies/voc4cat/0007248.ttl b/vocabularies/voc4cat/0007248.ttl deleted file mode 100644 index 9fd415dd..00000000 --- a/vocabularies/voc4cat/0007248.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007248"^^xsd:token ; - skos:altLabel - "RDE"@en , - "rotating disk electrode"@en ; - skos:broader ; - skos:definition "A specialized hydrodynamic electrode used in the study of the kinetics and mechanism of electrode reactions and in electroanalysis for ensuring a known and controllable flow of solution over the electrode."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "rotating-disk electrode"@en ; -. diff --git a/vocabularies/voc4cat/0007249.ttl b/vocabularies/voc4cat/0007249.ttl deleted file mode 100644 index a3cc303f..00000000 --- a/vocabularies/voc4cat/0007249.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007249"^^xsd:token ; - skos:broader ; - skos:definition "A device that converts chemical energy into electrical energy or vice versa when a chemical reaction is occurring in the cell. Typically, it consists of two metal electrodes immersed into an aqueous solution (electrolyte) with electrode reactions occurring at the electrode-solution surfaces. See also galvanic cell and electrolytic cell."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - ; - skos:prefLabel "electrochemical cell"@en ; -. diff --git a/vocabularies/voc4cat/0007250.ttl b/vocabularies/voc4cat/0007250.ttl deleted file mode 100644 index 12ab1959..00000000 --- a/vocabularies/voc4cat/0007250.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007250"^^xsd:token ; - skos:broader ; - skos:definition "Equipment used in an electrochemical setup."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrochemical equipment"@en ; -. diff --git a/vocabularies/voc4cat/0007251.ttl b/vocabularies/voc4cat/0007251.ttl deleted file mode 100644 index 6aa84498..00000000 --- a/vocabularies/voc4cat/0007251.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007251"^^xsd:token ; - skos:altLabel - "OCP measurement"@en , - "OCV measurement"@en ; - skos:broader ; - skos:definition "The measurement of the open circuit voltage of an electrochemical cell."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "open circuit voltage measurement"@en ; -. diff --git a/vocabularies/voc4cat/0007252.ttl b/vocabularies/voc4cat/0007252.ttl deleted file mode 100644 index 8ac61637..00000000 --- a/vocabularies/voc4cat/0007252.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007252"^^xsd:token ; - skos:broader ; - skos:definition "A basic property of matter that gives rise to all electric and magnetic forces and interactions."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrical charge"@en ; -. diff --git a/vocabularies/voc4cat/0007253.ttl b/vocabularies/voc4cat/0007253.ttl deleted file mode 100644 index 29ccf773..00000000 --- a/vocabularies/voc4cat/0007253.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007253"^^xsd:token ; - skos:broader ; - skos:definition "Charge referred to the unit area of the electrode. Charge divided by electrode area."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrical charge density"@en ; -. diff --git a/vocabularies/voc4cat/0007254.ttl b/vocabularies/voc4cat/0007254.ttl deleted file mode 100644 index d3f89b0a..00000000 --- a/vocabularies/voc4cat/0007254.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007254"^^xsd:token ; - skos:broader ; - skos:definition "The electrode where reduction occurs in an electrochemical cell. It is the negative electrode in an electrolytic cell, while it is the positive electrode in a galvanic cell."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "cathode"@en ; -. diff --git a/vocabularies/voc4cat/0007255.ttl b/vocabularies/voc4cat/0007255.ttl deleted file mode 100644 index 585061e4..00000000 --- a/vocabularies/voc4cat/0007255.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007255"^^xsd:token ; - skos:broader ; - skos:definition "The electrode where oxidation occurs in an electrochemical cell. It is the positive electrode in an electrolytic cell, while it is the negative electrode in a galvanic cell."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "anode"@en ; -. diff --git a/vocabularies/voc4cat/0007256.ttl b/vocabularies/voc4cat/0007256.ttl deleted file mode 100644 index 02238673..00000000 --- a/vocabularies/voc4cat/0007256.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007256"^^xsd:token ; - skos:broader ; - skos:definition "An electrochemical cell that converts chemical energy into electrical energy. A cell in which chemical reactions occur spontaneously at the electrodes when they are connected through an external circuit, producing an electrical current."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "galvanic cell"@en ; -. diff --git a/vocabularies/voc4cat/0007257.ttl b/vocabularies/voc4cat/0007257.ttl deleted file mode 100644 index 9dd41abc..00000000 --- a/vocabularies/voc4cat/0007257.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007257"^^xsd:token ; - skos:broader ; - skos:definition "An electrochemical cell that converts electrical energy into chemical energy. The chemical reactions do not occur \"spontaneously\" at the electrodes when they are connected through an external circuit. The reaction must be forced by applying an external electrical current."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "electrolytic cell"@en ; -. diff --git a/vocabularies/voc4cat/0007258.ttl b/vocabularies/voc4cat/0007258.ttl deleted file mode 100644 index d419439d..00000000 --- a/vocabularies/voc4cat/0007258.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007258"^^xsd:token ; - skos:altLabel "true electrode area"@en ; - skos:broader ; - skos:definition "In contrast to substrate area, the actual area of a sample or electrode which is active."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "active area"@en ; -. diff --git a/vocabularies/voc4cat/0007259.ttl b/vocabularies/voc4cat/0007259.ttl deleted file mode 100644 index 94987bfd..00000000 --- a/vocabularies/voc4cat/0007259.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007259"^^xsd:token ; - skos:broader ; - skos:definition "The current that is flowing through an electrochemical cell and is causing (or is caused by) chemical reactions (charge transfer) occurring at the electrode surfaces."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "faradaic current"@en ; -. diff --git a/vocabularies/voc4cat/0007260.ttl b/vocabularies/voc4cat/0007260.ttl deleted file mode 100644 index eb27a1f9..00000000 --- a/vocabularies/voc4cat/0007260.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007260"^^xsd:token ; - skos:broader ; - skos:definition "A measure of the time taken for a solute to pass through a chromatography column. It is the mean of the residence time distribution; it is known as the first moment of the residence time distribution."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "retention time"@en ; -. diff --git a/vocabularies/voc4cat/0007261.ttl b/vocabularies/voc4cat/0007261.ttl deleted file mode 100644 index 12b3b9a2..00000000 --- a/vocabularies/voc4cat/0007261.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007261"^^xsd:token ; - skos:broader ; - skos:definition "A measure which is proportional to the amount of a product with a specific retention time. After calibration it is used to calculate gas concentrations of products of an chemical experiment."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "peak area"@en ; -. diff --git a/vocabularies/voc4cat/0007262.ttl b/vocabularies/voc4cat/0007262.ttl deleted file mode 100644 index 8f00b5fe..00000000 --- a/vocabularies/voc4cat/0007262.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007262"^^xsd:token ; - skos:broader ; - skos:definition "The thickness of the membrane."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "membrane thickness"@en ; -. diff --git a/vocabularies/voc4cat/0007263.ttl b/vocabularies/voc4cat/0007263.ttl deleted file mode 100644 index 66d491f8..00000000 --- a/vocabularies/voc4cat/0007263.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007263"^^xsd:token ; - skos:broader ; - skos:definition "The sum of all faradaic efficiencies in an experiment. If all current is accounted for should be 1."@en ; - skos:historyNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; - skos:inScheme ; - skos:prefLabel "total faradaic efficiency"@en ; -. diff --git a/vocabularies/voc4cat/0007793.ttl b/vocabularies/voc4cat/0007793.ttl deleted file mode 100644 index e70d44ad..00000000 --- a/vocabularies/voc4cat/0007793.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007793"^^xsd:token ; - skos:broader ; - skos:definition "A substance that is added to a reaction or material and influences the reaction outcome or material properties."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "additive"@en ; -. diff --git a/vocabularies/voc4cat/0007794.ttl b/vocabularies/voc4cat/0007794.ttl deleted file mode 100644 index bb81c5ca..00000000 --- a/vocabularies/voc4cat/0007794.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007794"^^xsd:token ; - skos:broader ; - skos:definition "A substance which is used as starting material for the synthesis of a functional material, for example a catalyst, and is transformed during the synthesis."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "precursor"@en ; -. diff --git a/vocabularies/voc4cat/0007795.ttl b/vocabularies/voc4cat/0007795.ttl deleted file mode 100644 index 06848777..00000000 --- a/vocabularies/voc4cat/0007795.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007795"^^xsd:token ; - skos:altLabel - "co precipitation"@en , - "coprecipitation"@en ; - skos:broader ; - skos:definition "A synthesis method for chemical substances which includes the simultaneous precipitation of two or more precursors."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "co-precipitation"@en ; -. diff --git a/vocabularies/voc4cat/0007803.ttl b/vocabularies/voc4cat/0007803.ttl deleted file mode 100644 index fde53340..00000000 --- a/vocabularies/voc4cat/0007803.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007803"^^xsd:token ; - skos:altLabel "TON"@en ; - skos:broader ; - skos:definition "The number of converted substrate molecules per active catalytic site."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "turnover number"@en ; -. diff --git a/vocabularies/voc4cat/0007806.ttl b/vocabularies/voc4cat/0007806.ttl deleted file mode 100644 index 778ceea5..00000000 --- a/vocabularies/voc4cat/0007806.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007806"^^xsd:token ; - skos:altLabel "IWI"@en ; - skos:broader ; - skos:definition "A synthesis method in which inorganic compounds are dissolved in a solvent and brought into contact with a solid support in order to deposit them. The volume of the solution corresponds exactly to the pore volume."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "incipient wetness impregnation"@en ; -. diff --git a/vocabularies/voc4cat/0007807.ttl b/vocabularies/voc4cat/0007807.ttl deleted file mode 100644 index 79e1169f..00000000 --- a/vocabularies/voc4cat/0007807.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007807"^^xsd:token ; - skos:altLabel "operando characterization"@en ; - skos:broader ; - skos:definition "Characterization during the ongoing catalytic process whereby the catalytic activity is measured simultaneously."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "operando analysis"@en ; -. diff --git a/vocabularies/voc4cat/0007808.ttl b/vocabularies/voc4cat/0007808.ttl deleted file mode 100644 index 197d951a..00000000 --- a/vocabularies/voc4cat/0007808.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007808"^^xsd:token ; - skos:altLabel - "in situ analysis"@en , - "in situ characterization"@en , - "in-situ characterization"@en ; - skos:broader ; - skos:definition "Characterization under the catalytic conditions without measuring the catalytic activity simultaneously."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "in-situ analysis"@en ; -. diff --git a/vocabularies/voc4cat/0007809.ttl b/vocabularies/voc4cat/0007809.ttl deleted file mode 100644 index 4810acb8..00000000 --- a/vocabularies/voc4cat/0007809.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007809"^^xsd:token ; - skos:broader ; - skos:definition "The gaseous environment in which a process, such as a catalytic test, synthesis or a measurement, takes place."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "atmosphere"@en ; -. diff --git a/vocabularies/voc4cat/0007811.ttl b/vocabularies/voc4cat/0007811.ttl deleted file mode 100644 index 09126370..00000000 --- a/vocabularies/voc4cat/0007811.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007811"^^xsd:token ; - skos:broader ; - skos:definition "Liquid fraction which is collected from the catalytic reaction mixture for analysis."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "liquid sample"@en ; -. diff --git a/vocabularies/voc4cat/0007812.ttl b/vocabularies/voc4cat/0007812.ttl deleted file mode 100644 index 2d05ed8e..00000000 --- a/vocabularies/voc4cat/0007812.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007812"^^xsd:token ; - skos:altLabel "gas sample"@en ; - skos:broader ; - skos:definition "Gaseous fraction which is collected from the catalytic reaction mixture for analysis."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "gaseous sample"@en ; -. diff --git a/vocabularies/voc4cat/0007813.ttl b/vocabularies/voc4cat/0007813.ttl deleted file mode 100644 index f2e47fb7..00000000 --- a/vocabularies/voc4cat/0007813.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007813"^^xsd:token ; - skos:altLabel - "liquid phase characterization"@en , - "liquid-phase analysis"@en , - "liquid-phase characterization"@en ; - skos:broader ; - skos:definition "Analysis of the liquid sample from a catalytic test."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "liquid phase analysis"@en ; -. diff --git a/vocabularies/voc4cat/0007814.ttl b/vocabularies/voc4cat/0007814.ttl deleted file mode 100644 index 67df0d67..00000000 --- a/vocabularies/voc4cat/0007814.ttl +++ /dev/null @@ -1,17 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007814"^^xsd:token ; - skos:altLabel - "gas phase characterization"@en , - "gas-phase analysis"@en , - "gas-phase characterization"@en ; - skos:broader ; - skos:definition "Analysis of the gaseous sample from a catalytic test."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "gas phase analysis"@en ; -. diff --git a/vocabularies/voc4cat/0007817.ttl b/vocabularies/voc4cat/0007817.ttl deleted file mode 100644 index 19ed98cd..00000000 --- a/vocabularies/voc4cat/0007817.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007817"^^xsd:token ; - skos:altLabel "TOF"@en ; - skos:broader ; - skos:definition "The number of converted substrate molecules per active catalytic site per time which is equal to the turnover number per time."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "turnover frequency"@en ; -. diff --git a/vocabularies/voc4cat/0007828.ttl b/vocabularies/voc4cat/0007828.ttl deleted file mode 100644 index d81b69e1..00000000 --- a/vocabularies/voc4cat/0007828.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007828"^^xsd:token ; - skos:broader ; - skos:definition "A compound that is used to generate a calibration curve which can then be used to determine the concentration of a compound in a reaction mixture."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "external standard"@en ; -. diff --git a/vocabularies/voc4cat/0007829.ttl b/vocabularies/voc4cat/0007829.ttl deleted file mode 100644 index 71d0d227..00000000 --- a/vocabularies/voc4cat/0007829.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007829"^^xsd:token ; - skos:broader ; - skos:definition "A compound that is added in a known concentration to a product mixture to determine the concentration of another compound."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "internal standard"@en ; -. diff --git a/vocabularies/voc4cat/0007838.ttl b/vocabularies/voc4cat/0007838.ttl deleted file mode 100644 index 5482b36e..00000000 --- a/vocabularies/voc4cat/0007838.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007838"^^xsd:token ; - skos:broader ; - skos:definition "The sum of all products after a catalytic reaction which is analysed to measure the catalytic performance."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "product mixture"@en ; -. diff --git a/vocabularies/voc4cat/0007839.ttl b/vocabularies/voc4cat/0007839.ttl deleted file mode 100644 index 414ed14b..00000000 --- a/vocabularies/voc4cat/0007839.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007839"^^xsd:token ; - skos:broader ; - skos:definition "Description if a substance is brought into a homogeneous solution in the presence of a liquid solvent or if it remains (partly) undissolved."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "solubility"@en ; -. diff --git a/vocabularies/voc4cat/0007840.ttl b/vocabularies/voc4cat/0007840.ttl deleted file mode 100644 index 21f501d9..00000000 --- a/vocabularies/voc4cat/0007840.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007840"^^xsd:token ; - skos:broader ; - skos:definition "A step within the synthesis of a catalyst whereby a precursor is dissolved or dispersed in a solution."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "solvation"@en ; -. diff --git a/vocabularies/voc4cat/0007844.ttl b/vocabularies/voc4cat/0007844.ttl deleted file mode 100644 index 03c01895..00000000 --- a/vocabularies/voc4cat/0007844.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0007844"^^xsd:token ; - skos:broader ; - skos:definition "Ratio of the amount of one substance compared to the amount of another substance."@en ; - skos:historyNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; - skos:inScheme ; - skos:prefLabel "molar equivalent"@en ; -. diff --git a/vocabularies/voc4cat/0008081.ttl b/vocabularies/voc4cat/0008081.ttl deleted file mode 100644 index 507ed647..00000000 --- a/vocabularies/voc4cat/0008081.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008081"^^xsd:token ; - skos:broader ; - skos:definition "Mode of XAS measurement where absorption is determined from transmitted X-rays."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "XAS Transmission"@en ; -. diff --git a/vocabularies/voc4cat/0008082.ttl b/vocabularies/voc4cat/0008082.ttl deleted file mode 100644 index efc8a2db..00000000 --- a/vocabularies/voc4cat/0008082.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008082"^^xsd:token ; - skos:broader ; - skos:definition "Mode of XAS measurement where absorption is probed via fluorescence yield."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "XAS Fluorescence"@en ; -. diff --git a/vocabularies/voc4cat/0008083.ttl b/vocabularies/voc4cat/0008083.ttl deleted file mode 100644 index 847ff564..00000000 --- a/vocabularies/voc4cat/0008083.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008083"^^xsd:token ; - skos:altLabel - "SDD"@en , - "silicon-drift detector"@en ; - skos:broader ; - skos:definition "Semiconductor-based X-ray detector type commonly used for fluorescence measurements, providing high energy resolution and fast count rates."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "silicon drift detector"@en ; -. diff --git a/vocabularies/voc4cat/0008084.ttl b/vocabularies/voc4cat/0008084.ttl deleted file mode 100644 index 53dbc6fa..00000000 --- a/vocabularies/voc4cat/0008084.ttl +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008084"^^xsd:token ; - skos:altLabel - "dead time"@en , - "dead-time"@en ; - skos:broader - , - ; - skos:definition "Time interval after each detection event during which the detector is unable to record another event."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "detector dead time"@en ; -. diff --git a/vocabularies/voc4cat/0008085.ttl b/vocabularies/voc4cat/0008085.ttl deleted file mode 100644 index 50a2ec9d..00000000 --- a/vocabularies/voc4cat/0008085.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008085"^^xsd:token ; - skos:altLabel "dead-time correction"@en ; - skos:broader ; - skos:definition "Mathematical correction applied to compensate for detector dead time effects in measured count rates."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "dead time correction"@en ; -. diff --git a/vocabularies/voc4cat/0008086.ttl b/vocabularies/voc4cat/0008086.ttl deleted file mode 100644 index fdf70369..00000000 --- a/vocabularies/voc4cat/0008086.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008086"^^xsd:token ; - skos:broader ; - skos:definition "The ratio of emitted fluorescence photons to absorbed photons."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "fluorescence yield"@en ; -. diff --git a/vocabularies/voc4cat/0008087.ttl b/vocabularies/voc4cat/0008087.ttl deleted file mode 100644 index 1d0e88db..00000000 --- a/vocabularies/voc4cat/0008087.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008087"^^xsd:token ; - skos:broader ; - skos:definition "Dimensionless quantity that expresses how much of the incident radiation is absorbed by a material. It is defined as the negative logarithm of the ratio of transmitted intensity to the incident intensity. Absorbance depends on the absorption properties of the material, the path length, and the concentration of absorbing species."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:narrower - , - ; - skos:prefLabel "absorbance"@en ; -. diff --git a/vocabularies/voc4cat/0008088.ttl b/vocabularies/voc4cat/0008088.ttl deleted file mode 100644 index 6691a772..00000000 --- a/vocabularies/voc4cat/0008088.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008088"^^xsd:token ; - skos:broader - , - ; - skos:definition "Absorbance measured on a reference material under the same experimental conditions as the sample. Typically used for calibration, normalization, or comparison."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "absorbance of the reference"@en ; -. diff --git a/vocabularies/voc4cat/0008089.ttl b/vocabularies/voc4cat/0008089.ttl deleted file mode 100644 index ce2966d0..00000000 --- a/vocabularies/voc4cat/0008089.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008089"^^xsd:token ; - skos:broader - , - ; - skos:definition "Absorbance measured on the investigated sample, quantifying how much of the incident radiation is absorbed relative to the incident beam."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "absorbance of the sample"@en ; -. diff --git a/vocabularies/voc4cat/0008090.ttl b/vocabularies/voc4cat/0008090.ttl deleted file mode 100644 index acda4b21..00000000 --- a/vocabularies/voc4cat/0008090.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008090"^^xsd:token ; - skos:broader ; - skos:definition "User-applied offset to shift a measured energy scale, where positive values are added and negative values are subtracted, in order to align the data with a known reference (true energy value = measured energy value + offset)."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "manual energy shift"@en ; -. diff --git a/vocabularies/voc4cat/0008091.ttl b/vocabularies/voc4cat/0008091.ttl deleted file mode 100644 index 2075379a..00000000 --- a/vocabularies/voc4cat/0008091.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008091"^^xsd:token ; - skos:altLabel - "fluo"@en , - "fluorescence"@en ; - skos:broader ; - skos:definition "Measured detector signal resulting from fluorescence photons emitted by the sample upon X-ray excitation."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "fluorescence signal"@en ; -. diff --git a/vocabularies/voc4cat/0008092.ttl b/vocabularies/voc4cat/0008092.ttl deleted file mode 100644 index 1fe290e1..00000000 --- a/vocabularies/voc4cat/0008092.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008092"^^xsd:token ; - skos:altLabel "ICR"@en ; - skos:broader ; - skos:definition "Number of events per unit time arriving at the detector before dead time losses are considered."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "incoming count rate"@en ; -. diff --git a/vocabularies/voc4cat/0008093.ttl b/vocabularies/voc4cat/0008093.ttl deleted file mode 100644 index c8c28503..00000000 --- a/vocabularies/voc4cat/0008093.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008093"^^xsd:token ; - skos:altLabel - "OCR"@en , - "output count rate"@en ; - skos:broader ; - skos:definition "Number of events per unit time successfully processed and recorded by the detector after dead time losses."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "outgoing count rate"@en ; -. diff --git a/vocabularies/voc4cat/0008094.ttl b/vocabularies/voc4cat/0008094.ttl deleted file mode 100644 index 78a87600..00000000 --- a/vocabularies/voc4cat/0008094.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008094"^^xsd:token ; - skos:altLabel "TLT"@en ; - skos:broader ; - skos:definition "Time period during which a detector is ready to trigger on incoming events."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "trigger live time"@en ; -. diff --git a/vocabularies/voc4cat/0008095.ttl b/vocabularies/voc4cat/0008095.ttl deleted file mode 100644 index 71c32ab2..00000000 --- a/vocabularies/voc4cat/0008095.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008095"^^xsd:token ; - skos:altLabel - "LT"@en , - "live time"@en ; - skos:broader ; - skos:definition "Time period during which a detector is actively recording or processing events, excluding periods of dead time."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "effective measurement time"@en ; -. diff --git a/vocabularies/voc4cat/0008096.ttl b/vocabularies/voc4cat/0008096.ttl deleted file mode 100644 index b657253a..00000000 --- a/vocabularies/voc4cat/0008096.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008096"^^xsd:token ; - skos:altLabel - "RT"@en , - "real time"@en ; - skos:broader ; - skos:definition "The total duration over which a measurement is conducted, including both the periods when the detector or measurement system is actively recording events and the periods when it is inactive due to dead time or processing delays."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "total measurement time"@en ; -. diff --git a/vocabularies/voc4cat/0008097.ttl b/vocabularies/voc4cat/0008097.ttl deleted file mode 100644 index d6fcb69f..00000000 --- a/vocabularies/voc4cat/0008097.ttl +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008097"^^xsd:token ; - skos:altLabel - "energy"@en , - "photon energy"@en ; - skos:broader ; - skos:definition "Energy of X-ray photons, representing the incident radiation in a measurement."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:prefLabel "X-ray photon energy"@en ; -. diff --git a/vocabularies/voc4cat/0008098.ttl b/vocabularies/voc4cat/0008098.ttl deleted file mode 100644 index 2459d450..00000000 --- a/vocabularies/voc4cat/0008098.ttl +++ /dev/null @@ -1,35 +0,0 @@ -PREFIX dcterms: -PREFIX rdfs: -PREFIX skos: -PREFIX xsd: - - - a skos:Collection ; - dcterms:identifier "voc4cat_0008098"^^xsd:token ; - dcterms:isPartOf ; - rdfs:isDefinedBy ; - skos:definition "A collection of concepts related to X-ray Absorption Spectroscopy (XAS)."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the collection"@en ; - skos:inScheme ; - skos:member - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ; - skos:prefLabel "XAS collection"@en ; -. diff --git a/vocabularies/voc4cat/0008099.ttl b/vocabularies/voc4cat/0008099.ttl deleted file mode 100644 index 67d91e53..00000000 --- a/vocabularies/voc4cat/0008099.ttl +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008099"^^xsd:token ; - skos:altLabel "dead-time"@en ; - skos:broader ; - skos:definition "Time interval after an event during which a system or process is unable to respond to or record a subsequent event."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:narrower ; - skos:prefLabel "dead time"@en ; -. diff --git a/vocabularies/voc4cat/0008100.ttl b/vocabularies/voc4cat/0008100.ttl deleted file mode 100644 index 7289a105..00000000 --- a/vocabularies/voc4cat/0008100.ttl +++ /dev/null @@ -1,20 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008100"^^xsd:token ; - skos:broader ; - skos:definition "Measurable quantity that characterizes the performance or operational behavior of a detector during active operation."@en ; - skos:historyNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; - skos:inScheme ; - skos:narrower - , - , - , - , - , - ; - skos:prefLabel "detector performance measure"@en ; -. diff --git a/vocabularies/voc4cat/0008101.ttl b/vocabularies/voc4cat/0008101.ttl deleted file mode 100644 index 695ec7d3..00000000 --- a/vocabularies/voc4cat/0008101.ttl +++ /dev/null @@ -1,14 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008101"^^xsd:token ; - skos:altLabel "Metal leaching"@en ; - skos:broader ; - skos:definition "The loss of catalytically active species from a solid catalyst into the surrounding reaction medium."@en ; - skos:historyNote "0000-0001-5161-4801 Arjun Neyyathala created this resource"@en ; - skos:inScheme ; - skos:prefLabel "Catalyst leaching"@en ; -. diff --git a/vocabularies/voc4cat/0008102.ttl b/vocabularies/voc4cat/0008102.ttl deleted file mode 100644 index a1f0888c..00000000 --- a/vocabularies/voc4cat/0008102.ttl +++ /dev/null @@ -1,13 +0,0 @@ -PREFIX dcterms: -PREFIX skos: -PREFIX xsd: - - - a skos:Concept ; - dcterms:identifier "voc4cat_0008102"^^xsd:token ; - skos:broader ; - skos:definition "The progressive loss of catalytic activity and/or selectivity over time. Typically caused by factors such as chemical poisoning, fouling, thermal degradation, chemical degradation, or mechanical failure."@en ; - skos:historyNote "0000-0001-5161-4801 Arjun Neyyathala created this resource"@en ; - skos:inScheme ; - skos:prefLabel "Catalyst deactivation"@en ; -. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000001.ttl b/vocabularies/voc4cat/IDs0000xxx/0000001.ttl new file mode 100644 index 00000000..d114c4e2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000001.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000001 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000001"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A process which catalyzes a chemical reaction through the absorption of sufficient light energy by a photocatalyst."@en ; + skos:inScheme ; + skos:prefLabel "photocatalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000002.ttl b/vocabularies/voc4cat/IDs0000xxx/0000002.ttl new file mode 100644 index 00000000..2b211d49 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000002.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000002 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000002"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "photocatalytic material"@en ; + skos:broader voc4cat:0000194 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A material that absorbs photons (light) of appropriate energy and initiates or accelerates a photochemical reaction, while it regenerates itself after each reaction cycle."@en ; + skos:inScheme ; + skos:prefLabel "photocatalyst"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000003.ttl b/vocabularies/voc4cat/IDs0000xxx/0000003.ttl new file mode 100644 index 00000000..373ae132 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000003.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000003 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000003"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A material with electrical conductivity between that of a conductor and an insulator."@en ; + skos:inScheme ; + skos:prefLabel "semiconductor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000004.ttl b/vocabularies/voc4cat/IDs0000xxx/0000004.ttl new file mode 100644 index 00000000..4346a35a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000004.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000004 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000004"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Broad families of semiconducting materials (e.g., metal oxides) that can be used as catalysts in various applications."@en ; + skos:inScheme ; + skos:prefLabel "categories of semiconductors"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000005.ttl b/vocabularies/voc4cat/IDs0000xxx/0000005.ttl new file mode 100644 index 00000000..9efe550a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000005.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000005 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000005"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical compound formed by the reaction of a metal with oxygen."@en ; + skos:inScheme ; + skos:prefLabel "metal oxide"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000006.ttl b/vocabularies/voc4cat/IDs0000xxx/0000006.ttl new file mode 100644 index 00000000..1ab63201 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000006.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000006 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000006"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Characteristic properties of a semiconductor used in catalysis. These properties determine its performance in the studied catalytic application."@en ; + skos:inScheme ; + skos:prefLabel "semiconductor property"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000007.ttl b/vocabularies/voc4cat/IDs0000xxx/0000007.ttl new file mode 100644 index 00000000..e6b1dc5b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000007.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000007 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000007"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "EF"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The energy level in a semiconductor where the probability of finding an electron is 0.5."@en ; + skos:inScheme ; + skos:prefLabel "Fermi level"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000008.ttl b/vocabularies/voc4cat/IDs0000xxx/0000008.ttl new file mode 100644 index 00000000..4a8e6b84 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000008.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000008 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000008"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The degree of a three-dimensional structural order of atoms which constitute the crystal lattice of a material."@en ; + skos:inScheme ; + skos:prefLabel "crystallinity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000009.ttl b/vocabularies/voc4cat/IDs0000xxx/0000009.ttl new file mode 100644 index 00000000..a3aa8cfc --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000009.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000009 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000009"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The range of pore sizes in a material."@en ; + skos:inScheme ; + skos:prefLabel "pore size distribution"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000010.ttl b/vocabularies/voc4cat/IDs0000xxx/0000010.ttl new file mode 100644 index 00000000..91ad1d4f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000010.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000010 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000010"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "Eg"@en , + "energy bandgap"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The energy difference between a semiconductor’s valence band top and conduction band bottom, which is required to excite an electron from the former to the latter."@en ; + skos:inScheme ; + skos:prefLabel "bandgap energy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000011.ttl b/vocabularies/voc4cat/IDs0000xxx/0000011.ttl new file mode 100644 index 00000000..95470a82 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000011.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000011 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000011"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "VB"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The band of energy levels in a solid fully occupied by electrons at 0 K (273.15 °C)."@en ; + skos:inScheme ; + skos:prefLabel "valence band"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000012.ttl b/vocabularies/voc4cat/IDs0000xxx/0000012.ttl new file mode 100644 index 00000000..bfd8bd50 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000012.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000012 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000012"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "CB"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The energy band of electronic levels of partially or fully filled mobile electrons in a metal or a semiconductor."@en ; + skos:inScheme ; + skos:prefLabel "conduction band"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000013.ttl b/vocabularies/voc4cat/IDs0000xxx/0000013.ttl new file mode 100644 index 00000000..13a24efe --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000013.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000013 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000013"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "SSA"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Α measure of the total surface area of a material per unit mass or volume."@en ; + skos:inScheme ; + skos:prefLabel "specific surface area"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000014.ttl b/vocabularies/voc4cat/IDs0000xxx/0000014.ttl new file mode 100644 index 00000000..92350532 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000014.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000014 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000014"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Techniques used to modify the properties of a catalyst, with the aim to increase its efficiency in a catalytic application."@en ; + skos:inScheme ; + skos:narrower voc4cat:0000015 ; + skos:prefLabel "modification technique"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000015.ttl b/vocabularies/voc4cat/IDs0000xxx/0000015.ttl new file mode 100644 index 00000000..83fdab44 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000015.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000015 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000015"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000014 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The introduction of foreign atoms into a semiconductor leading to the formation of new energy levels and charge concentrations."@en ; + skos:inScheme ; + skos:prefLabel "doping"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000016.ttl b/vocabularies/voc4cat/IDs0000xxx/0000016.ttl new file mode 100644 index 00000000..59703e47 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000016.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000016 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000016"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-4041-0165 Julia Schumann generalized the definition"@en ; + skos:definition "The form in which the catalyst is introduced to the reaction chamber. This can include e.g., powders, pellets or thin films deposited on a substrate."@en ; + skos:inScheme ; + skos:prefLabel "catalyst form"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000017.ttl b/vocabularies/voc4cat/IDs0000xxx/0000017.ttl new file mode 100644 index 00000000..b079e31e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000017.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000017 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000017"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000194 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A catalyst introduced to the reaction chamber in the form of a powder."@en ; + skos:inScheme ; + skos:prefLabel "powdered catalyst"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000018.ttl b/vocabularies/voc4cat/IDs0000xxx/0000018.ttl new file mode 100644 index 00000000..d27f2863 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000018.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000018 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000018"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Mass of a powdered catalyst used for an experiment."@en ; + skos:inScheme ; + skos:prefLabel "powder mass"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000019.ttl b/vocabularies/voc4cat/IDs0000xxx/0000019.ttl new file mode 100644 index 00000000..6d0dfd29 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000019.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000019 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000019"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000194 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-4041-0165 Julia Schumann generalized the definition"@en ; + skos:definition "A catalyst introduced to the reaction chamber in the form of a thin film. To form a thin film, a (powdered) catalyst is deposited on a substrate (e.g., glass or metal) using an appropriate deposition technique."@en ; + skos:inScheme ; + skos:prefLabel "thin film"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000020.ttl b/vocabularies/voc4cat/IDs0000xxx/0000020.ttl new file mode 100644 index 00000000..4e74ef19 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000020.ttl @@ -0,0 +1,26 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000020 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000020"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "immobilization"@en , + "immobilization technique"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A technique used to deposit (immobilize) a (powdered) catalyst on a substate. These techniques include (but are not limited to): doctor blading, spin coating, spray coating, etc.."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000021 , + voc4cat:0000022 , + voc4cat:0000023 ; + skos:prefLabel "deposition technique"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000021.ttl b/vocabularies/voc4cat/IDs0000xxx/0000021.ttl new file mode 100644 index 00000000..84ab376a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000021.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000021 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000021"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "spray-coating"@en ; + skos:broader voc4cat:0000020 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A technique used to deposit uniform thin films onto a substrate by spraying a solution of the material onto the surface."@en ; + skos:inScheme ; + skos:prefLabel "spray coating"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000022.ttl b/vocabularies/voc4cat/IDs0000xxx/0000022.ttl new file mode 100644 index 00000000..2866d3f6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000022.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000022 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000022"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000020 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A tape-casting method used to deposit thin films of a catalyst onto the surface of a substrate."@en ; + skos:inScheme ; + skos:prefLabel "doctor blading"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000023.ttl b/vocabularies/voc4cat/IDs0000xxx/0000023.ttl new file mode 100644 index 00000000..2b1716fe --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000023.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000023 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000023"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "spin casting"@en , + "spin-casting"@en , + "spin-coating"@en ; + skos:broader voc4cat:0000020 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A technique used to deposit uniform thin films onto a substrate (e.g., metal or glass) by spinning at high speeds a solution (paste) of the material onto the surface."@en ; + skos:inScheme ; + skos:prefLabel "spin coating"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000024.ttl b/vocabularies/voc4cat/IDs0000xxx/0000024.ttl new file mode 100644 index 00000000..251d188f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000024.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000024 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000024"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The substate onto which a (powdered) catalyst is deposited. Such substrates include glass surfaces (e.g., borosilicate glass or conductive glass like ITO and FTO), ceramic substrates (e.g., alumina) or metal substrates (e.g., Ti foils, stainless steel etc.)."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000026 , + voc4cat:0000027 , + voc4cat:0000032 ; + skos:prefLabel "substrate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000025.ttl b/vocabularies/voc4cat/IDs0000xxx/0000025.ttl new file mode 100644 index 00000000..da30dc78 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000025.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000025 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000025"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The material that the substrate is made of. Common materials include: glass (conductive or not), ceramics and metal."@en ; + skos:inScheme ; + skos:prefLabel "substrate material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000026.ttl b/vocabularies/voc4cat/IDs0000xxx/0000026.ttl new file mode 100644 index 00000000..8eeee3a7 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000026.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000026 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000026"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000024 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A flat surface made of a metal (e.g., titanium, stainless steel) serving as a substrate for the deposition of a catalyst."@en ; + skos:inScheme ; + skos:prefLabel "metallic substrate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000027.ttl b/vocabularies/voc4cat/IDs0000xxx/0000027.ttl new file mode 100644 index 00000000..2e495f48 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000027.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000027 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000027"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000024 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A flat surface made of glass serving as a substrate for the deposition of a catalyst."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000028 , + voc4cat:0000029 , + voc4cat:0000030 , + voc4cat:0000031 ; + skos:prefLabel "glass substrate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000028.ttl b/vocabularies/voc4cat/IDs0000xxx/0000028.ttl new file mode 100644 index 00000000..b5fdf4b2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000028.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000028 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000028"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "FTO"@en , + "FTO glass"@en ; + skos:broader voc4cat:0000027 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Transparent conductive metal oxide (fluorine doped tin oxide) that can be used in the fabrication of transparent electrodes for thin films."@en ; + skos:inScheme ; + skos:prefLabel "fluorine doped tin oxide coated glass"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000029.ttl b/vocabularies/voc4cat/IDs0000xxx/0000029.ttl new file mode 100644 index 00000000..22735c96 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000029.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000029 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000029"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "ITO"@en , + "ITO glass"@en ; + skos:broader voc4cat:0000027 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Transparent conductive metal oxide (indium tin oxide) that can be used in the fabrication of transparent electrodes for thin films."@en ; + skos:inScheme ; + skos:prefLabel "indium tin oxide coated glass"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000030.ttl b/vocabularies/voc4cat/IDs0000xxx/0000030.ttl new file mode 100644 index 00000000..af34b34c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000030.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000030 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000030"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000027 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A resistant to thermal shock type of glass, composed mainly of silica and boron trioxide."@en ; + skos:inScheme ; + skos:prefLabel "borosilicate glass"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000031.ttl b/vocabularies/voc4cat/IDs0000xxx/0000031.ttl new file mode 100644 index 00000000..4f287c44 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000031.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000031 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000031"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "quartz"@en ; + skos:broader voc4cat:0000027 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A type of pure silicon dioxide, highly crystalline glass that allows the transmission of light in the UV wavelength range."@en ; + skos:inScheme ; + skos:prefLabel "quartz glass"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000032.ttl b/vocabularies/voc4cat/IDs0000xxx/0000032.ttl new file mode 100644 index 00000000..cf66c232 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000032.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000032 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000032"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000024 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A surface made of a ceramic material (e.g., alumina) serving as a substrate for the deposition of a catalyst."@en ; + skos:inScheme ; + skos:prefLabel "ceramic substrate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000033.ttl b/vocabularies/voc4cat/IDs0000xxx/0000033.ttl new file mode 100644 index 00000000..6664f79f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000033.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000033 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000033"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The diamensions of the substrate."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000034 , + voc4cat:0000035 , + voc4cat:0000036 , + voc4cat:0000037 ; + skos:prefLabel "substrate dimension"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000034.ttl b/vocabularies/voc4cat/IDs0000xxx/0000034.ttl new file mode 100644 index 00000000..9381bf51 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000034.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000034 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000034"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000033 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The width of the substrate."@en ; + skos:inScheme ; + skos:prefLabel "substrate width"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000035.ttl b/vocabularies/voc4cat/IDs0000xxx/0000035.ttl new file mode 100644 index 00000000..282e652d --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000035.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000035 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000035"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000033 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The depth of the substrate."@en ; + skos:inScheme ; + skos:prefLabel "substrate depth"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000036.ttl b/vocabularies/voc4cat/IDs0000xxx/0000036.ttl new file mode 100644 index 00000000..06f0963d --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000036.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000036 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000036"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000033 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The thickness of the substrate."@en ; + skos:inScheme ; + skos:prefLabel "substrate thickness"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000037.ttl b/vocabularies/voc4cat/IDs0000xxx/0000037.ttl new file mode 100644 index 00000000..734d81e4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000037.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000037 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000037"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "substrate surface area"@en ; + skos:broader + voc4cat:0000033 , + voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The surface area of the substrate."@en ; + skos:inScheme ; + skos:prefLabel "substrate area"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000038.ttl b/vocabularies/voc4cat/IDs0000xxx/0000038.ttl new file mode 100644 index 00000000..ec96ee01 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000038.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000038 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000038"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000194 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A thin film of the catalyst deposited on an appropriate for the application substrate."@en ; + skos:inScheme ; + skos:prefLabel "deposited sample"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000039.ttl b/vocabularies/voc4cat/IDs0000xxx/0000039.ttl new file mode 100644 index 00000000..ac637169 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000039.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000039 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000039"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Mass of catalyst deposited onto the surface of a substrate."@en ; + skos:inScheme ; + skos:prefLabel "thin film mass"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000040.ttl b/vocabularies/voc4cat/IDs0000xxx/0000040.ttl new file mode 100644 index 00000000..2730fafb --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000040.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000040 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000040"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The diamensions of the - deposited on the substrate - thin film."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000041 , + voc4cat:0000042 , + voc4cat:0000043 , + voc4cat:0000044 ; + skos:prefLabel "thin film dimension"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000041.ttl b/vocabularies/voc4cat/IDs0000xxx/0000041.ttl new file mode 100644 index 00000000..07e274f4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000041.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000041 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000041"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000040 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The width of the film of the deposited catalyst."@en ; + skos:inScheme ; + skos:prefLabel "thin film width"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000042.ttl b/vocabularies/voc4cat/IDs0000xxx/0000042.ttl new file mode 100644 index 00000000..05562fc4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000042.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000042 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000042"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000040 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The thickness of the film of the deposited catalyst."@en ; + skos:inScheme ; + skos:prefLabel "thin film thickness"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000043.ttl b/vocabularies/voc4cat/IDs0000xxx/0000043.ttl new file mode 100644 index 00000000..6b4ce722 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000043.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000043 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000043"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000040 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The depth of the film of the deposited catalyst."@en ; + skos:inScheme ; + skos:prefLabel "thin film depth"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000044.ttl b/vocabularies/voc4cat/IDs0000xxx/0000044.ttl new file mode 100644 index 00000000..5f96160b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000044.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000044 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000044"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000040 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The area of the substrate covered by the deposited catalyst."@en ; + skos:inScheme ; + skos:prefLabel "thin film area"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000045.ttl b/vocabularies/voc4cat/IDs0000xxx/0000045.ttl new file mode 100644 index 00000000..f5721b59 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000045.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000045 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000045"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The process by which one or more chemical reactions are performed with the aim of converting a reactant or starting material into a product or multiple products."@en ; + skos:inScheme ; + skos:prefLabel "synthesis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000046.ttl b/vocabularies/voc4cat/IDs0000xxx/0000046.ttl new file mode 100644 index 00000000..9996a19a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000046.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000046 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000046"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Thorough search of available literature on the research topic of interest using online research platforms (e.g, Scopus, Google Scholar, Web of Science, Research Gate etc.) and / or libraries. Relevant literature can be found in the form of publications, books, abstracts and conference presentations."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000047 , + voc4cat:0000048 ; + skos:prefLabel "literature research"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000047.ttl b/vocabularies/voc4cat/IDs0000xxx/0000047.ttl new file mode 100644 index 00000000..d5172016 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000047.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000047 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000047"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000046 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Assembly of literature research to include only the most relevant sources of information for the application / experiment / catalysts of interest."@en ; + skos:inScheme ; + skos:prefLabel "literature collection"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000048.ttl b/vocabularies/voc4cat/IDs0000xxx/0000048.ttl new file mode 100644 index 00000000..703f446d --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000048.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000048 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000048"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000046 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Addition and organization of relevant literature of interest using a citation management software (e.g., Mendeley, Zotero, EndNote etc.) allowing for easy access and categorization."@en ; + skos:inScheme ; + skos:prefLabel "literature organization"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000049.ttl b/vocabularies/voc4cat/IDs0000xxx/0000049.ttl new file mode 100644 index 00000000..e9f5255c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000049.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000049 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000049"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "synthesis design"@en , + "synthetic method"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Necessary steps needed to follow to reach the desired catalyst."@en ; + skos:inScheme ; + skos:narrower voc4cat:0007840 ; + skos:prefLabel "synthesis procedure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000050.ttl b/vocabularies/voc4cat/IDs0000xxx/0000050.ttl new file mode 100644 index 00000000..1e871258 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000050.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000050 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000050"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Duration of each synthesis step needed to synthesize the desired catalyst."@en ; + skos:inScheme ; + skos:prefLabel "synthesis duration"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000051.ttl b/vocabularies/voc4cat/IDs0000xxx/0000051.ttl new file mode 100644 index 00000000..b4ca85f2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000051.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000051 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000051"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Temperature externally applied (if necessary) in any of the synthesis step. Higher temperature values can be observed if an exothermic reaction takes place during the synthesis."@en ; + skos:inScheme ; + skos:prefLabel "synthesis temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000052.ttl b/vocabularies/voc4cat/IDs0000xxx/0000052.ttl new file mode 100644 index 00000000..d8028cd0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000052.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000052 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000052"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The pH value in each of the synthesis steps."@en ; + skos:inScheme ; + skos:prefLabel "synthesis pH"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000053.ttl b/vocabularies/voc4cat/IDs0000xxx/0000053.ttl new file mode 100644 index 00000000..c685b2c4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000053.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000053 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000053"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Pressure applied (if necessary) in any of the synthesis step. Changes in the pressure may be observed if variations in the temperature of the reaction occur (e.g., exothermic reaction)."@en ; + skos:inScheme ; + skos:prefLabel "synthesis pressure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000054.ttl b/vocabularies/voc4cat/IDs0000xxx/0000054.ttl new file mode 100644 index 00000000..58831e2a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000054.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000054 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000054"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "calcination"@en , + "heat treatment"@en , + "heat-treatment"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Heat treatment to reach the desired final catalyst. The parameters of the heat treatment can vary between each calcination step."@en ; + skos:inScheme ; + skos:prefLabel "calcination step"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000055.ttl b/vocabularies/voc4cat/IDs0000xxx/0000055.ttl new file mode 100644 index 00000000..5c7ed461 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000055.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000055 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000055"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "gaseous environment in calcination"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A gas flow under which the calcination step takes place (e,g,, Ar or synthetic air)."@en ; + skos:inScheme ; + skos:prefLabel "calcination gaseous environment"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000056.ttl b/vocabularies/voc4cat/IDs0000xxx/0000056.ttl new file mode 100644 index 00000000..f94e012c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000056.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000056 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000056"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "gas flow rate in calcination"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The flow of gas (usually in ml min-1) used in the calcination steps during synthesis."@en ; + skos:inScheme ; + skos:prefLabel "calcincation gas flow rate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000057.ttl b/vocabularies/voc4cat/IDs0000xxx/0000057.ttl new file mode 100644 index 00000000..f0d89da8 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000057.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000057 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000057"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Initial temperature of the calcination step."@en ; + skos:inScheme ; + skos:prefLabel "calcination initial temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000058.ttl b/vocabularies/voc4cat/IDs0000xxx/0000058.ttl new file mode 100644 index 00000000..a5e9b0de --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000058.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000058 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000058"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Final temperature of the calcination step."@en ; + skos:inScheme ; + skos:prefLabel "calcination final temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000059.ttl b/vocabularies/voc4cat/IDs0000xxx/0000059.ttl new file mode 100644 index 00000000..29e6ef38 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000059.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000059 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000059"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Rate of increasing or decreasing the temperature during the calcination step. Usually mentioned in K min-1."@en ; + skos:inScheme ; + skos:prefLabel "calcination heating rate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000060.ttl b/vocabularies/voc4cat/IDs0000xxx/0000060.ttl new file mode 100644 index 00000000..eed13727 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000060.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000060 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000060"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Time (usually in h) for which a desired temperature is held."@en ; + skos:inScheme ; + skos:prefLabel "calcination dwelling time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000061.ttl b/vocabularies/voc4cat/IDs0000xxx/0000061.ttl new file mode 100644 index 00000000..5b27555f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000061.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000061 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000061"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Equipment used in each step of the synthesis of the catalysts. The equipment can include (but not limited to): crucibles, pH meters, condensers, volumetric cylinders, centrifuges, test tubes, flasks, beakers, mechanical shakers, pipettes, syringes, magnetic stirrers, heating plates, filters, funnels, and digital balances."@en ; + skos:inScheme ; + skos:prefLabel "synthesis equipment"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000062.ttl b/vocabularies/voc4cat/IDs0000xxx/0000062.ttl new file mode 100644 index 00000000..81b41eea --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000062.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000062 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000062"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Chemical substances used in the synthesis process of a desired catalyst."@en ; + skos:inScheme ; + skos:prefLabel "chemical substance for synthesis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000063.ttl b/vocabularies/voc4cat/IDs0000xxx/0000063.ttl new file mode 100644 index 00000000..8469ca6b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000063.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000063 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000063"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Mass of chemicals used for synthesis."@en ; + skos:inScheme ; + skos:prefLabel "mass of chemical substance for synthesis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000064.ttl b/vocabularies/voc4cat/IDs0000xxx/0000064.ttl new file mode 100644 index 00000000..82e5d7d0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000064.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000064 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000064"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Volume of chemicals used for synthesis."@en ; + skos:inScheme ; + skos:prefLabel "volume of chemical substance for synthesis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000065.ttl b/vocabularies/voc4cat/IDs0000xxx/0000065.ttl new file mode 100644 index 00000000..695bb066 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000065.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000065 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000065"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Concentration of chemicals used for synthesis."@en ; + skos:inScheme ; + skos:prefLabel "concentration of chemical substance for synthesis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000066.ttl b/vocabularies/voc4cat/IDs0000xxx/0000066.ttl new file mode 100644 index 00000000..16dfc4c6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000066.ttl @@ -0,0 +1,41 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000066 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000066"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "characterization"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Techniques used to identify the (physico)chemical, morphological, structural, mechanical, optical and electrical properties of the syntesized catalysts. Characterization is performed after the synthesis of the catalysts to evaluate the success of the synthetic approach, but also after the completion of the evaluation of the materials in a reaction to ensure their stability under the selected experimental parameters."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000067 , + voc4cat:0000068 , + voc4cat:0000069 , + voc4cat:0000070 , + voc4cat:0000071 , + voc4cat:0000072 , + voc4cat:0000073 , + voc4cat:0000074 , + voc4cat:0000075 , + voc4cat:0000076 , + voc4cat:0000077 , + voc4cat:0000078 , + voc4cat:0000079 , + voc4cat:0000080 , + voc4cat:0000081 , + voc4cat:0000083 , + voc4cat:0000286 , + voc4cat:0000288 , + voc4cat:0007807 , + voc4cat:0007808 ; + skos:prefLabel "characterization technique"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000067.ttl b/vocabularies/voc4cat/IDs0000xxx/0000067.ttl new file mode 100644 index 00000000..6258892d --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000067.ttl @@ -0,0 +1,29 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000067 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000067"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "X-ray emission spectrometry"@en , + "X-ray fluorescence spectrometry"@en , + "X-ray fluorescence spectroscopy"@en , + "XES"@en , + "XRES"@en , + "XRF"@en , + "XRF spectrometry"@en , + "XRF spectroscopy"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A non-destructive analytical technique which uses a high-energy X-ray source to expose a material and monitors the emitted characteristic fluorescent X-Rays."@en ; + skos:exactMatch ; + skos:inScheme ; + skos:prefLabel "X-ray fluorescence"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000068.ttl b/vocabularies/voc4cat/IDs0000xxx/0000068.ttl new file mode 100644 index 00000000..668c74e2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000068.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000068 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000068"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "EELS"@en ; + skos:broadMatch ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "An analytical technique used to measure the energy loss of electrons passing through a sample."@en ; + skos:inScheme ; + skos:prefLabel "electron energy loss spectroscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000069.ttl b/vocabularies/voc4cat/IDs0000xxx/0000069.ttl new file mode 100644 index 00000000..49ae3bff --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000069.ttl @@ -0,0 +1,26 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000069 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000069"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "RAMAN"@en , + "Raman"@en , + "Raman scattering spectrometry"@en , + "Raman spectrometry"@en , + "raman scattering spectroscopy"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A spectroscopy technique studying the vibrational modes of molecules, by measuring the intensity and frequency of scattered by the sample of monochromatic light."@en ; + skos:exactMatch ; + skos:inScheme ; + skos:prefLabel "Raman spectroscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000070.ttl b/vocabularies/voc4cat/IDs0000xxx/0000070.ttl new file mode 100644 index 00000000..83e24052 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000070.ttl @@ -0,0 +1,26 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000070 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000070"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "AFM"@en , + "SFM"@en , + "atomic force imaging"@en , + "atomic-force microscopy"@en , + "scanning force microscopy"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A high-resolution imaging technique that measures the interaction between a sharp probe and the sample’s surface to create a three-dimensional image of the surface’s morphology."@en ; + skos:exactMatch ; + skos:inScheme ; + skos:prefLabel "atomic force microscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000071.ttl b/vocabularies/voc4cat/IDs0000xxx/0000071.ttl new file mode 100644 index 00000000..e767d107 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000071.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000071 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000071"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "DSC"@en , + "differential scanning calorimetric (DSC) analysis"@en , + "differential scanning calorimetric analysis"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A thermal analysis technique which compares the heat flow in a sample and a reference material under controlled applied temperature profiles."@en ; + skos:inScheme ; + skos:prefLabel "differential scanning calorimetry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000072.ttl b/vocabularies/voc4cat/IDs0000xxx/0000072.ttl new file mode 100644 index 00000000..431434af --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000072.ttl @@ -0,0 +1,28 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000072 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000072"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "TG"@en , + "TG analysis"@en , + "TG measurements"@en , + "TGA"@en , + "thermal gravimetric analysis"@en , + "thermo-gravimetric analysis"@en , + "thermogravimetric (TG) analyses"@en , + "thermogravimetric (TG) analysis"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A thermal analysis technique used to measure the change of a sample’s mass under the influence of controlled applied temperature profiles."@en ; + skos:inScheme ; + skos:prefLabel "thermogravimetric analysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000073.ttl b/vocabularies/voc4cat/IDs0000xxx/0000073.ttl new file mode 100644 index 00000000..37dd7bbb --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000073.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000073 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000073"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "NMR"@en ; + skos:broadMatch ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A spectroscopic technique that uses a static magnetic field and radiofrequency radiation to measure the magnetic resonance of atomic nuclei protons or electrons."@en ; + skos:inScheme ; + skos:prefLabel "nuclear magnetic resonance spectroscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000074.ttl b/vocabularies/voc4cat/IDs0000xxx/0000074.ttl new file mode 100644 index 00000000..3005fced --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000074.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000074 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000074"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "PL"@en ; + skos:broadMatch ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Light emission of lower energy photons from a sample upon its photoexcitation."@en ; + skos:inScheme ; + skos:prefLabel "photoluminescence"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000075.ttl b/vocabularies/voc4cat/IDs0000xxx/0000075.ttl new file mode 100644 index 00000000..9a6f3d49 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000075.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000075 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000075"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "SEM"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "An electron microscopy technique that produces high-resolution images under high magnification of a sample's surface by assessing the secondary and back-scattered electrons produced by a focused electron beam."@en ; + skos:inScheme ; + skos:narrowMatch ; + skos:prefLabel "scanning electron microscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000076.ttl b/vocabularies/voc4cat/IDs0000xxx/0000076.ttl new file mode 100644 index 00000000..b4220fa5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000076.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000076 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000076"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "XPS"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A technique that analyzes the chemical composition of an X-ray irradiated sample by measuring the energies of the emitted electrons."@en ; + skos:exactMatch ; + skos:inScheme ; + skos:prefLabel "X-ray photoelectron spectroscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000077.ttl b/vocabularies/voc4cat/IDs0000xxx/0000077.ttl new file mode 100644 index 00000000..af9e2bf6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000077.ttl @@ -0,0 +1,28 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000077 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000077"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "X-ray analysis"@en , + "X-ray crystallographic analysis"@en , + "X-ray crystallography"@en , + "X-ray diffraction analysis"@en , + "X-ray diffractometry"@en , + "X-ray structure determination"@en , + "XRD"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A technique which analyses the diffraction pattern produced when X-rays are scattered by a sample bombarded by a focused electron beam."@en ; + skos:exactMatch ; + skos:inScheme ; + skos:prefLabel "X-ray diffraction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000078.ttl b/vocabularies/voc4cat/IDs0000xxx/0000078.ttl new file mode 100644 index 00000000..efba02cc --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000078.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000078 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000078"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "TEM"@en ; + skos:broadMatch ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Transmission electron microscopy is a technique that produces high-resolution images if the internal structure of a sample by using a beam of electrons to bombard the thin sample and measuring the intensity of the scattered transmitted electrons."@en ; + skos:inScheme ; + skos:prefLabel "transmission electron microscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000079.ttl b/vocabularies/voc4cat/IDs0000xxx/0000079.ttl new file mode 100644 index 00000000..ec4891b9 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000079.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000079 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000079"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "UV-Vis"@en ; + skos:broadMatch ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A technique used to measure the absorption, transmission or reflectance of light by a sample in the ultraviolet and visible regions of the electromagnetic spectrum."@en ; + skos:inScheme ; + skos:narrowMatch ; + skos:prefLabel "ultraviolet-visible spectroscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000080.ttl b/vocabularies/voc4cat/IDs0000xxx/0000080.ttl new file mode 100644 index 00000000..687e36a8 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000080.ttl @@ -0,0 +1,32 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000080 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000080"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "FT-IR"@en , + "FT-IR spectroscopy"@en , + "FTIR"@en , + "FTIR spectrometry"@en , + "FTIR spectroscopy"@en , + "Fourier transform infra-red absoprtion spectroscopy"@en , + "Fourier transform infra-red spectrometry"@en , + "Fourier transform infrared (FT-IR)"@en , + "Fourier transform infrared (FT-IR) spectroscopy"@en , + "Fourier-transform infra-red absorption spectrometry"@en , + "Fourier-transform infrared (FTIR) absorption spectroscopy"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A spectroscopic technique used to study the vibrational modes of chemical bonds of a sample using infrared radiation."@en ; + skos:exactMatch ; + skos:inScheme ; + skos:prefLabel "Fourier transform infrared spectroscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000081.ttl b/vocabularies/voc4cat/IDs0000xxx/0000081.ttl new file mode 100644 index 00000000..e0ad2b17 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000081.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000081 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000081"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "BET"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The study of physical adsorption of gas molecules on a solid surface for the calculation of the specific surface area of materials."@en ; + skos:inScheme ; + skos:prefLabel "Brunauer-Emmett-Teller surface area analysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000082.ttl b/vocabularies/voc4cat/IDs0000xxx/0000082.ttl new file mode 100644 index 00000000..f80373c3 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000082.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000082 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000082"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "CV"@en , + "cyclovoltammetry"@en ; + skos:broader voc4cat:0007237 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "An electrochemical technique used to study the redox properties of a sample by measuring the current produced by an applied voltage sweep."@en ; + skos:inScheme ; + skos:prefLabel "cyclic voltammetry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000083.ttl b/vocabularies/voc4cat/IDs0000xxx/0000083.ttl new file mode 100644 index 00000000..b7d4e555 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000083.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000083 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000083"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A method used in cyclic voltammetry to determine the charge carrier concentration and the flat-band potential of an electrochemical system by measuring the capacitance as a function of applied voltage."@en ; + skos:inScheme ; + skos:prefLabel "Mott-Schottky analysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000084.ttl b/vocabularies/voc4cat/IDs0000xxx/0000084.ttl new file mode 100644 index 00000000..880e55cf --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000084.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000084 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000084"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The energy state occupied by an electron in a catalyst. This state can affect the electron's ability to participate in a catalytic reaction."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000085 , + voc4cat:0000086 ; + skos:prefLabel "electronic state"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000085.ttl b/vocabularies/voc4cat/IDs0000xxx/0000085.ttl new file mode 100644 index 00000000..cb0bc0ff --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000085.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000085 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000085"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000084 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Τhe lowest energy state of a system."@en ; + skos:inScheme ; + skos:prefLabel "ground state"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000086.ttl b/vocabularies/voc4cat/IDs0000xxx/0000086.ttl new file mode 100644 index 00000000..c358968c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000086.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000086 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000086"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000084 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Τhe temporary state of a system with higher energy than its ground state caused by an external factor."@en ; + skos:inScheme ; + skos:prefLabel "excited state"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000087.ttl b/vocabularies/voc4cat/IDs0000xxx/0000087.ttl new file mode 100644 index 00000000..3c9508cf --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000087.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000087 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000087"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A multi-step process iniatiated by the absorption of photons by a photocatalyst. This process involves various sub-processes that include the photogeneration and transfer of electron and hole pairs."@en ; + skos:inScheme ; + skos:prefLabel "photocatalytic process"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000088.ttl b/vocabularies/voc4cat/IDs0000xxx/0000088.ttl new file mode 100644 index 00000000..6985c901 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000088.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000088 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000088"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-2367-1988 Norbert Kockmann edited the resource"@en ; + skos:definition "The transfer of an electron initiated by the absorption of a photon of sufficient energy."@en ; + skos:inScheme ; + skos:prefLabel "photoinduced electron transfer"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000089.ttl b/vocabularies/voc4cat/IDs0000xxx/0000089.ttl new file mode 100644 index 00000000..aeaa1601 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000089.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000089 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000089"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The transfer of a hole initiated by the absorption of a photon of sufficient energy."@en ; + skos:inScheme ; + skos:prefLabel "photoinduced hole transfer"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000090.ttl b/vocabularies/voc4cat/IDs0000xxx/0000090.ttl new file mode 100644 index 00000000..40d21405 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000090.ttl @@ -0,0 +1,25 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000090 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000090"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "charge photo-generation"@en , + "charge photogeneration"@en , + "electron excitation"@en , + "electron-hole pair"@en , + "photogenerated charges"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The generation of electron - hole pairs in a semiconductor as a result of light absorption of sufficient energy to overcome the bandgap energy. Electrons (negative charge) get excited to the conduction band, while holes (positive charge) remain in the valence band."@en ; + skos:inScheme ; + skos:prefLabel "photoinduced charge generation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000091.ttl b/vocabularies/voc4cat/IDs0000xxx/0000091.ttl new file mode 100644 index 00000000..0d48eab6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000091.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000091 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000091"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The process by which photogenerated charges (electrons and holes) in a semiconductor recombine, resulting in the dissipation of energy in the form of e.g., heat or light."@en ; + skos:inScheme ; + skos:prefLabel "charge recombination"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000092.ttl b/vocabularies/voc4cat/IDs0000xxx/0000092.ttl new file mode 100644 index 00000000..b1ce8e0f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000092.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000092 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000092"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Absorption is the process in which energy (e.g., photons) or an absorbent (e.g., a gas) is taken up by an absorbate."@en ; + skos:inScheme ; + skos:prefLabel "absorption"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000093.ttl b/vocabularies/voc4cat/IDs0000xxx/0000093.ttl new file mode 100644 index 00000000..0f3241f8 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000093.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000093 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000093"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The adhesion of a gas, liquid or dissolved solid chemical of interest onto a solid surface."@en ; + skos:inScheme ; + skos:prefLabel "adsorption"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000094.ttl b/vocabularies/voc4cat/IDs0000xxx/0000094.ttl new file mode 100644 index 00000000..e8a96935 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000094.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000094 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000094"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The process under which reactants, intermediates and products are released from the surface of the catalyst. Desorption can be facilitated by an increase in temperature or a change in the pH."@en ; + skos:inScheme ; + skos:prefLabel "desorption"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000095.ttl b/vocabularies/voc4cat/IDs0000xxx/0000095.ttl new file mode 100644 index 00000000..a2b220ac --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000095.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000095 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000095"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The process of separating positive and negative charges in a semiconductor, typically as a result of an external force, (e.g., photoexcitation)."@en ; + skos:inScheme ; + skos:prefLabel "charge separation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000096.ttl b/vocabularies/voc4cat/IDs0000xxx/0000096.ttl new file mode 100644 index 00000000..6f10ac31 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000096.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000096 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000096"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "photo-excitation"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The state caused by the transition of electrons from the valence band top to the conduction band bottom by absorption of photons of sufficient energy."@en ; + skos:inScheme ; + skos:prefLabel "photoexcitation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000097.ttl b/vocabularies/voc4cat/IDs0000xxx/0000097.ttl new file mode 100644 index 00000000..e4b842b0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000097.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000097 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000097"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The loss of electrons or an increase in the oxidation state of a species."@en ; + skos:inScheme ; + skos:prefLabel "oxidation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000098.ttl b/vocabularies/voc4cat/IDs0000xxx/0000098.ttl new file mode 100644 index 00000000..26e283e1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000098.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000098 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000098"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The gain of electrons or a decrease in the oxidation state of a species."@en ; + skos:inScheme ; + skos:prefLabel "reduction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000099.ttl b/vocabularies/voc4cat/IDs0000xxx/0000099.ttl new file mode 100644 index 00000000..9d3c3741 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000099.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000099 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000099"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "CO2 photoreduction"@en , + "artificial photosynthesis"@en , + "carbon dioxide photoreduction"@en , + "photocatalytic carbon dioxide reduction"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The light-driven reduction (conversion) of carbon dioxide (CO2) to hydrocarbons and / or platform chemicals in presence of water. The absorption of light and the adsorption of the reactants is performed by a photocatalyst (usually a metal oxide)."@en ; + skos:inScheme ; + skos:prefLabel "photocatalytic CO2 reduction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000100.ttl b/vocabularies/voc4cat/IDs0000xxx/0000100.ttl new file mode 100644 index 00000000..ec4e942b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000100.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000100 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000100"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A lab-scale experiment performed to test the efficiency of a studied photocatalyst in a photocatalytic application."@en ; + skos:inScheme ; + skos:prefLabel "photocatalytic experiment"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000101.ttl b/vocabularies/voc4cat/IDs0000xxx/0000101.ttl new file mode 100644 index 00000000..75644e12 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000101.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000101 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000101"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A starting substance that undergoes a chemical reaction to produce a desired product."@en ; + skos:inScheme ; + skos:prefLabel "reactant"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000102.ttl b/vocabularies/voc4cat/IDs0000xxx/0000102.ttl new file mode 100644 index 00000000..8868180b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000102.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000102 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000102"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Concentration of the reactants used to perform an experiment."@en ; + skos:inScheme ; + skos:prefLabel "reactant concentration"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000103.ttl b/vocabularies/voc4cat/IDs0000xxx/0000103.ttl new file mode 100644 index 00000000..860c38c2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000103.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000103 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000103"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Purity of reactants used in an experiment. Purity is a measure of the impurities contained in the reactants' supply. The highest purity reactants should be used to ensure the collection of reliable results."@en ; + skos:inScheme ; + skos:prefLabel "reactant purity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000104.ttl b/vocabularies/voc4cat/IDs0000xxx/0000104.ttl new file mode 100644 index 00000000..829ac61b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000104.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000104 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000104"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The rate of flow of reactants (often in ml per min) in the photoreactor. Flow rates are usually controlled by mass flow controllers (MFCs)."@en ; + skos:inScheme ; + skos:prefLabel "reactant flow rate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000105.ttl b/vocabularies/voc4cat/IDs0000xxx/0000105.ttl new file mode 100644 index 00000000..159a0091 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000105.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000105 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000105"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Electron donors or hole scavengers used to reduce the recombination tendency of electrons and holes. Sacrificial reagents are used in catalysis to study an oxidation or reduction reaction separately."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000106 , + voc4cat:0000107 ; + skos:prefLabel "sacrificial reagant"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000106.ttl b/vocabularies/voc4cat/IDs0000xxx/0000106.ttl new file mode 100644 index 00000000..75540b1e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000106.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000106 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000106"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000105 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A molecule that accepts electrons from photoexcited species in a redox reaction and is subsequently consumed or degraded."@en ; + skos:inScheme ; + skos:prefLabel "sacrificial acceptor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000107.ttl b/vocabularies/voc4cat/IDs0000xxx/0000107.ttl new file mode 100644 index 00000000..08d71a10 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000107.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000107 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000107"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000105 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A molecule that donates electrons from photoexcited species in a redox reaction and is subsequently consumed or degraded."@en ; + skos:inScheme ; + skos:prefLabel "sacrificial donor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000108.ttl b/vocabularies/voc4cat/IDs0000xxx/0000108.ttl new file mode 100644 index 00000000..d1d2bde0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000108.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000108 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000108"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Operation mode under the which the experiment takes place: batch of continuous flow mode."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000109 , + voc4cat:0000110 ; + skos:prefLabel "operation mode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000109.ttl b/vocabularies/voc4cat/IDs0000xxx/0000109.ttl new file mode 100644 index 00000000..233b521b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000109.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000109 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000109"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "continuous flow mode"@en , + "continuous-flow mode"@en , + "flow mode"@en , + "flow-mode"@en ; + skos:broader voc4cat:0000108 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Under flow conditions, a continuous flow of reactants is supplied to the reaction chamber and the formed products are removed and identified by an appropriate technique."@en ; + skos:inScheme ; + skos:prefLabel "flow operation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000110.ttl b/vocabularies/voc4cat/IDs0000xxx/0000110.ttl new file mode 100644 index 00000000..9ecc4efa --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000110.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000110 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000110"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "batch mode"@en , + "batch-mode"@en ; + skos:broader voc4cat:0000108 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Operation mode in which the reaction chamber is filled with the (reactant) gas(es) up to a certain pressure, and the reaction products accummulate over time."@en ; + skos:inScheme ; + skos:prefLabel "batch operation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000111.ttl b/vocabularies/voc4cat/IDs0000xxx/0000111.ttl new file mode 100644 index 00000000..4c81b89e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000111.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000111 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000111"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The total duration of an experiment."@en ; + skos:inScheme ; + skos:prefLabel "experiment duration"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000112.ttl b/vocabularies/voc4cat/IDs0000xxx/0000112.ttl new file mode 100644 index 00000000..44116127 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000112.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000112 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000112"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Time for which a gas is purged through the reaction chamber."@en ; + skos:inScheme ; + skos:prefLabel "purging duration"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000113.ttl b/vocabularies/voc4cat/IDs0000xxx/0000113.ttl new file mode 100644 index 00000000..de296e3d --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000113.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000113 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000113"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The time in between the collection of two data points."@en ; + skos:inScheme ; + skos:prefLabel "sampling interval"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000114.ttl b/vocabularies/voc4cat/IDs0000xxx/0000114.ttl new file mode 100644 index 00000000..871563db --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000114.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000114 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000114"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The total duration in which a catalyst is under irradiation by the selected light source."@en ; + skos:inScheme ; + skos:prefLabel "irradiation duration"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000115.ttl b/vocabularies/voc4cat/IDs0000xxx/0000115.ttl new file mode 100644 index 00000000..5239b55a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000115.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000115 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000115"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The temperature (range) under which the catalytic reaction takes place."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000116 , + voc4cat:0000117 ; + skos:prefLabel "experiment temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000116.ttl b/vocabularies/voc4cat/IDs0000xxx/0000116.ttl new file mode 100644 index 00000000..0a051104 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000116.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000116 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000116"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000115 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The temperature at the initiaton of the experiment."@en ; + skos:inScheme ; + skos:prefLabel "experiment initial temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000117.ttl b/vocabularies/voc4cat/IDs0000xxx/0000117.ttl new file mode 100644 index 00000000..c0c262d5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000117.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000117 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000117"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000115 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The temperature at the end of the experiment."@en ; + skos:inScheme ; + skos:prefLabel "experiment final temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000118.ttl b/vocabularies/voc4cat/IDs0000xxx/0000118.ttl new file mode 100644 index 00000000..7d727ecc --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000118.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000118 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000118"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The pressure (range) under which the catalytic reaction takes place."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000119 , + voc4cat:0000120 ; + skos:prefLabel "experiment pressure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000119.ttl b/vocabularies/voc4cat/IDs0000xxx/0000119.ttl new file mode 100644 index 00000000..3ea4cf20 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000119.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000119 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000119"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000118 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The pressure at the initiaton of the experiment or before a sampling event."@en ; + skos:inScheme ; + skos:prefLabel "experiment initial pressure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000120.ttl b/vocabularies/voc4cat/IDs0000xxx/0000120.ttl new file mode 100644 index 00000000..b39dc07e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000120.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000120 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000120"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000118 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The pressure at the end of the experiment or after a sampling event."@en ; + skos:inScheme ; + skos:prefLabel "experiment final pressure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000121.ttl b/vocabularies/voc4cat/IDs0000xxx/0000121.ttl new file mode 100644 index 00000000..6330e03a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000121.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000121 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000121"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The pressure drop occurring when collecting a gaseous sample from the reaction chamber. This pressure drop should be taken into consideration when calculating the concentration of formed products."@en ; + skos:inScheme ; + skos:prefLabel "experiment pressure drop"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000122.ttl b/vocabularies/voc4cat/IDs0000xxx/0000122.ttl new file mode 100644 index 00000000..61fbab64 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000122.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000122 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000122"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "sample pretreatment"@en ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Pre-treatment of a catalyst before its introduction to the reaction chamber."@en ; + skos:inScheme ; + skos:prefLabel "sample pre-treatment"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000123.ttl b/vocabularies/voc4cat/IDs0000xxx/0000123.ttl new file mode 100644 index 00000000..e92f9083 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000123.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000123 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000123"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "control experiment"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Measurements performed to ensure that the studied catalytic reaction occurs because of the interaction of the catalyst with the reactants under the selected experimental conditions, and not from the environment or the reactor."@en ; + skos:inScheme ; + skos:prefLabel "blank experiment"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000124.ttl b/vocabularies/voc4cat/IDs0000xxx/0000124.ttl new file mode 100644 index 00000000..45d9078a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000124.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000124 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000124"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Quantitative and qualitative evaluation of the outcome of a catalytic reaction. The evaluation can lead to changes in the synthesis of the catalyst and / or selecting different experimental parameters."@en ; + skos:inScheme ; + skos:prefLabel "evaluation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000125.ttl b/vocabularies/voc4cat/IDs0000xxx/0000125.ttl new file mode 100644 index 00000000..d0f4410b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000125.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000125 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000125"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader + voc4cat:0005001 , + voc4cat:0005002 , + voc4cat:0005003 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-5898-1820 David Linke generalized the definition"@en ; + skos:definition "A dimensionless physical quantity describing how effective a reactant is converted to the desired product in a chemical conversion. It is calculated as the ratio between the amount of the desired product and the amount of the desired product that could have been formed if all reactants were converted to the desired product. The selectivity is 1 (or 100 %) if no other than the desired product is formed."@en ; + skos:inScheme ; + skos:prefLabel "selectivity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000126.ttl b/vocabularies/voc4cat/IDs0000xxx/0000126.ttl new file mode 100644 index 00000000..938b71a6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000126.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000126 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000126"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "AQY"@en , + "AQY%"@en , + "apparent photonic yield"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A measure of the efficiency of a photocatalytic reaction. It is expressed as the number of consumed charge carriers divided by the number of incident photons."@en ; + skos:inScheme ; + skos:prefLabel "apparent quantum yield"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000127.ttl b/vocabularies/voc4cat/IDs0000xxx/0000127.ttl new file mode 100644 index 00000000..90ab991e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000127.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000127 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000127"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The concentration (usually in ppm or mol) of the products formed during a reaction."@en ; + skos:inScheme ; + skos:prefLabel "product concentration"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000128.ttl b/vocabularies/voc4cat/IDs0000xxx/0000128.ttl new file mode 100644 index 00000000..95cff36b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000128.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000128 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000128"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "photoreactor engineering"@en , + "reactor design"@en , + "reactor engineering"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Details describing the construction, physical dimensions, and operation of the photoreactor used to perform a photocatalytic reaction."@en ; + skos:inScheme ; + skos:prefLabel "photoreactor design"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000129.ttl b/vocabularies/voc4cat/IDs0000xxx/0000129.ttl new file mode 100644 index 00000000..fbea1d70 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000129.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000129 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000129"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Spectroscopic or chromatographic methods used to identify the products of the reaction qualitatively and quantitatively. Such devices are usually attached to the reactor, or a sample is being transferred to an identification method via another medium (e.g., gastight syringes)."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0007813 , + voc4cat:0007814 ; + skos:prefLabel "product identification method"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000130.ttl b/vocabularies/voc4cat/IDs0000xxx/0000130.ttl new file mode 100644 index 00000000..1c79d32c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000130.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000130 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000130"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "GC"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "An analytical technique that separates and analyzes the components of a gas mixture by passing it though a stationary phase."@en ; + skos:inScheme ; + skos:prefLabel "gas chromatography"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000131.ttl b/vocabularies/voc4cat/IDs0000xxx/0000131.ttl new file mode 100644 index 00000000..593cdd43 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000131.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000131 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000131"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000191 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Detectors of the gas chromatogragh used to identify the reaction products and intemediates."@en ; + skos:inScheme ; + skos:prefLabel "gas chromatograph detector"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000132.ttl b/vocabularies/voc4cat/IDs0000xxx/0000132.ttl new file mode 100644 index 00000000..48bc3638 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000132.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000132 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000132"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "FID"@en ; + skos:broader voc4cat:0000191 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A type of gas chromatography detector that detects and quantifies the concentration of organic compounds in a gas sample emerging from a column, by measuring the electrical current generated by ionized gas constituents in a hydrogen flame."@en ; + skos:inScheme ; + skos:prefLabel "flame ionization detector"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000133.ttl b/vocabularies/voc4cat/IDs0000xxx/0000133.ttl new file mode 100644 index 00000000..c43b3087 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000133.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000133 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000133"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "TCD"@en ; + skos:broader voc4cat:0000191 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A type of gas chromatography detector that measures the thermal conductivity of a gas sample and identifies its constituent molecules through changes in a filament’s temperature."@en ; + skos:inScheme ; + skos:prefLabel "thermal conductivity detector"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000134.ttl b/vocabularies/voc4cat/IDs0000xxx/0000134.ttl new file mode 100644 index 00000000..f41d3a98 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000134.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000134 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000134"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "BID"@en ; + skos:broader voc4cat:0000191 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Detector incorporating Ionization via a new dielectric barrier discharge He plasma."@en ; + skos:inScheme ; + skos:prefLabel "dielectric-barrier discharge ionization detector"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000135.ttl b/vocabularies/voc4cat/IDs0000xxx/0000135.ttl new file mode 100644 index 00000000..a488a0be --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000135.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000135 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000135"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The minimum concentration of a product or intermediate that the gas chromatograph can identify."@en ; + skos:inScheme ; + skos:prefLabel "gas chromatograph sensitivity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000136.ttl b/vocabularies/voc4cat/IDs0000xxx/0000136.ttl new file mode 100644 index 00000000..16bf3419 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000136.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000136 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000136"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A process in which gaseous substances of known purity and concentration are introduced to the gas chromatograph and the respective area and retention time of the resulting peaks are identified. This process when concluded, allows for the calculation of concentrations of products and intermediates of the photoreaction."@en ; + skos:inScheme ; + skos:prefLabel "gas chromatograph calibration"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000137.ttl b/vocabularies/voc4cat/IDs0000xxx/0000137.ttl new file mode 100644 index 00000000..f0b11393 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000137.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000137 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000137"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "MS"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "An analytical technique which determines the mass-to-charge ratio of ions in a sample to give information about the composition of the sample."@en ; + skos:exactMatch ; + skos:inScheme ; + skos:prefLabel "mass spectrometry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000138.ttl b/vocabularies/voc4cat/IDs0000xxx/0000138.ttl new file mode 100644 index 00000000..b62de5d6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000138.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000138 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000138"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000191 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Detectors of the mass spectrometer used to identify the reaction products and intemediates."@en ; + skos:inScheme ; + skos:prefLabel "mass spectrometer detector"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000139.ttl b/vocabularies/voc4cat/IDs0000xxx/0000139.ttl new file mode 100644 index 00000000..2fd47703 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000139.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000139 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000139"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The minimum concentration of a product or intermediate that the mass spectrometer can identify."@en ; + skos:inScheme ; + skos:prefLabel "mass spectrometer sensitivity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000140.ttl b/vocabularies/voc4cat/IDs0000xxx/0000140.ttl new file mode 100644 index 00000000..eca288fb --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000140.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000140 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000140"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A process in which gaseous substances of known purity and concentration are introduced to the mass spectrometer and the respective mass-to-charge ratios are identified. This process when concluded, allows for the calculation of concentrations of products and intermediates of the photoreaction."@en ; + skos:inScheme ; + skos:prefLabel "mass spectrometer calibration"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000141.ttl b/vocabularies/voc4cat/IDs0000xxx/0000141.ttl new file mode 100644 index 00000000..a1401f98 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000141.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000141 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000141"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "LC"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A sepation technique that uses a liquid mobile phase to separate the components of a mixture based on their interactions with a stationary phase and a mobile phase."@en ; + skos:inScheme ; + skos:prefLabel "liquid chromatography"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000142.ttl b/vocabularies/voc4cat/IDs0000xxx/0000142.ttl new file mode 100644 index 00000000..ec397f4c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000142.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000142 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000142"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The range of parameters, critical for the safe operation of a reactor."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000143 , + voc4cat:0000148 ; + skos:prefLabel "operation parameters"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000143.ttl b/vocabularies/voc4cat/IDs0000xxx/0000143.ttl new file mode 100644 index 00000000..1280e02c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000143.ttl @@ -0,0 +1,26 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000143 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000143"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "operation pressure range"@en , + "pressure range"@en , + "range of operation pressure"@en ; + skos:broader voc4cat:0000142 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Maximum and minimum of operation pressure range within the reactor can operate safely. Higher operation temperatures can lead to higher pressure values."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000144 , + voc4cat:0000145 ; + skos:prefLabel "operation pressure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000144.ttl b/vocabularies/voc4cat/IDs0000xxx/0000144.ttl new file mode 100644 index 00000000..1cf806e4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000144.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000144 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000144"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000143 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Maximum of operation pressure range within the reactor can operate safely."@en ; + skos:inScheme ; + skos:prefLabel "maximum operation pressure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000145.ttl b/vocabularies/voc4cat/IDs0000xxx/0000145.ttl new file mode 100644 index 00000000..225d4d3b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000145.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000145 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000145"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000143 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Minimum of operation pressure range within the reactor can operate safely."@en ; + skos:inScheme ; + skos:prefLabel "minimum operation pressure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000146.ttl b/vocabularies/voc4cat/IDs0000xxx/0000146.ttl new file mode 100644 index 00000000..c8cf23e9 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000146.ttl @@ -0,0 +1,25 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000146 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000146"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "pressure controller"@en , + "pressure controller and monitor"@en , + "pressure gauge"@en , + "pressure monitor"@en ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Equipment (e.g., a vacuum pump) used for controlling and / or monitoring the pressure in various parts of a reactor."@en ; + skos:inScheme ; + skos:narrower voc4cat:0000147 ; + skos:prefLabel "pressure controller"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000147.ttl b/vocabularies/voc4cat/IDs0000xxx/0000147.ttl new file mode 100644 index 00000000..0f927fe4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000147.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000147 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000147"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000146 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Α mechanical device that removes gas molecules from a sealed chamber reaching pressures lower than the atmospheric pressure."@en ; + skos:inScheme ; + skos:prefLabel "vacuum pump"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000148.ttl b/vocabularies/voc4cat/IDs0000xxx/0000148.ttl new file mode 100644 index 00000000..8a51b674 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000148.ttl @@ -0,0 +1,26 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000148 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000148"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "operation temperature range"@en , + "range of operation temperature"@en , + "temperature range"@en ; + skos:broader voc4cat:0000142 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Maximum and minimum of operation temperature range within the reactor can operate safely."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000149 , + voc4cat:0000150 ; + skos:prefLabel "operation temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000149.ttl b/vocabularies/voc4cat/IDs0000xxx/0000149.ttl new file mode 100644 index 00000000..3ae6dc46 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000149.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000149 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000149"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000148 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Maximum of operation temperature range within the reactor can operate safely."@en ; + skos:inScheme ; + skos:prefLabel "maximum operation temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000150.ttl b/vocabularies/voc4cat/IDs0000xxx/0000150.ttl new file mode 100644 index 00000000..e33ca26c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000150.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000150 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000150"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000148 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Minimum of operation temperature range within the reactor can operate safely."@en ; + skos:inScheme ; + skos:prefLabel "minimum operation temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000151.ttl b/vocabularies/voc4cat/IDs0000xxx/0000151.ttl new file mode 100644 index 00000000..baa407dc --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000151.ttl @@ -0,0 +1,25 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000151 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000151"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "cooling device"@en , + "heating device"@en , + "temperature controller and monitor"@en , + "temperature gauge"@en , + "temperature monitor"@en ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Equipment used for controlling and/or monitoring the temperature in various parts of a reactor. This can include hot plates, heating elements and cryostats."@en ; + skos:inScheme ; + skos:prefLabel "temperature controller"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000152.ttl b/vocabularies/voc4cat/IDs0000xxx/0000152.ttl new file mode 100644 index 00000000..b10035f3 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000152.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000152 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000152"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "photoreaction chamber"@en ; + skos:broader voc4cat:0000188 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A construction inside of which the catalyst and the reactants coexist, and the reaction takes place."@en ; + skos:inScheme ; + skos:prefLabel "reaction chamber"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000153.ttl b/vocabularies/voc4cat/IDs0000xxx/0000153.ttl new file mode 100644 index 00000000..fc7c984f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000153.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000153 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000153"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Volume of the reaction chamber, calculated by its dimensions. Volume of pipes and valves connected to the reaction chamber should also be calculated and added to the total volume."@en ; + skos:inScheme ; + skos:prefLabel "reaction chamber volume"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000154.ttl b/vocabularies/voc4cat/IDs0000xxx/0000154.ttl new file mode 100644 index 00000000..25092fac --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000154.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000154 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000154"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Height, width and depth (in cubic- or rectangular- shaped reaction chambers) or diameter and height (in cylindrer - shaped reaction chambers)."@en ; + skos:inScheme ; + skos:prefLabel "reaction chamber dimension"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000155.ttl b/vocabularies/voc4cat/IDs0000xxx/0000155.ttl new file mode 100644 index 00000000..2085115e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000155.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000155 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000155"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The shape of the reaction chamber. In gas-phase reactions, reaction chambers have usually a cylindrical, cubical or rectangular shape."@en ; + skos:inScheme ; + skos:prefLabel "reaction chamber shape"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000156.ttl b/vocabularies/voc4cat/IDs0000xxx/0000156.ttl new file mode 100644 index 00000000..9f8c9b1b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000156.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000156 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000156"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Material used for the construction of the main body of the reaction chamber."@en ; + skos:inScheme ; + skos:prefLabel "reaction chamber material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000157.ttl b/vocabularies/voc4cat/IDs0000xxx/0000157.ttl new file mode 100644 index 00000000..e9c9081d --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000157.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000157 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000157"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000189 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A transparent material optimized to allow the transmission of electromagnetic radiation with low reflectance and scattering."@en ; + skos:inScheme ; + skos:prefLabel "optical window"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000158.ttl b/vocabularies/voc4cat/IDs0000xxx/0000158.ttl new file mode 100644 index 00000000..694c68b3 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000158.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000158 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000158"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Material that the optical window is made of. The window, usually attached to the lid sealing the reaction chamber, allows the incoming light to interact with the catalyst. The material of the window influences the wavelength range that the catalyst experiences."@en ; + skos:inScheme ; + skos:prefLabel "optical window material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000159.ttl b/vocabularies/voc4cat/IDs0000xxx/0000159.ttl new file mode 100644 index 00000000..0c973a85 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000159.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000159 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000159"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The dimension of the optical window (diameter / thickness) allowing the incoming light to enter the reaction chamber and interact with the catalyst."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000160 , + voc4cat:0000161 ; + skos:prefLabel "optical window dimensions"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000160.ttl b/vocabularies/voc4cat/IDs0000xxx/0000160.ttl new file mode 100644 index 00000000..856a4281 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000160.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000160 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000160"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000159 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Diameter of the optical window allowing the incoming light to enter the reaction chamber and interact with the catalyst."@en ; + skos:inScheme ; + skos:prefLabel "optical window diameter"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000161.ttl b/vocabularies/voc4cat/IDs0000xxx/0000161.ttl new file mode 100644 index 00000000..d04fa049 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000161.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000161 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000161"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000159 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Thickness of the optical window allowing the incoming light to enter the reaction chamber and interact with the catalyst."@en ; + skos:inScheme ; + skos:prefLabel "optical window thickness"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000162.ttl b/vocabularies/voc4cat/IDs0000xxx/0000162.ttl new file mode 100644 index 00000000..4cf1705a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000162.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000162 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000162"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "gas flow"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Flow rates of gases used in an experiment. Gases can have either the role of a reactant (e.g., CO2) or be inert (e.g., Ar, He)."@en ; + skos:inScheme ; + skos:prefLabel "gas feed"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000163.ttl b/vocabularies/voc4cat/IDs0000xxx/0000163.ttl new file mode 100644 index 00000000..2e05c29a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000163.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000163 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000163"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "gas flow controller and monitor"@en ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Equipment used for controlling and / or monitoring the flow of gases (reactant or inert) needed for a catalytic experiment. Mass flow controllers (MFCs) are commonly used to control gas flows."@en ; + skos:inScheme ; + skos:narrower voc4cat:0000164 ; + skos:prefLabel "gas flow controller"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000164.ttl b/vocabularies/voc4cat/IDs0000xxx/0000164.ttl new file mode 100644 index 00000000..07c459ca --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000164.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000164 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000164"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "MFC"@en , + "MFCs"@en ; + skos:broader voc4cat:0000163 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A mass flow controller (MFC) is a device used to measure and control the flow of liquids and gases. A mass flow controller is designed and calibrated to control a specific type of liquid or gas at a particular range of flow rates."@en ; + skos:inScheme ; + skos:prefLabel "mass flow controller"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000165.ttl b/vocabularies/voc4cat/IDs0000xxx/0000165.ttl new file mode 100644 index 00000000..b84ca75c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000165.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000165 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000165"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000189 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "All the necessary equipment needed to perform a catalytic experiment involving irradiation. The system apart from the light source can include, filters, power units, lamp cooling devices etc.."@en ; + skos:inScheme ; + skos:narrower voc4cat:0000166 ; + skos:prefLabel "irradiation system"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000166.ttl b/vocabularies/voc4cat/IDs0000xxx/0000166.ttl new file mode 100644 index 00000000..310a6ff5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000166.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000166 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000166"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000165 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Source used to irradiate a catalyst in a reaction chamber. These include sources with various intensities, power, and wavelength ranges, including Hg/Xe lamps, Xe lamps and LEDs."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000167 , + voc4cat:0000168 , + voc4cat:0000169 ; + skos:prefLabel "light source"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000167.ttl b/vocabularies/voc4cat/IDs0000xxx/0000167.ttl new file mode 100644 index 00000000..967781a4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000167.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000167 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000167"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "Hg-Xe lamp"@en , + "Hg/Xe lamp"@en , + "mercury xenon lamp"@en ; + skos:broader voc4cat:0000166 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A lamp containing a mixture of mercury (Hg) and xenon (Xe) gases. Under electric current, the gas mixture gets ionized through a discharge electric charge creating a plasma generating UV and visible light."@en ; + skos:inScheme ; + skos:prefLabel "mercury-xenon lamp"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000168.ttl b/vocabularies/voc4cat/IDs0000xxx/0000168.ttl new file mode 100644 index 00000000..3d40d0a7 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000168.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000168 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000168"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "Xe lamp"@en , + "Xe-lamp"@en ; + skos:broader voc4cat:0000166 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A lamp containing pure xenon (Xe) gas. Under electric current, the gas mixture gets ionized through a discharge electric charge creating a plasma generating UV and visible light."@en ; + skos:inScheme ; + skos:prefLabel "xenon lamp"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000169.ttl b/vocabularies/voc4cat/IDs0000xxx/0000169.ttl new file mode 100644 index 00000000..c3f4dbd1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000169.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000169 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000169"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "LED"@en , + "light-emitting diode"@en ; + skos:broader voc4cat:0000166 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A solid-state semiconductor emitting light at highly controllable (narrow) wavelength ranges."@en ; + skos:inScheme ; + skos:prefLabel "light emitting diode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000170.ttl b/vocabularies/voc4cat/IDs0000xxx/0000170.ttl new file mode 100644 index 00000000..ac4c6db0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000170.ttl @@ -0,0 +1,26 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000170 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000170"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Specific of properties of the light source dictating its operation and its adequacy in the studied catalytic reaction."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000171 , + voc4cat:0000172 , + voc4cat:0000173 , + voc4cat:0000174 , + voc4cat:0000175 , + voc4cat:0000176 ; + skos:prefLabel "light source property"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000171.ttl b/vocabularies/voc4cat/IDs0000xxx/0000171.ttl new file mode 100644 index 00000000..fe44d4db --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000171.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000171 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000171"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000170 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The distance of the light source from the reaction chamber and the catalyst."@en ; + skos:inScheme ; + skos:prefLabel "light source distance"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000172.ttl b/vocabularies/voc4cat/IDs0000xxx/0000172.ttl new file mode 100644 index 00000000..0c36fd8d --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000172.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000172 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000172"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000170 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The value of current (usually in A or mA) used to operate the selected light source."@en ; + skos:inScheme ; + skos:prefLabel "light operation current"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000173.ttl b/vocabularies/voc4cat/IDs0000xxx/0000173.ttl new file mode 100644 index 00000000..1fec0f44 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000173.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000173 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000173"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000170 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The value of voltage (usually in V or mV) used to operate the selected light source."@en ; + skos:inScheme ; + skos:prefLabel "light operation voltage"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000174.ttl b/vocabularies/voc4cat/IDs0000xxx/0000174.ttl new file mode 100644 index 00000000..d89c5af4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000174.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000174 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000174"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000170 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The power of the light source (usually in W or mW). The power can be calculated by the multiplication of the current and voltage used to operate the light source."@en ; + skos:inScheme ; + skos:prefLabel "light power output"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000175.ttl b/vocabularies/voc4cat/IDs0000xxx/0000175.ttl new file mode 100644 index 00000000..a22193f0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000175.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000175 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000175"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000170 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The light intensity (usually in mW cm-2) of the selected light source. The light intensity should be measured at the same distance as the one between the light source and the reaction chamber / sample."@en ; + skos:inScheme ; + skos:prefLabel "light intensity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000176.ttl b/vocabularies/voc4cat/IDs0000xxx/0000176.ttl new file mode 100644 index 00000000..0e54a2a5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000176.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000176 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000176"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "λ"@en ; + skos:broader voc4cat:0000170 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The distance between two successive peaks or troughs in a wave."@en ; + skos:inScheme ; + skos:prefLabel "light wavelength"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000177.ttl b/vocabularies/voc4cat/IDs0000xxx/0000177.ttl new file mode 100644 index 00000000..b4f40bdb --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000177.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000177 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000177"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "IR"@en , + "Ir"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Electromagnetic radiation with wavelengths typically in the range of 800 nm - 20000 nm."@en ; + skos:inScheme ; + skos:prefLabel "infrared"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000178.ttl b/vocabularies/voc4cat/IDs0000xxx/0000178.ttl new file mode 100644 index 00000000..e0844393 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000178.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000178 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000178"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "VIS"@en , + "Vis"@en , + "visible light"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Electromagnetic radiation with wavelengths visible to the human eye, typically in the range of 400-800 nm."@en ; + skos:inScheme ; + skos:prefLabel "visible"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000179.ttl b/vocabularies/voc4cat/IDs0000xxx/0000179.ttl new file mode 100644 index 00000000..deac3eb2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000179.ttl @@ -0,0 +1,25 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000179 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000179"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "UV"@en , + "UV-A"@en , + "UV-B"@en , + "UV-C"@en , + "VUV"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Electromagnetic radiation with a wavelength typically in the range of 100-400 nanometers."@en ; + skos:inScheme ; + skos:prefLabel "ultraviolet"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000180.ttl b/vocabularies/voc4cat/IDs0000xxx/0000180.ttl new file mode 100644 index 00000000..4b482f67 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000180.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000180 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000180"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "Entity with a concrete and physical nature."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000187 , + voc4cat:0000190 , + voc4cat:0007017 , + voc4cat:0007045 ; + skos:prefLabel "physical entity"@en ; + skos:topConceptOf ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000181.ttl b/vocabularies/voc4cat/IDs0000xxx/0000181.ttl new file mode 100644 index 00000000..03e733c2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000181.ttl @@ -0,0 +1,78 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000181 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000181"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "Any entity that cannot be located in space-time. E.g., mathematical entities, formal semantics elements, regions within dimensional spaces, ideas, conceptual models."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000007 , + voc4cat:0000011 , + voc4cat:0000012 , + voc4cat:0000055 , + voc4cat:0000062 , + voc4cat:0000084 , + voc4cat:0000101 , + voc4cat:0000105 , + voc4cat:0000128 , + voc4cat:0000177 , + voc4cat:0000178 , + voc4cat:0000179 , + voc4cat:0000196 , + voc4cat:0000199 , + voc4cat:0000200 , + voc4cat:0000201 , + voc4cat:0000203 , + voc4cat:0000215 , + voc4cat:0000218 , + voc4cat:0000219 , + voc4cat:0000225 , + voc4cat:0000229 , + voc4cat:0000231 , + voc4cat:0000235 , + voc4cat:0000238 , + voc4cat:0000240 , + voc4cat:0000255 , + voc4cat:0000257 , + voc4cat:0000263 , + voc4cat:0000264 , + voc4cat:0000267 , + voc4cat:0000274 , + voc4cat:0000275 , + voc4cat:0000277 , + voc4cat:0000279 , + voc4cat:0000284 , + voc4cat:0000287 , + voc4cat:0000292 , + voc4cat:0000298 , + voc4cat:0000301 , + voc4cat:0000309 , + voc4cat:0005011 , + voc4cat:0005018 , + voc4cat:0005051 , + voc4cat:0005058 , + voc4cat:0007005 , + voc4cat:0007006 , + voc4cat:0007040 , + voc4cat:0007041 , + voc4cat:0007101 , + voc4cat:0007246 , + voc4cat:0007247 , + voc4cat:0007793 , + voc4cat:0007794 , + voc4cat:0007809 , + voc4cat:0007828 , + voc4cat:0007829 , + voc4cat:0007838 ; + skos:prefLabel "non-temporal abstract entity"@en ; + skos:topConceptOf ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000182.ttl b/vocabularies/voc4cat/IDs0000xxx/0000182.ttl new file mode 100644 index 00000000..2ec4978b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000182.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000182 + a skos:Concept ; + dcterms:created "2024-08-21"^^xsd:date ; + dcterms:identifier "0000182"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "Anything that has a temporal dimension, whether it is an instantaneous point in time, a duration, or a sequence of events."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000183 , + voc4cat:0000184 , + voc4cat:0000185 , + voc4cat:0005057 ; + skos:prefLabel "temporal abstract entity"@en ; + skos:topConceptOf ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000183.ttl b/vocabularies/voc4cat/IDs0000xxx/0000183.ttl new file mode 100644 index 00000000..e0b80b99 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000183.ttl @@ -0,0 +1,62 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000183 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000183"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000182 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "An occurrence or happening, marked by a specific point in time. Events can be observed, recorded, and may have an impact on the state of the system or entities involved."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000088 , + voc4cat:0000089 , + voc4cat:0000090 , + voc4cat:0000091 , + voc4cat:0000092 , + voc4cat:0000093 , + voc4cat:0000094 , + voc4cat:0000095 , + voc4cat:0000096 , + voc4cat:0000097 , + voc4cat:0000098 , + voc4cat:0000220 , + voc4cat:0000222 , + voc4cat:0000223 , + voc4cat:0000224 , + voc4cat:0000226 , + voc4cat:0000230 , + voc4cat:0000236 , + voc4cat:0000237 , + voc4cat:0000241 , + voc4cat:0000242 , + voc4cat:0000243 , + voc4cat:0000244 , + voc4cat:0000245 , + voc4cat:0000247 , + voc4cat:0000252 , + voc4cat:0000253 , + voc4cat:0000258 , + voc4cat:0000259 , + voc4cat:0000260 , + voc4cat:0000261 , + voc4cat:0000276 , + voc4cat:0000278 , + voc4cat:0000280 , + voc4cat:0000283 , + voc4cat:0000289 , + voc4cat:0000290 , + voc4cat:0000297 , + voc4cat:0000302 , + voc4cat:0000303 , + voc4cat:0000306 , + voc4cat:0007234 ; + skos:prefLabel "events"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000184.ttl b/vocabularies/voc4cat/IDs0000xxx/0000184.ttl new file mode 100644 index 00000000..f04c3dbe --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000184.ttl @@ -0,0 +1,33 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000184 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000184"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000182 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "Temporal entities that have a duration and occur at specific points in time."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000046 , + voc4cat:0000122 , + voc4cat:0000124 , + voc4cat:0000136 , + voc4cat:0000140 , + voc4cat:0000282 , + voc4cat:0007007 , + voc4cat:0007008 , + voc4cat:0007027 , + voc4cat:0007028 , + voc4cat:0007030 , + voc4cat:0007225 , + voc4cat:0007251 ; + skos:prefLabel "actions"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000185.ttl b/vocabularies/voc4cat/IDs0000xxx/0000185.ttl new file mode 100644 index 00000000..cbc95f44 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000185.ttl @@ -0,0 +1,58 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000185 + a skos:Concept ; + dcterms:created "2024-08-21"^^xsd:date ; + dcterms:identifier "0000185"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000182 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A series of temporal entities, like actions, events, changes, or functions that are not isolated but rather a connected sequence of activities. Processes often involve the transformation of inputs into outputs and can be conceptualized as workflows."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000014 , + voc4cat:0000020 , + voc4cat:0000045 , + voc4cat:0000049 , + voc4cat:0000066 , + voc4cat:0000087 , + voc4cat:0000099 , + voc4cat:0000100 , + voc4cat:0000123 , + voc4cat:0000130 , + voc4cat:0000137 , + voc4cat:0000141 , + voc4cat:0000202 , + voc4cat:0000205 , + voc4cat:0000206 , + voc4cat:0000221 , + voc4cat:0000227 , + voc4cat:0000239 , + voc4cat:0000248 , + voc4cat:0000249 , + voc4cat:0000250 , + voc4cat:0000251 , + voc4cat:0000256 , + voc4cat:0000262 , + voc4cat:0000265 , + voc4cat:0000266 , + voc4cat:0000269 , + voc4cat:0000273 , + voc4cat:0000281 , + voc4cat:0000285 , + voc4cat:0000291 , + voc4cat:0000304 , + voc4cat:0007029 , + voc4cat:0007031 , + voc4cat:0007206 , + voc4cat:0007238 , + voc4cat:0008101 , + voc4cat:0008102 ; + skos:prefLabel "processes"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000186.ttl b/vocabularies/voc4cat/IDs0000xxx/0000186.ttl new file mode 100644 index 00000000..a8cfc5b6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000186.ttl @@ -0,0 +1,161 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000186 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000186"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas and 0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A characteristic of an entity that is intrinsic to and cannot exist without the entity. E.g., properties, characteristics, qualities of things, states."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000004 , + voc4cat:0000006 , + voc4cat:0000008 , + voc4cat:0000009 , + voc4cat:0000010 , + voc4cat:0000013 , + voc4cat:0000016 , + voc4cat:0000018 , + voc4cat:0000025 , + voc4cat:0000033 , + voc4cat:0000037 , + voc4cat:0000039 , + voc4cat:0000040 , + voc4cat:0000050 , + voc4cat:0000051 , + voc4cat:0000052 , + voc4cat:0000053 , + voc4cat:0000054 , + voc4cat:0000056 , + voc4cat:0000057 , + voc4cat:0000058 , + voc4cat:0000059 , + voc4cat:0000060 , + voc4cat:0000063 , + voc4cat:0000064 , + voc4cat:0000065 , + voc4cat:0000102 , + voc4cat:0000103 , + voc4cat:0000104 , + voc4cat:0000108 , + voc4cat:0000111 , + voc4cat:0000112 , + voc4cat:0000113 , + voc4cat:0000114 , + voc4cat:0000115 , + voc4cat:0000118 , + voc4cat:0000121 , + voc4cat:0000126 , + voc4cat:0000127 , + voc4cat:0000129 , + voc4cat:0000135 , + voc4cat:0000139 , + voc4cat:0000142 , + voc4cat:0000153 , + voc4cat:0000154 , + voc4cat:0000155 , + voc4cat:0000156 , + voc4cat:0000158 , + voc4cat:0000159 , + voc4cat:0000162 , + voc4cat:0000170 , + voc4cat:0000211 , + voc4cat:0000212 , + voc4cat:0000213 , + voc4cat:0000214 , + voc4cat:0000228 , + voc4cat:0000299 , + voc4cat:0000305 , + voc4cat:0000308 , + voc4cat:0005001 , + voc4cat:0005002 , + voc4cat:0005003 , + voc4cat:0005007 , + voc4cat:0005008 , + voc4cat:0005009 , + voc4cat:0005010 , + voc4cat:0007004 , + voc4cat:0007009 , + voc4cat:0007010 , + voc4cat:0007013 , + voc4cat:0007014 , + voc4cat:0007016 , + voc4cat:0007018 , + voc4cat:0007021 , + voc4cat:0007022 , + voc4cat:0007023 , + voc4cat:0007024 , + voc4cat:0007025 , + voc4cat:0007026 , + voc4cat:0007032 , + voc4cat:0007038 , + voc4cat:0007039 , + voc4cat:0007044 , + voc4cat:0007046 , + voc4cat:0007108 , + voc4cat:0007109 , + voc4cat:0007111 , + voc4cat:0007112 , + voc4cat:0007113 , + voc4cat:0007114 , + voc4cat:0007115 , + voc4cat:0007116 , + voc4cat:0007117 , + voc4cat:0007118 , + voc4cat:0007119 , + voc4cat:0007120 , + voc4cat:0007121 , + voc4cat:0007122 , + voc4cat:0007123 , + voc4cat:0007124 , + voc4cat:0007125 , + voc4cat:0007126 , + voc4cat:0007127 , + voc4cat:0007128 , + voc4cat:0007129 , + voc4cat:0007210 , + voc4cat:0007219 , + voc4cat:0007220 , + voc4cat:0007221 , + voc4cat:0007222 , + voc4cat:0007223 , + voc4cat:0007226 , + voc4cat:0007227 , + voc4cat:0007228 , + voc4cat:0007229 , + voc4cat:0007233 , + voc4cat:0007239 , + voc4cat:0007240 , + voc4cat:0007244 , + voc4cat:0007245 , + voc4cat:0007252 , + voc4cat:0007253 , + voc4cat:0007258 , + voc4cat:0007260 , + voc4cat:0007261 , + voc4cat:0007262 , + voc4cat:0007263 , + voc4cat:0007803 , + voc4cat:0007817 , + voc4cat:0007839 , + voc4cat:0007844 , + voc4cat:0008085 , + voc4cat:0008086 , + voc4cat:0008087 , + voc4cat:0008088 , + voc4cat:0008089 , + voc4cat:0008090 , + voc4cat:0008091 , + voc4cat:0008097 , + voc4cat:0008099 , + voc4cat:0008100 ; + skos:prefLabel "attributes"@en ; + skos:topConceptOf ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000187.ttl b/vocabularies/voc4cat/IDs0000xxx/0000187.ttl new file mode 100644 index 00000000..5a0a989e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000187.ttl @@ -0,0 +1,39 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000187 + a skos:Concept ; + dcterms:created "2024-12-09"^^xsd:date ; + dcterms:identifier "0000187"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000180 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Apparatus, devices, and instruments employed in the construction and operation of experimental setups and the analysis of catalytic reactions and materials."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000061 , + voc4cat:0000146 , + voc4cat:0000151 , + voc4cat:0000163 , + voc4cat:0000188 , + voc4cat:0000189 , + voc4cat:0000192 , + voc4cat:0000234 , + voc4cat:0007012 , + voc4cat:0007201 , + voc4cat:0007205 , + voc4cat:0007224 , + voc4cat:0007230 , + voc4cat:0007231 , + voc4cat:0007232 , + voc4cat:0007235 , + voc4cat:0007236 , + voc4cat:0007249 , + voc4cat:0007250 ; + skos:prefLabel "equipment"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000188.ttl b/vocabularies/voc4cat/IDs0000xxx/0000188.ttl new file mode 100644 index 00000000..f78b7f73 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000188.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000188 + a skos:Concept ; + dcterms:created "2024-12-09"^^xsd:date ; + dcterms:identifier "0000188"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Components being integral parts of a catalytic reactor."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000152 , + voc4cat:0007020 ; + skos:prefLabel "reactor equipment"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000189.ttl b/vocabularies/voc4cat/IDs0000xxx/0000189.ttl new file mode 100644 index 00000000..58376d0b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000189.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000189 + a skos:Concept ; + dcterms:created "2024-12-09"^^xsd:date ; + dcterms:identifier "0000189"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Optical systems involved in light irradiation."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000157 , + voc4cat:0000165 ; + skos:prefLabel "optical equipment"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000190.ttl b/vocabularies/voc4cat/IDs0000xxx/0000190.ttl new file mode 100644 index 00000000..3b3626f9 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000190.ttl @@ -0,0 +1,33 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000190 + a skos:Concept ; + dcterms:created "2024-12-09"^^xsd:date ; + dcterms:identifier "0000190"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000180 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Substances used as catalysts, supports, or reactants in catalytic processes."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000003 , + voc4cat:0000005 , + voc4cat:0000024 , + voc4cat:0000194 , + voc4cat:0000197 , + voc4cat:0000210 , + voc4cat:0000268 , + voc4cat:0000270 , + voc4cat:0000293 , + voc4cat:0000295 , + voc4cat:0000300 , + voc4cat:0000307 , + voc4cat:0005056 ; + skos:prefLabel "material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000191.ttl b/vocabularies/voc4cat/IDs0000xxx/0000191.ttl new file mode 100644 index 00000000..494273cb --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000191.ttl @@ -0,0 +1,26 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000191 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000191"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000192 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0009-0004-3786-0773 Carla Terboven added a child"@en ; + skos:definition "A device designed to identify a measurable change or signal in a system, often providing a binary (detected / not detected) or a qualitative response."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000131 , + voc4cat:0000132 , + voc4cat:0000133 , + voc4cat:0000134 , + voc4cat:0000138 , + voc4cat:0008083 ; + skos:prefLabel "detector"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000192.ttl b/vocabularies/voc4cat/IDs0000xxx/0000192.ttl new file mode 100644 index 00000000..f2fc6063 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000192.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000192 + a skos:Concept ; + dcterms:created "2024-12-09"^^xsd:date ; + dcterms:identifier "0000192"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A device that measures a specific physical or chemical property and converts it into readable signal, often for continuous monitoring."@en ; + skos:inScheme ; + skos:narrower voc4cat:0000191 ; + skos:prefLabel "sensor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000193.ttl b/vocabularies/voc4cat/IDs0000xxx/0000193.ttl new file mode 100644 index 00000000..ed619419 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000193.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000193 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000193"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007017 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A reactor used to perform and study electrochemical reactions."@en ; + skos:inScheme ; + skos:prefLabel "electrochemical reactor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000194.ttl b/vocabularies/voc4cat/IDs0000xxx/0000194.ttl new file mode 100644 index 00000000..268e2fe5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000194.ttl @@ -0,0 +1,28 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000194 + a skos:Concept ; + dcterms:created "2024-12-09"^^xsd:date ; + dcterms:identifier "0000194"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A material that initiates or increases the rate of a catalytic reaction, without it being consumed in the process."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000002 , + voc4cat:0000017 , + voc4cat:0000019 , + voc4cat:0000038 , + voc4cat:0000254 , + voc4cat:0007003 , + voc4cat:0007015 , + voc4cat:0007034 ; + skos:prefLabel "catalyst"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000195.ttl b/vocabularies/voc4cat/IDs0000xxx/0000195.ttl new file mode 100644 index 00000000..857c570d --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000195.ttl @@ -0,0 +1,151 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000195 + a skos:Collection ; + dcterms:created "2025-04-01"^^xsd:date ; + dcterms:identifier "0000195"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:isDefinedBy ; + rdfs:seeAlso ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the collection"@en ; + skos:definition "A collection of concepts most often appearing as publication keywords in the journal ChemCatChem (Wiley)."@en ; + skos:inScheme ; + skos:member + voc4cat:0000001 , + voc4cat:0000002 , + voc4cat:0000015 , + voc4cat:0000020 , + voc4cat:0000049 , + voc4cat:0000069 , + voc4cat:0000073 , + voc4cat:0000080 , + voc4cat:0000093 , + voc4cat:0000097 , + voc4cat:0000098 , + voc4cat:0000125 , + voc4cat:0000178 , + voc4cat:0000194 , + voc4cat:0000197 , + voc4cat:0000198 , + voc4cat:0000199 , + voc4cat:0000200 , + voc4cat:0000201 , + voc4cat:0000202 , + voc4cat:0000203 , + voc4cat:0000204 , + voc4cat:0000205 , + voc4cat:0000206 , + voc4cat:0000207 , + voc4cat:0000208 , + voc4cat:0000209 , + voc4cat:0000210 , + voc4cat:0000211 , + voc4cat:0000212 , + voc4cat:0000213 , + voc4cat:0000214 , + voc4cat:0000215 , + voc4cat:0000216 , + voc4cat:0000217 , + voc4cat:0000218 , + voc4cat:0000219 , + voc4cat:0000220 , + voc4cat:0000221 , + voc4cat:0000222 , + voc4cat:0000223 , + voc4cat:0000224 , + voc4cat:0000225 , + voc4cat:0000226 , + voc4cat:0000227 , + voc4cat:0000228 , + voc4cat:0000229 , + voc4cat:0000230 , + voc4cat:0000231 , + voc4cat:0000232 , + voc4cat:0000233 , + voc4cat:0000234 , + voc4cat:0000235 , + voc4cat:0000236 , + voc4cat:0000237 , + voc4cat:0000238 , + voc4cat:0000239 , + voc4cat:0000240 , + voc4cat:0000241 , + voc4cat:0000242 , + voc4cat:0000243 , + voc4cat:0000244 , + voc4cat:0000245 , + voc4cat:0000246 , + voc4cat:0000247 , + voc4cat:0000248 , + voc4cat:0000249 , + voc4cat:0000250 , + voc4cat:0000251 , + voc4cat:0000252 , + voc4cat:0000253 , + voc4cat:0000254 , + voc4cat:0000255 , + voc4cat:0000256 , + voc4cat:0000257 , + voc4cat:0000258 , + voc4cat:0000259 , + voc4cat:0000260 , + voc4cat:0000261 , + voc4cat:0000262 , + voc4cat:0000263 , + voc4cat:0000264 , + voc4cat:0000265 , + voc4cat:0000266 , + voc4cat:0000267 , + voc4cat:0000268 , + voc4cat:0000269 , + voc4cat:0000270 , + voc4cat:0000271 , + voc4cat:0000272 , + voc4cat:0000273 , + voc4cat:0000274 , + voc4cat:0000275 , + voc4cat:0000276 , + voc4cat:0000277 , + voc4cat:0000278 , + voc4cat:0000279 , + voc4cat:0000280 , + voc4cat:0000281 , + voc4cat:0000282 , + voc4cat:0000283 , + voc4cat:0000284 , + voc4cat:0000285 , + voc4cat:0000286 , + voc4cat:0000287 , + voc4cat:0000288 , + voc4cat:0000289 , + voc4cat:0000290 , + voc4cat:0000291 , + voc4cat:0000292 , + voc4cat:0000293 , + voc4cat:0000294 , + voc4cat:0000295 , + voc4cat:0000296 , + voc4cat:0000297 , + voc4cat:0000298 , + voc4cat:0000299 , + voc4cat:0000300 , + voc4cat:0000301 , + voc4cat:0000302 , + voc4cat:0000303 , + voc4cat:0000304 , + voc4cat:0000305 , + voc4cat:0000306 , + voc4cat:0000307 , + voc4cat:0000308 , + voc4cat:0000309 , + voc4cat:0007001 , + voc4cat:0007002 , + voc4cat:0007003 , + voc4cat:0007034 ; + skos:prefLabel "ChemCatChem keyword collection"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000196.ttl b/vocabularies/voc4cat/IDs0000xxx/0000196.ttl new file mode 100644 index 00000000..60e885b7 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000196.ttl @@ -0,0 +1,34 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000196 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000196"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "catalysis domain"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "An area of study, focusing in a specific sub-section of the general field of catalysis."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000001 , + voc4cat:0000204 , + voc4cat:0000207 , + voc4cat:0000208 , + voc4cat:0000216 , + voc4cat:0000217 , + voc4cat:0000232 , + voc4cat:0000233 , + voc4cat:0000246 , + voc4cat:0000294 , + voc4cat:0000296 , + voc4cat:0007001 , + voc4cat:0007002 ; + skos:prefLabel "catalysis research field"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000197.ttl b/vocabularies/voc4cat/IDs0000xxx/0000197.ttl new file mode 100644 index 00000000..8b6f2a0e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000197.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000197 + a skos:Concept ; + dcterms:created "2025-04-01"^^xsd:date ; + dcterms:identifier "0000197"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "MOF"@en ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Porous crystalline materials composed of metal nodes or clusters connected by organic linkers, forming highly ordered one-, two-, or three-dimensional structures with tunable properties."@en ; + skos:inScheme ; + skos:prefLabel "metal-organic framework"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000198.ttl b/vocabularies/voc4cat/IDs0000xxx/0000198.ttl new file mode 100644 index 00000000..d4c34944 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000198.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000198 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000198"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000270 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A porous solid material containing pores with width between 2 and 50 nm."@en ; + skos:inScheme ; + skos:prefLabel "mesoporous material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000199.ttl b/vocabularies/voc4cat/IDs0000xxx/0000199.ttl new file mode 100644 index 00000000..68f98ec5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000199.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000199 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000199"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A reaction mechanism is the step-by-step sequence of elementary reactions at the molecular level that explains how an overall chemical reaction proceeds."@en ; + skos:inScheme ; + skos:prefLabel "reaction mechanism"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000200.ttl b/vocabularies/voc4cat/IDs0000xxx/0000200.ttl new file mode 100644 index 00000000..b22e467f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000200.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000200 + a skos:Concept ; + dcterms:created "2025-04-01"^^xsd:date ; + dcterms:identifier "0000200"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "sustainable chemistry"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The science and technology of sustainable and environment friendly chemical processes and products that reduce or eliminate hazardous substances, while minimizing waste and energy consumption."@en ; + skos:inScheme ; + skos:prefLabel "green chemistry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000201.ttl b/vocabularies/voc4cat/IDs0000xxx/0000201.ttl new file mode 100644 index 00000000..894d06b8 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000201.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000201 + a skos:Concept ; + dcterms:created "2025-04-01"^^xsd:date ; + dcterms:identifier "0000201"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "cross-coupling"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A cross-coupling reaction is a catalytic, metal-mediated reaction that forms carbon-carbon or carbon-heteroatom bonds by joining two different molecular fragments, typically through the activation of electrophilic and nucleophilic partners."@en ; + skos:inScheme ; + skos:prefLabel "cross-coupling reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000202.ttl b/vocabularies/voc4cat/IDs0000xxx/0000202.ttl new file mode 100644 index 00000000..0c59e783 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000202.ttl @@ -0,0 +1,25 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000202 + a skos:Concept ; + dcterms:created "2025-04-01"^^xsd:date ; + dcterms:identifier "0000202"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "C-H activation"@en , + "C-H bond activation"@en , + "carbon-hydrogen activation"@en , + "carbon-hydrogen activation reaction"@en , + "carbon-hydrogen bond activation"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A type of organic reaction in which a stable carbon-hydrogen (C-H) bond is cleaved and replaced with a C-X bond."@en ; + skos:inScheme ; + skos:prefLabel "C-H activation reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000203.ttl b/vocabularies/voc4cat/IDs0000xxx/0000203.ttl new file mode 100644 index 00000000..b555107f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000203.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000203 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000203"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A branch of chemistry studying chemical reactions and processes driven and affected by light and the absorption of photons."@en ; + skos:inScheme ; + skos:prefLabel "photochemistry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000204.ttl b/vocabularies/voc4cat/IDs0000xxx/0000204.ttl new file mode 100644 index 00000000..2a5e8d92 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000204.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000204 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000204"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A catalytic process catalyzed by the presence of biological entities."@en ; + skos:inScheme ; + skos:prefLabel "biocatalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000205.ttl b/vocabularies/voc4cat/IDs0000xxx/0000205.ttl new file mode 100644 index 00000000..6554f4a8 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000205.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000205 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000205"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Epoxidation is the chemical process of converting an alkene into an epoxide, a three-membered cyclic ether, by adding a single oxygen atom across a carbon-carbon double bond."@en ; + skos:inScheme ; + skos:prefLabel "epoxidation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000206.ttl b/vocabularies/voc4cat/IDs0000xxx/0000206.ttl new file mode 100644 index 00000000..88bdd553 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000206.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000206 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000206"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "H2O splitting"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction in which water molecules are dissociated into gaseous hydrogen and oxygen, typically facilitted by catalysts and an external energy source."@en ; + skos:inScheme ; + skos:prefLabel "water splitting"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000207.ttl b/vocabularies/voc4cat/IDs0000xxx/0000207.ttl new file mode 100644 index 00000000..307adb24 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000207.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000207 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000207"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A biocatalytic process performed in the presence of an enzyme."@en ; + skos:inScheme ; + skos:prefLabel "enzyme catalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000208.ttl b/vocabularies/voc4cat/IDs0000xxx/0000208.ttl new file mode 100644 index 00000000..c744d9ca --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000208.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000208 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000208"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A type of catalysis where the rate of a chemical reaction is increased by the addition of a substoichiometric quantity of an organic (non-metallic) compound."@en ; + skos:inScheme ; + skos:prefLabel "organocatalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000209.ttl b/vocabularies/voc4cat/IDs0000xxx/0000209.ttl new file mode 100644 index 00000000..64d27850 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000209.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000209 + a skos:Concept ; + dcterms:created "2024-12-09"^^xsd:date ; + dcterms:identifier "0000209"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007249 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A fuel cell is an electrochemical device that converts the chemical energy of a fuel, often hydrogen, and an oxidizing agent, typically oxygen, into electrical energy, with water and heat as the main byproducts."@en ; + skos:inScheme ; + skos:prefLabel "fuel cell"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000210.ttl b/vocabularies/voc4cat/IDs0000xxx/0000210.ttl new file mode 100644 index 00000000..dcbde09b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000210.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000210 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000210"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A hollow cylindrical tube-like material structure at the nanoscale."@en ; + skos:inScheme ; + skos:prefLabel "nanotube"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000211.ttl b/vocabularies/voc4cat/IDs0000xxx/0000211.ttl new file mode 100644 index 00000000..5d122cc0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000211.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000211 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000211"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The property of a chemical reaction to occur at a specific reactive site on a molecule, leading to the preferential formation of one regiosomer over others."@en ; + skos:inScheme ; + skos:prefLabel "regioselectivity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000212.ttl b/vocabularies/voc4cat/IDs0000xxx/0000212.ttl new file mode 100644 index 00000000..a26dc879 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000212.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000212 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000212"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "is the preference of a chemical reaction to selectively react with one functional group in the presence of other reactive groups, leaving the latter unaffected."@en ; + skos:inScheme ; + skos:prefLabel "chemoselectivity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000213.ttl b/vocabularies/voc4cat/IDs0000xxx/0000213.ttl new file mode 100644 index 00000000..6135cb26 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000213.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000213 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000213"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A one-, two-, or three-, dimensional structure that has at least one dimension in the nanometer scale."@en ; + skos:inScheme ; + skos:prefLabel "nanostructure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000214.ttl b/vocabularies/voc4cat/IDs0000xxx/0000214.ttl new file mode 100644 index 00000000..e29e83f6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000214.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000214 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000214"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The ability of a chemical reaction to differentiate between enantiomers, leading to the preferential formation of one stereoisomer, often controlled by a chiral catalyst or reagent."@en ; + skos:inScheme ; + skos:prefLabel "enantioselectivity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000215.ttl b/vocabularies/voc4cat/IDs0000xxx/0000215.ttl new file mode 100644 index 00000000..f24a1692 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000215.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000215 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000215"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "DFT"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A computational quantum mechanical modeling method used to investigate the electronic structure of atoms, molecules and solids, approximating their energy by using electron density as the key variable rather than wavefunctions."@en ; + skos:inScheme ; + skos:prefLabel "density functional theory"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000216.ttl b/vocabularies/voc4cat/IDs0000xxx/0000216.ttl new file mode 100644 index 00000000..4c7248da --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000216.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000216 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000216"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A catalytic process that facilitates reactions by controlling charge transfer at the electrode-electrolyte interface."@en ; + skos:inScheme ; + skos:prefLabel "electrocatalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000217.ttl b/vocabularies/voc4cat/IDs0000xxx/0000217.ttl new file mode 100644 index 00000000..2b7e310a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000217.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000217 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000217"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Asymmetric catalysis is a catalytic process in which a chiral catalyst directs the formation of a chiral compound, preferentially producing one enantiomer over the other, thereby enhancing enantioselectivity in chemical reactions."@en ; + skos:inScheme ; + skos:prefLabel "asymmetric catalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000218.ttl b/vocabularies/voc4cat/IDs0000xxx/0000218.ttl new file mode 100644 index 00000000..4266a73c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000218.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000218 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000218"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The branch of chemistry that studies the relationship between electrical potential and chemical transformations, focusing on electron transfer processes, particularly redox reactions at electrode interfaces."@en ; + skos:inScheme ; + skos:prefLabel "electrochemistry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000219.ttl b/vocabularies/voc4cat/IDs0000xxx/0000219.ttl new file mode 100644 index 00000000..b2f1f9c4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000219.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000219 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000219"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "heterocyclic compound"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A cyclic compound composed of at least one atom other than carbon in its ring structure."@en ; + skos:inScheme ; + skos:prefLabel "heterocycle"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000220.ttl b/vocabularies/voc4cat/IDs0000xxx/0000220.ttl new file mode 100644 index 00000000..131c4551 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000220.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000220 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000220"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "cyclization"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction in which an acyclic (open-chain) precursor molecule is transformed into a cyclic structure."@en ; + skos:inScheme ; + skos:prefLabel "cyclization reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000221.ttl b/vocabularies/voc4cat/IDs0000xxx/0000221.ttl new file mode 100644 index 00000000..83eff99e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000221.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000221 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000221"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The process of designing and modifying protein structures via genetic or chemical alterations to improve their stability, activity, specificity, and functionality."@en ; + skos:inScheme ; + skos:prefLabel "protein engineering"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000222.ttl b/vocabularies/voc4cat/IDs0000xxx/0000222.ttl new file mode 100644 index 00000000..ed80e64b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000222.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000222 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000222"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "hydroformylation reaction"@en , + "oxo process"@en , + "oxo synthesis"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A catalytic reaction for synthesizing an aldehyde from an alkene, by adding a formyl group (-CHO) and a hydrogen atom to a carbon-carbon double bond."@en ; + skos:inScheme ; + skos:prefLabel "hydroformylation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000223.ttl b/vocabularies/voc4cat/IDs0000xxx/0000223.ttl new file mode 100644 index 00000000..bf044b7c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000223.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000223 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000223"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "C-C coupling"@en , + "carbon-carbon coupling"@en , + "carbon-carbon coupling reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction where a carbon-carbon bond is formed from two carbon-containing fragments."@en ; + skos:inScheme ; + skos:prefLabel "C-C coupling reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000224.ttl b/vocabularies/voc4cat/IDs0000xxx/0000224.ttl new file mode 100644 index 00000000..6210dd85 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000224.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000224 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000224"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "catalytic hydrosilation"@en , + "hydrosilation"@en , + "hydrosilylation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction where a silicon-hydrogen (Si-H) bond is added across an unsaturated bond typically catalyzed by a transition metal catalyst."@en ; + skos:inScheme ; + skos:prefLabel "hydrosilylation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000225.ttl b/vocabularies/voc4cat/IDs0000xxx/0000225.ttl new file mode 100644 index 00000000..eedb1681 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000225.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000225 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000225"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "SAR"@en , + "structure activity relationship"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A study of the correlation between the chemical structure of a molecule, its functional properties and its biological activity."@en ; + skos:inScheme ; + skos:prefLabel "structure-activity relationship"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000226.ttl b/vocabularies/voc4cat/IDs0000xxx/0000226.ttl new file mode 100644 index 00000000..b32f8838 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000226.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000226 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000226"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "HDO"@en , + "hydrodeoxygenation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A catalytic process in which oxygen is removed from oxygenated organic compounds using hydrogen."@en ; + skos:inScheme ; + skos:prefLabel "hydrodeoxygenation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000227.ttl b/vocabularies/voc4cat/IDs0000xxx/0000227.ttl new file mode 100644 index 00000000..45d33d7c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000227.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000227 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000227"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The process by which molecules or particles spontaneously organize into structured, well-defined functional systems, without external stimuli, but driven by local interactions."@en ; + skos:inScheme ; + skos:prefLabel "self-assembly"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000228.ttl b/vocabularies/voc4cat/IDs0000xxx/0000228.ttl new file mode 100644 index 00000000..813e18a2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000228.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000228 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000228"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The property of an asymmetric molecule that makes it non-superposable on its mirror image, resulting in enantiomers with distinct chemical or biological properties."@en ; + skos:inScheme ; + skos:prefLabel "chirality"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000229.ttl b/vocabularies/voc4cat/IDs0000xxx/0000229.ttl new file mode 100644 index 00000000..4b832a93 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000229.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000229 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000229"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical species that contains at least one unpaired valence electron."@en ; + skos:inScheme ; + skos:prefLabel "radical"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000230.ttl b/vocabularies/voc4cat/IDs0000xxx/0000230.ttl new file mode 100644 index 00000000..a3f2f78b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000230.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000230 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000230"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "cascade reaction"@en , + "domino reaction"@en , + "tandem reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A domino reaction is a chemical process of at least two consecutive sub-reactions occurring spontaneously in the same reaction vessel, without the need to add additional reagents, change reaction conditions and isolate intermediates. Each sub-reaction uses the product(s) already formed in the previous steps as reactant(s)."@en ; + skos:inScheme ; + skos:prefLabel "sequential reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000231.ttl b/vocabularies/voc4cat/IDs0000xxx/0000231.ttl new file mode 100644 index 00000000..92184bef --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000231.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000231 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000231"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A natural resource that can be ecologically or artificially replenished at a rate faster than consumed and over a reasonable period on the human time scale."@en ; + skos:inScheme ; + skos:prefLabel "renewable resource"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000232.ttl b/vocabularies/voc4cat/IDs0000xxx/0000232.ttl new file mode 100644 index 00000000..7347855e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000232.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000232 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000232"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A process in which an acid donates protons (protonation or electron withdrawal) or stabilizes reaction intermediates to accelerate a chemical reaction."@en ; + skos:inScheme ; + skos:prefLabel "acid catalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000233.ttl b/vocabularies/voc4cat/IDs0000xxx/0000233.ttl new file mode 100644 index 00000000..1b225985 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000233.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000233 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000233"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A process in which base abstracts protons (deprotonation or electron donation) or stabilizes reaction intermediates to accelerate a chemical reaction."@en ; + skos:inScheme ; + skos:prefLabel "base catalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000234.ttl b/vocabularies/voc4cat/IDs0000xxx/0000234.ttl new file mode 100644 index 00000000..9a163633 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000234.ttl @@ -0,0 +1,25 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000234 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000234"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "micro-channel reactor"@en , + "micro-reactor"@en , + "micro-structured reactor"@en , + "microchannel reactor"@en , + "microstructured reactor"@en ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A small-scale chemical reactor, with lateral dimensions in the submillimeter range, typically employing microchannels to facilitate reactions within a well-controlled confined space."@en ; + skos:inScheme ; + skos:prefLabel "microreactor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000235.ttl b/vocabularies/voc4cat/IDs0000xxx/0000235.ttl new file mode 100644 index 00000000..0039fac2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000235.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000235 + a skos:Concept ; + dcterms:created "2025-04-02"^^xsd:date ; + dcterms:identifier "0000235"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The interaction between at least two constituent parts (e.g., substances, processes, chemical species) to produce a combined effect greater than the sum of their individual effects, resulting in a more significant outcome than each part could achieve alone."@en ; + skos:inScheme ; + skos:prefLabel "synergistic effect"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000236.ttl b/vocabularies/voc4cat/IDs0000xxx/0000236.ttl new file mode 100644 index 00000000..63cf5632 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000236.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000236 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000236"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "OER"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction of generating molecular oxygen in electrochemistry."@en ; + skos:inScheme ; + skos:prefLabel "oxygen evolution reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000237.ttl b/vocabularies/voc4cat/IDs0000xxx/0000237.ttl new file mode 100644 index 00000000..979ae8f6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000237.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000237 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000237"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "ORR"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The reduction half reaction where oxygen is reduced to water or hydrogen peroxide. In electrochemistry it takes place in the cathode."@en ; + skos:inScheme ; + skos:prefLabel "oxygen reduction reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000238.ttl b/vocabularies/voc4cat/IDs0000xxx/0000238.ttl new file mode 100644 index 00000000..6c9ea39c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000238.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000238 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000238"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical processes occurring at surfaces and interfaces."@en ; + skos:inScheme ; + skos:prefLabel "surface chemistry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000239.ttl b/vocabularies/voc4cat/IDs0000xxx/0000239.ttl new file mode 100644 index 00000000..8a8292bd --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000239.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000239 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000239"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "enantioselective synthesis"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical synthesis process yielding stereoisomeric (enantiomeric or diastereomeric) products in different rations."@en ; + skos:inScheme ; + skos:prefLabel "asymmetric synthesis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000240.ttl b/vocabularies/voc4cat/IDs0000xxx/0000240.ttl new file mode 100644 index 00000000..b2b78839 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000240.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000240 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000240"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Molecules with the same formula and atomic connectivity, but with different spatial arrangement of atoms."@en ; + skos:inScheme ; + skos:prefLabel "stereoisomer"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000241.ttl b/vocabularies/voc4cat/IDs0000xxx/0000241.ttl new file mode 100644 index 00000000..85bbd39b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000241.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000241 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000241"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "HER"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction of generating molecular hydrogen in electrochemistry."@en ; + skos:inScheme ; + skos:prefLabel "hydrogen evolution reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000242.ttl b/vocabularies/voc4cat/IDs0000xxx/0000242.ttl new file mode 100644 index 00000000..2768f286 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000242.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000242 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000242"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "amination reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The chemical reaction of adding an amino (-NH2) into a molecule to generate an amine."@en ; + skos:inScheme ; + skos:prefLabel "amination"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000243.ttl b/vocabularies/voc4cat/IDs0000xxx/0000243.ttl new file mode 100644 index 00000000..8dd3f415 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000243.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000243 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000243"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "cycloaddition reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction where two or more unsaturated molecules unite to form a ring-shaped (cyclic) compound."@en ; + skos:inScheme ; + skos:prefLabel "cycloaddition"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000244.ttl b/vocabularies/voc4cat/IDs0000xxx/0000244.ttl new file mode 100644 index 00000000..ab35628f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000244.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000244 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000244"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "hydrogen transfer"@en , + "transfer hydrogenation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction in which hydrogen (not directly from molecular hydrogen) is transferred to a molecule."@en ; + skos:inScheme ; + skos:prefLabel "transfer hydrogenation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000245.ttl b/vocabularies/voc4cat/IDs0000xxx/0000245.ttl new file mode 100644 index 00000000..18de29d9 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000245.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000245 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000245"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "metathesis reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction in which double bonds between atoms in two molecules are rearranged, yielding products formed by the exchange of molecular fragments between the reactants while keeping the number of double bonds the same."@en ; + skos:inScheme ; + skos:prefLabel "metathesis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000246.ttl b/vocabularies/voc4cat/IDs0000xxx/0000246.ttl new file mode 100644 index 00000000..f1e8a731 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000246.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000246 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000246"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The application of materials with dimensions in the nanoscale, to catalyze chemical reactions."@en ; + skos:inScheme ; + skos:prefLabel "nanocatalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000247.ttl b/vocabularies/voc4cat/IDs0000xxx/0000247.ttl new file mode 100644 index 00000000..08d01d85 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000247.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000247 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000247"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "carbonylation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction in which a carbonyl group (C=O) is introduced into a molecule, typically through the addition of carbon monoxide (CO) to a substrate."@en ; + skos:inScheme ; + skos:prefLabel "carbonylation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000248.ttl b/vocabularies/voc4cat/IDs0000xxx/0000248.ttl new file mode 100644 index 00000000..e68fd877 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000248.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000248 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000248"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The modification of chemical compounds by biological entities (e.g., enzymes) to yield more biologically active products."@en ; + skos:inScheme ; + skos:prefLabel "biotransformation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000249.ttl b/vocabularies/voc4cat/IDs0000xxx/0000249.ttl new file mode 100644 index 00000000..27bae86c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000249.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000249 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000249"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A process of separating two enantiomers of a chiral compound in a racemic mixture based on their different reaction rates in a chemical reaction."@en ; + skos:inScheme ; + skos:prefLabel "kinetic resolution"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000250.ttl b/vocabularies/voc4cat/IDs0000xxx/0000250.ttl new file mode 100644 index 00000000..9ec517ae --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000250.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000250 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000250"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "water oxidation reaction"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The reaction in which water is converted (usually electrochemically or photocatalytically) into oxygen and protons."@en ; + skos:inScheme ; + skos:prefLabel "water oxidation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000251.ttl b/vocabularies/voc4cat/IDs0000xxx/0000251.ttl new file mode 100644 index 00000000..71fbf8eb --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000251.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000251 + a skos:Concept ; + dcterms:created "2025-04-10"^^xsd:date ; + dcterms:identifier "0000251"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "MCR"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A synthesis process where three or more compounds react in the same reactor (one-pot reaction) to form a structurally complex single product that incorporates most of the atoms of the starting compounds."@en ; + skos:inScheme ; + skos:prefLabel "multicomponent reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000252.ttl b/vocabularies/voc4cat/IDs0000xxx/0000252.ttl new file mode 100644 index 00000000..dd3e6b4e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000252.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000252 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000252"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "arylation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction in which one or more aryl groups are added into a molecule, commonly facilitated by a catalyst."@en ; + skos:inScheme ; + skos:prefLabel "arylation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000253.ttl b/vocabularies/voc4cat/IDs0000xxx/0000253.ttl new file mode 100644 index 00000000..faaf5c25 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000253.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000253 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000253"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "hydrogenolysis reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction which involves the cleavage of a chemical bond in the presence of hydrogen, often performed catalytically."@en ; + skos:inScheme ; + skos:prefLabel "hydrogenolysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000254.ttl b/vocabularies/voc4cat/IDs0000xxx/0000254.ttl new file mode 100644 index 00000000..8f0dce62 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000254.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000254 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000254"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000194 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A material which directs and accelerates an electrochemical reaction while remaining unchanged in the process."@en ; + skos:inScheme ; + skos:prefLabel "electrocatalyst"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000255.ttl b/vocabularies/voc4cat/IDs0000xxx/0000255.ttl new file mode 100644 index 00000000..086cb170 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000255.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000255 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000255"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-5898-1820 David Linke edited the definition"@en ; + skos:definition "The characteristics of a material or substance that determine how it interacts or responds to a magnetic field."@en ; + skos:inScheme ; + skos:prefLabel "magnetic property"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000256.ttl b/vocabularies/voc4cat/IDs0000xxx/0000256.ttl new file mode 100644 index 00000000..74d17d19 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000256.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000256 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000256"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A process that utilizes physical, chemical, or biological processes to turn organic substances, like plant material and animal waste, into high-value products and energy forms (e.g., biofuels)."@en ; + skos:inScheme ; + skos:prefLabel "biomass conversion"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000257.ttl b/vocabularies/voc4cat/IDs0000xxx/0000257.ttl new file mode 100644 index 00000000..53ce1312 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000257.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000257 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000257"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The effects a solvent exerts on chemical reactions and molecular properties."@en ; + skos:inScheme ; + skos:prefLabel "solvent effect"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000258.ttl b/vocabularies/voc4cat/IDs0000xxx/0000258.ttl new file mode 100644 index 00000000..14a097a0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000258.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000258 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000258"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "hydroxylation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The addition of a hydroxyl group (-OH) to a molecule, typically by replacing a hydrogen atom."@en ; + skos:inScheme ; + skos:prefLabel "hydroxylation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000259.ttl b/vocabularies/voc4cat/IDs0000xxx/0000259.ttl new file mode 100644 index 00000000..9acc95e4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000259.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000259 + a skos:Concept ; + dcterms:created "2025-04-11"^^xsd:date ; + dcterms:identifier "0000259"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "CO hydrogenation reaction"@en , + "carbon dioxide hydrogenation"@en , + "carbon dioxide hydrogenation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The reaction of carbon dioxide (CO2) with molecular hydrogen (H2) to produce value-added hydrocarbons or alcohols."@en ; + skos:inScheme ; + skos:prefLabel "CO2 hydrogenation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000260.ttl b/vocabularies/voc4cat/IDs0000xxx/0000260.ttl new file mode 100644 index 00000000..bbd83d72 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000260.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000260 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000260"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "hydrogenation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction of molecular hydrogen (H2) and another chemical species, typically facilitated by a catalyst."@en ; + skos:inScheme ; + skos:prefLabel "hydrogenation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000261.ttl b/vocabularies/voc4cat/IDs0000xxx/0000261.ttl new file mode 100644 index 00000000..ee16cfb1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000261.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000261 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000261"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "selective oxidation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The targeted oxidation of a specific bond or functional group in a molecule leaving other sites unaffected, often directed by a catalyst."@en ; + skos:inScheme ; + skos:prefLabel "selective oxidation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000262.ttl b/vocabularies/voc4cat/IDs0000xxx/0000262.ttl new file mode 100644 index 00000000..16bd1e9a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000262.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000262 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000262"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "reductive amination reaction"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The typically catalyzed reduction of carbonyl groups to form primary and secondary amines, through an imine intermediate."@en ; + skos:inScheme ; + skos:prefLabel "reductive amination"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000263.ttl b/vocabularies/voc4cat/IDs0000xxx/0000263.ttl new file mode 100644 index 00000000..2d097f3f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000263.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000263 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000263"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The tendency of a reaction to yield one stereoisomer preferentially over another."@en ; + skos:inScheme ; + skos:prefLabel "stereoselectivity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000264.ttl b/vocabularies/voc4cat/IDs0000xxx/0000264.ttl new file mode 100644 index 00000000..3d023cb1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000264.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000264 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000264"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A field of chemistry focused in solving chemical problems through the use of mathematical modelling, chemical theory and computational techniques."@en ; + skos:inScheme ; + skos:prefLabel "computational chemistry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000265.ttl b/vocabularies/voc4cat/IDs0000xxx/0000265.ttl new file mode 100644 index 00000000..9ac1c8cd --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000265.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000265 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000265"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The application of analytical techniques (e.g., spectroscopy and microscopy) to examine the composition, structure, and properties of surfaces."@en ; + skos:inScheme ; + skos:prefLabel "surface analysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000266.ttl b/vocabularies/voc4cat/IDs0000xxx/0000266.ttl new file mode 100644 index 00000000..280d0bc4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000266.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000266 + a skos:Concept ; + dcterms:created "2025-04-11"^^xsd:date ; + dcterms:identifier "0000266"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "DE"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A process of accelerating natural evolution of biological molecules (e.g., proteins, enzymes, nucleic acids) and systems by random mutagenesis and selective screening leading to tailored properties and functionality."@en ; + skos:inScheme ; + skos:prefLabel "directed evolution"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000267.ttl b/vocabularies/voc4cat/IDs0000xxx/0000267.ttl new file mode 100644 index 00000000..818d3427 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000267.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000267 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000267"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A single catalyst, integrating two distinct active sites with complementary functionalities, that participate synergistically in a chemical reaction."@en ; + skos:inScheme ; + skos:prefLabel "bifunctional catalyst"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000268.ttl b/vocabularies/voc4cat/IDs0000xxx/0000268.ttl new file mode 100644 index 00000000..0e44f428 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000268.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000268 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000268"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "syngas"@en ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A gas mixture comprised primarily of hydrogen (H2) and carbon monoxide (CO) in various ratios."@en ; + skos:inScheme ; + skos:prefLabel "synthesis gas"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000269.ttl b/vocabularies/voc4cat/IDs0000xxx/0000269.ttl new file mode 100644 index 00000000..b597505c --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000269.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000269 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000269"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "continuous flow chemistry"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction that is performed in a continuous flow stream of reagents."@en ; + skos:inScheme ; + skos:prefLabel "flow chemistry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000270.ttl b/vocabularies/voc4cat/IDs0000xxx/0000270.ttl new file mode 100644 index 00000000..f11ef8fd --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000270.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000270 + a skos:Concept ; + dcterms:created "2025-04-11"^^xsd:date ; + dcterms:identifier "0000270"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "porous media"@en ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A solid substance featuring pores, the size, arrangement and shape of which govern the material’s permeability, adsorption properties, and mechanical properties."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000198 , + voc4cat:0000271 , + voc4cat:0000272 ; + skos:prefLabel "porous material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000271.ttl b/vocabularies/voc4cat/IDs0000xxx/0000271.ttl new file mode 100644 index 00000000..3b2db46a --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000271.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000271 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000271"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000270 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A porous solid material containing pores with width smaller than 2nm."@en ; + skos:inScheme ; + skos:prefLabel "microporous material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000272.ttl b/vocabularies/voc4cat/IDs0000xxx/0000272.ttl new file mode 100644 index 00000000..d2f1542b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000272.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000272 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000272"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000270 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A porous solid material containing pores with width larger than 50nm"@en ; + skos:inScheme ; + skos:prefLabel "macroporous material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000273.ttl b/vocabularies/voc4cat/IDs0000xxx/0000273.ttl new file mode 100644 index 00000000..fd930b81 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000273.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000273 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000273"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A technique of synthesizing substances from high-temperature and high-pressure aqueous solutions, typically performed in a sealed vessel."@en ; + skos:inScheme ; + skos:prefLabel "hydrothermal synthesis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000274.ttl b/vocabularies/voc4cat/IDs0000xxx/0000274.ttl new file mode 100644 index 00000000..caad8790 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000274.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000274 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000274"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The ability of a chemical action to differentiate between diastereoisomers, leading to the preferential formation of one diastereoisomers over another."@en ; + skos:inScheme ; + skos:prefLabel "diastereoselectivity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000275.ttl b/vocabularies/voc4cat/IDs0000xxx/0000275.ttl new file mode 100644 index 00000000..57b31896 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000275.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000275 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000275"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The study of water’s properties and its interactions with other substances in chemical reactions."@en ; + skos:inScheme ; + skos:prefLabel "water chemistry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000276.ttl b/vocabularies/voc4cat/IDs0000xxx/0000276.ttl new file mode 100644 index 00000000..53eb0483 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000276.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000276 + a skos:Concept ; + dcterms:created "2025-04-15"^^xsd:date ; + dcterms:identifier "0000276"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A carbon-carbon bond-forming reaction between the carbonyl groups of two compounds (typically aldehydes or ketones). A carbonyl group of one compound and the α-position of another carbonyl molecule react to form a β-hydroxycarbonyl compound."@en ; + skos:inScheme ; + skos:prefLabel "aldol reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000277.ttl b/vocabularies/voc4cat/IDs0000xxx/0000277.ttl new file mode 100644 index 00000000..70fed669 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000277.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000277 + a skos:Concept ; + dcterms:created "2025-04-15"^^xsd:date ; + dcterms:identifier "0000277"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "carbon-hydrogen functionalization"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The process of introducing new functional groups by cleaving and modifying a carbon-hydrogen (C-H) bond into C-X (X=heteroatom or functional group)."@en ; + skos:inScheme ; + skos:prefLabel "C-H functionalization"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000278.ttl b/vocabularies/voc4cat/IDs0000xxx/0000278.ttl new file mode 100644 index 00000000..f84d4fd3 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000278.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000278 + a skos:Concept ; + dcterms:created "2025-04-15"^^xsd:date ; + dcterms:identifier "0000278"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "Michael addition reaction"@en , + "Michael reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A C-C (or C-X) bond forming reaction in which a nucleophile (typically an enolate), reacts with an α,β-unsaturated carbonyl compound."@en ; + skos:inScheme ; + skos:prefLabel "Michael addition"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000279.ttl b/vocabularies/voc4cat/IDs0000xxx/0000279.ttl new file mode 100644 index 00000000..6f188dfe --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000279.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000279 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000279"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "OV"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A type of a structural point defect in a crystal lattice where an oxygen atom is missing from its expected position."@en ; + skos:inScheme ; + skos:prefLabel "oxygen vacancy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000280.ttl b/vocabularies/voc4cat/IDs0000xxx/0000280.ttl new file mode 100644 index 00000000..7642d7bc --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000280.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000280 + a skos:Concept ; + dcterms:created "2025-04-15"^^xsd:date ; + dcterms:identifier "0000280"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A catalytic chemical reaction in which a mixture of carbon monoxide (CO) and hydrogen (H2), is converted via a chain-growth mechanism into long-chain hydrocarbons (e.g., alkanes, alkenes or alcohols)—typically using iron or cobalt catalysts under moderate to high pressures and temperatures."@en ; + skos:inScheme ; + skos:prefLabel "Fischer-Tropsch synthesis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000281.ttl b/vocabularies/voc4cat/IDs0000xxx/0000281.ttl new file mode 100644 index 00000000..6b5504f5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000281.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000281 + a skos:Concept ; + dcterms:created "2025-04-15"^^xsd:date ; + dcterms:identifier "0000281"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The industrial implementation of Fischer–Tropsch synthesis, encompassing in addition the associated engineering, reactor design, feedstock preparation, heat management, and product upgrading steps required for large-scale operation."@en ; + skos:inScheme ; + skos:prefLabel "Fischer-Tropsch process"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000282.ttl b/vocabularies/voc4cat/IDs0000xxx/0000282.ttl new file mode 100644 index 00000000..02669be8 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000282.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000282 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000282"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "density functional theory calculation"@en ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The application of density functional theory (DFT) to compute the electonic structure of atoms, molecules and solids."@en ; + skos:inScheme ; + skos:prefLabel "DFT calculation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000283.ttl b/vocabularies/voc4cat/IDs0000xxx/0000283.ttl new file mode 100644 index 00000000..2b62d41b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000283.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000283 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000283"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The relocation of an electron from one donor chemical species (atom, ion, or molecule) to another chemical entity (acceptor) changing their oxidation states in the process."@en ; + skos:inScheme ; + skos:prefLabel "electron transfer"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000284.ttl b/vocabularies/voc4cat/IDs0000xxx/0000284.ttl new file mode 100644 index 00000000..6f4ac806 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000284.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000284 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000284"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A ring-shaped compound that contains at least one nitrogen atom as part of its cyclic structure along with carbon atoms."@en ; + skos:inScheme ; + skos:prefLabel "nitrogen heterocycle"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000285.ttl b/vocabularies/voc4cat/IDs0000xxx/0000285.ttl new file mode 100644 index 00000000..01146d50 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000285.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000285 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000285"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The chemical or enzymatic incorporation of carbon dioxide into organic compounds (typically carbohydrates)."@en ; + skos:inScheme ; + skos:prefLabel "carbon dioxide fixation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000286.ttl b/vocabularies/voc4cat/IDs0000xxx/0000286.ttl new file mode 100644 index 00000000..f38e1011 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000286.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000286 + a skos:Concept ; + dcterms:created "2025-04-15"^^xsd:date ; + dcterms:identifier "0000286"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "XAS"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0009-0004-3786-0773 Carla Terboven added children"@en ; + skos:definition "An element- and orbital- specific analytical technique that probes the energy-dependent absorption of X-rays from synchrotron radiation, to study the electronic and geometric properties of materials."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0008081 , + voc4cat:0008082 ; + skos:prefLabel "X-ray absorption spectroscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000287.ttl b/vocabularies/voc4cat/IDs0000xxx/0000287.ttl new file mode 100644 index 00000000..6dc94b3f --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000287.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000287 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000287"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "An ion or molecule that binds to a central atom through electron pair donation, to form a coordination complex compound."@en ; + skos:inScheme ; + skos:prefLabel "ligand"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000288.ttl b/vocabularies/voc4cat/IDs0000xxx/0000288.ttl new file mode 100644 index 00000000..02193082 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000288.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000288 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000288"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A microscopy technique that uses an electron beam as a source of sample illumination."@en ; + skos:inScheme ; + skos:prefLabel "electron microscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000289.ttl b/vocabularies/voc4cat/IDs0000xxx/0000289.ttl new file mode 100644 index 00000000..e004d89e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000289.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000289 + a skos:Concept ; + dcterms:created "2025-04-15"^^xsd:date ; + dcterms:identifier "0000289"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "CO oxidation reaction"@en , + "carbon monoxide oxidation"@en , + "carbon monoxide oxidation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The reaction in which carbon monoxide (CO) is converted to carbon dioxide (CO₂) through interaction with an oxidizing agent, typically oxygen (O₂)."@en ; + skos:inScheme ; + skos:prefLabel "CO oxidation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000290.ttl b/vocabularies/voc4cat/IDs0000xxx/0000290.ttl new file mode 100644 index 00000000..e58a585b --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000290.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000290 + a skos:Concept ; + dcterms:created "2025-04-15"^^xsd:date ; + dcterms:identifier "0000290"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "CO2 reduction reaction"@en , + "carbon dioxide reduction"@en , + "carbon dioxide reduction reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The chemical reaction in which carbon dioxide (CO₂) is converted into value-added chemicals or fuels through electron and proton transfer, typically facilitated by a catalyst under electrochemical, photochemical, or thermochemical conditions."@en ; + skos:inScheme ; + skos:prefLabel "CO2 reduction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000291.ttl b/vocabularies/voc4cat/IDs0000xxx/0000291.ttl new file mode 100644 index 00000000..cdbaa620 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000291.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000291 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000291"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The generation of molecular hydrogen (H2) through chemical transformations."@en ; + skos:inScheme ; + skos:prefLabel "hydrogen production"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000292.ttl b/vocabularies/voc4cat/IDs0000xxx/0000292.ttl new file mode 100644 index 00000000..7f99b017 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000292.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000292 + a skos:Concept ; + dcterms:created "2025-04-15"^^xsd:date ; + dcterms:identifier "0000292"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0001-6434-6623 Aleksandr Fedorov defined the resource"@en ; + skos:definition "An industrial term that covers the Fischer-Tropsch process and all the systems, equipment, and engineering methods used to apply it at commercial scale. This includes reactors, control systems, and plant designs used to produce synthetic fuels using the Fischer-Tropsch synthesis."@en ; + skos:inScheme ; + skos:prefLabel "Fischer-Tropsch technology"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000293.ttl b/vocabularies/voc4cat/IDs0000xxx/0000293.ttl new file mode 100644 index 00000000..650fbe03 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000293.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000293 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000293"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A particle with dimensions in the nanoscale range."@en ; + skos:inScheme ; + skos:prefLabel "nanoparticle"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000294.ttl b/vocabularies/voc4cat/IDs0000xxx/0000294.ttl new file mode 100644 index 00000000..f6628287 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000294.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000294 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000294"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A catalytic process where the catalytic species is present in the same physical phase as the reactants, typically in a sinlge liquid phase."@en ; + skos:inScheme ; + skos:prefLabel "homogeneous catalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000295.ttl b/vocabularies/voc4cat/IDs0000xxx/0000295.ttl new file mode 100644 index 00000000..135d7411 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000295.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000295 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000295"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-2367-1988 Norbert Kockmann defined the resource"@en ; + skos:definition "Organic mass of biological origin."@en ; + skos:inScheme ; + skos:prefLabel "biomass"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000296.ttl b/vocabularies/voc4cat/IDs0000xxx/0000296.ttl new file mode 100644 index 00000000..be86fcb8 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000296.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000296 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000296"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "Acceleration of a chemical reaction induced by the presence of material that is chemically unchanged at the end of the reaction."@en ; + skos:inScheme ; + skos:prefLabel "catalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000297.ttl b/vocabularies/voc4cat/IDs0000xxx/0000297.ttl new file mode 100644 index 00000000..91185643 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000297.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000297 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000297"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "dehydrogenation reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction that involves the removal of two or more hydrogen atoms from a molecule."@en ; + skos:inScheme ; + skos:prefLabel "dehydrogenation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000298.ttl b/vocabularies/voc4cat/IDs0000xxx/0000298.ttl new file mode 100644 index 00000000..45326e65 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000298.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000298 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000298"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The study and characterization of the temporal progression of physical and (bio-)chemical processes, with particular emphasis on the rates and mechanisms by which chemical transformations occur."@en ; + skos:inScheme ; + skos:prefLabel "kinetics"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000299.ttl b/vocabularies/voc4cat/IDs0000xxx/0000299.ttl new file mode 100644 index 00000000..689d5915 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000299.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000299 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000299"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-2367-1988 Norbert Kockmann defined the resource"@en ; + skos:definition "Measure of the acidic strength of a solution."@en ; + skos:inScheme ; + skos:prefLabel "acidity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000300.ttl b/vocabularies/voc4cat/IDs0000xxx/0000300.ttl new file mode 100644 index 00000000..308ed7db --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000300.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000300 + a skos:Concept ; + dcterms:created "2025-04-16"^^xsd:date ; + dcterms:identifier "0000300"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-2367-1988 Norbert Kockmann defined the resource"@en ; + skos:definition "Mixture of metals with certain (often improved) mechanical, chemical, electrical, magnetic or other properties."@en ; + skos:inScheme ; + skos:prefLabel "alloy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000301.ttl b/vocabularies/voc4cat/IDs0000xxx/0000301.ttl new file mode 100644 index 00000000..0131b32e --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000301.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000301 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000301"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A Lewis acid is a molecular entity that functions as an electron-pair acceptor, forming a coordinate covalent bond with a Lewis base through interaction with its lone electron pair."@en ; + skos:inScheme ; + skos:prefLabel "Lewis acid"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000302.ttl b/vocabularies/voc4cat/IDs0000xxx/0000302.ttl new file mode 100644 index 00000000..da12ad47 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000302.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000302 + a skos:Concept ; + dcterms:created "2025-04-16"^^xsd:date ; + dcterms:identifier "0000302"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "isomerisation reaction"@en , + "isomerization"@en , + "isomerization reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction in which the main product is an isomer of the main reactant, entailing a change in molecular structure without altering the overall molecular composition."@en ; + skos:inScheme ; + skos:prefLabel "isomerisation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000303.ttl b/vocabularies/voc4cat/IDs0000xxx/0000303.ttl new file mode 100644 index 00000000..b9efbfc6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000303.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000303 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000303"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical reaction where one or more alkyl groups is introduced into a molecular structure via covalent bond formation."@en ; + skos:inScheme ; + skos:prefLabel "alkylation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000304.ttl b/vocabularies/voc4cat/IDs0000xxx/0000304.ttl new file mode 100644 index 00000000..08a4fadc --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000304.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000304 + a skos:Concept ; + dcterms:created "2025-04-16"^^xsd:date ; + dcterms:identifier "0000304"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "polymerisation reaction"@en , + "polymerization"@en , + "polymerization reaction"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A process in which low molecular weight monomers (of the same or different kind) are combined forming a long-chain or three-dimensional, high molecular weight polymer molecule."@en ; + skos:inScheme ; + skos:prefLabel "polymerisation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000305.ttl b/vocabularies/voc4cat/IDs0000xxx/0000305.ttl new file mode 100644 index 00000000..bc8e0d68 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000305.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000305 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000305"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "The quality of being free from change or variation or not taking part in chemical change."@en ; + skos:inScheme ; + skos:prefLabel "stability"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000306.ttl b/vocabularies/voc4cat/IDs0000xxx/0000306.ttl new file mode 100644 index 00000000..83c87481 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000306.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000306 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000306"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "hydrolysis reaction"@en ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A solvolysis reaction where the solvent material is water."@en ; + skos:inScheme ; + skos:prefLabel "hydrolysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000307.ttl b/vocabularies/voc4cat/IDs0000xxx/0000307.ttl new file mode 100644 index 00000000..ae24c4d2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000307.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000307 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000307"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "POM"@en ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "An anionic metal-oxygen cluster composed of early transition metals in high oxidation states, interconnected by shared oxygen atoms to form a closed 3-dimensional framework."@en ; + skos:inScheme ; + skos:prefLabel "polyoxometalate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000308.ttl b/vocabularies/voc4cat/IDs0000xxx/0000308.ttl new file mode 100644 index 00000000..36b47671 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000308.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000308 + a skos:Concept ; + dcterms:created "2025-04-16"^^xsd:date ; + dcterms:identifier "0000308"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource, 0000-0002-2367-1988 Norbert Kockmann defined the resource"@en ; + skos:definition "Measure of the basic strength from OH- ions of a solution."@en ; + skos:inScheme ; + skos:prefLabel "basicity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0000xxx/0000309.ttl b/vocabularies/voc4cat/IDs0000xxx/0000309.ttl new file mode 100644 index 00000000..84ecf2c1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0000xxx/0000309.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0000309 + a skos:Concept ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0000309"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A chemical element in the d-block of the periodic table with a partially filled d-orbital."@en ; + skos:inScheme ; + skos:prefLabel "transition metal"@en ; +. diff --git a/vocabularies/voc4cat/IDs0001xxx/0001900.ttl b/vocabularies/voc4cat/IDs0001xxx/0001900.ttl new file mode 100644 index 00000000..1a0a8097 --- /dev/null +++ b/vocabularies/voc4cat/IDs0001xxx/0001900.ttl @@ -0,0 +1,40 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0001900 + a skos:Collection ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0001900"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:isDefinedBy ; + rdfs:seeAlso ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the resource"@en ; + skos:definition "A collection of concepts referring to material characterization techniques and methods to evaluate their efficiency in photocatalysis."@en ; + skos:inScheme ; + skos:member + voc4cat:0000067 , + voc4cat:0000068 , + voc4cat:0000069 , + voc4cat:0000070 , + voc4cat:0000071 , + voc4cat:0000072 , + voc4cat:0000073 , + voc4cat:0000074 , + voc4cat:0000075 , + voc4cat:0000076 , + voc4cat:0000077 , + voc4cat:0000078 , + voc4cat:0000079 , + voc4cat:0000080 , + voc4cat:0000081 , + voc4cat:0000082 , + voc4cat:0000083 , + voc4cat:0000130 , + voc4cat:0000137 , + voc4cat:0000141 ; + skos:prefLabel "Characterization and evaluation techniques"@en ; +. diff --git a/vocabularies/voc4cat/IDs0001xxx/0001901.ttl b/vocabularies/voc4cat/IDs0001xxx/0001901.ttl new file mode 100644 index 00000000..a8f34e9e --- /dev/null +++ b/vocabularies/voc4cat/IDs0001xxx/0001901.ttl @@ -0,0 +1,196 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0001901 + a skos:Collection ; + dcterms:created "2023-08-11"^^xsd:date ; + dcterms:identifier "0001901"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:isDefinedBy ; + rdfs:seeAlso ; + skos:changeNote "0000-0002-6242-2167 Nikolaos G. Moustakas created the collection, 0000-0002-5898-1820 David Linke updated members"@en ; + skos:definition "A collection of concepts referring to photocatalysis."@en ; + skos:inScheme ; + skos:member + voc4cat:0000001 , + voc4cat:0000002 , + voc4cat:0000003 , + voc4cat:0000004 , + voc4cat:0000005 , + voc4cat:0000006 , + voc4cat:0000007 , + voc4cat:0000008 , + voc4cat:0000009 , + voc4cat:0000010 , + voc4cat:0000011 , + voc4cat:0000012 , + voc4cat:0000013 , + voc4cat:0000014 , + voc4cat:0000015 , + voc4cat:0000017 , + voc4cat:0000018 , + voc4cat:0000020 , + voc4cat:0000021 , + voc4cat:0000022 , + voc4cat:0000023 , + voc4cat:0000024 , + voc4cat:0000025 , + voc4cat:0000026 , + voc4cat:0000027 , + voc4cat:0000028 , + voc4cat:0000029 , + voc4cat:0000030 , + voc4cat:0000031 , + voc4cat:0000032 , + voc4cat:0000033 , + voc4cat:0000034 , + voc4cat:0000035 , + voc4cat:0000036 , + voc4cat:0000037 , + voc4cat:0000038 , + voc4cat:0000039 , + voc4cat:0000040 , + voc4cat:0000041 , + voc4cat:0000042 , + voc4cat:0000043 , + voc4cat:0000044 , + voc4cat:0000045 , + voc4cat:0000046 , + voc4cat:0000047 , + voc4cat:0000048 , + voc4cat:0000049 , + voc4cat:0000050 , + voc4cat:0000051 , + voc4cat:0000052 , + voc4cat:0000053 , + voc4cat:0000054 , + voc4cat:0000055 , + voc4cat:0000056 , + voc4cat:0000057 , + voc4cat:0000058 , + voc4cat:0000059 , + voc4cat:0000060 , + voc4cat:0000061 , + voc4cat:0000062 , + voc4cat:0000063 , + voc4cat:0000064 , + voc4cat:0000065 , + voc4cat:0000066 , + voc4cat:0000067 , + voc4cat:0000068 , + voc4cat:0000069 , + voc4cat:0000070 , + voc4cat:0000071 , + voc4cat:0000072 , + voc4cat:0000073 , + voc4cat:0000074 , + voc4cat:0000075 , + voc4cat:0000076 , + voc4cat:0000077 , + voc4cat:0000078 , + voc4cat:0000079 , + voc4cat:0000080 , + voc4cat:0000081 , + voc4cat:0000082 , + voc4cat:0000083 , + voc4cat:0000084 , + voc4cat:0000085 , + voc4cat:0000086 , + voc4cat:0000087 , + voc4cat:0000088 , + voc4cat:0000089 , + voc4cat:0000090 , + voc4cat:0000091 , + voc4cat:0000092 , + voc4cat:0000093 , + voc4cat:0000094 , + voc4cat:0000095 , + voc4cat:0000096 , + voc4cat:0000097 , + voc4cat:0000098 , + voc4cat:0000099 , + voc4cat:0000100 , + voc4cat:0000101 , + voc4cat:0000102 , + voc4cat:0000103 , + voc4cat:0000104 , + voc4cat:0000105 , + voc4cat:0000106 , + voc4cat:0000107 , + voc4cat:0000108 , + voc4cat:0000109 , + voc4cat:0000110 , + voc4cat:0000111 , + voc4cat:0000112 , + voc4cat:0000113 , + voc4cat:0000114 , + voc4cat:0000115 , + voc4cat:0000116 , + voc4cat:0000117 , + voc4cat:0000118 , + voc4cat:0000119 , + voc4cat:0000120 , + voc4cat:0000121 , + voc4cat:0000122 , + voc4cat:0000123 , + voc4cat:0000124 , + voc4cat:0000126 , + voc4cat:0000127 , + voc4cat:0000128 , + voc4cat:0000129 , + voc4cat:0000130 , + voc4cat:0000131 , + voc4cat:0000132 , + voc4cat:0000133 , + voc4cat:0000134 , + voc4cat:0000135 , + voc4cat:0000136 , + voc4cat:0000137 , + voc4cat:0000138 , + voc4cat:0000139 , + voc4cat:0000140 , + voc4cat:0000141 , + voc4cat:0000142 , + voc4cat:0000143 , + voc4cat:0000144 , + voc4cat:0000145 , + voc4cat:0000146 , + voc4cat:0000147 , + voc4cat:0000148 , + voc4cat:0000149 , + voc4cat:0000150 , + voc4cat:0000151 , + voc4cat:0000152 , + voc4cat:0000153 , + voc4cat:0000154 , + voc4cat:0000155 , + voc4cat:0000156 , + voc4cat:0000157 , + voc4cat:0000158 , + voc4cat:0000159 , + voc4cat:0000160 , + voc4cat:0000161 , + voc4cat:0000162 , + voc4cat:0000163 , + voc4cat:0000164 , + voc4cat:0000165 , + voc4cat:0000166 , + voc4cat:0000167 , + voc4cat:0000168 , + voc4cat:0000169 , + voc4cat:0000170 , + voc4cat:0000171 , + voc4cat:0000172 , + voc4cat:0000173 , + voc4cat:0000174 , + voc4cat:0000175 , + voc4cat:0000176 , + voc4cat:0000177 , + voc4cat:0000178 , + voc4cat:0000179 ; + skos:prefLabel "Photocatalysis collection"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005001.ttl b/vocabularies/voc4cat/IDs0005xxx/0005001.ttl new file mode 100644 index 00000000..84c056f2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005001.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005001 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0005001"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A measure to quantify how fast and selective a chemical conversion occurs in a reactor. A chemical conversion may include multiple reactions."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000125 , + voc4cat:0005004 , + voc4cat:0005005 , + voc4cat:0005006 ; + skos:prefLabel "reactor performance measure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005002.ttl b/vocabularies/voc4cat/IDs0005xxx/0005002.ttl new file mode 100644 index 00000000..9fd03ec2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005002.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005002 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0005002"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A measure to quantify how fast and selective a chemical conversion occurs. A chemical conversion may include multiple reactions."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000125 , + voc4cat:0005004 , + voc4cat:0005005 , + voc4cat:0005006 ; + skos:prefLabel "chemical conversion performance measure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005003.ttl b/vocabularies/voc4cat/IDs0005xxx/0005003.ttl new file mode 100644 index 00000000..d82874b6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005003.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005003 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0005003"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A measure to quantify how fast and selective a chemical conversion occurs over in presence of a catalyst. A chemical conversion may include multiple reactions."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000125 , + voc4cat:0005004 , + voc4cat:0005005 , + voc4cat:0005006 ; + skos:prefLabel "catalyst performance measure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005004.ttl b/vocabularies/voc4cat/IDs0005xxx/0005004.ttl new file mode 100644 index 00000000..9d2c7e22 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005004.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005004 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0005004"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader + voc4cat:0005001 , + voc4cat:0005002 , + voc4cat:0005003 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A dimensionless physical quantity describing the fraction of a reactant that reacts in a chemical conversion. If a reactant is consumed completely its conversion is 1 (or 100 %)."@en ; + skos:inScheme ; + skos:prefLabel "conversion"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005005.ttl b/vocabularies/voc4cat/IDs0005xxx/0005005.ttl new file mode 100644 index 00000000..b8225526 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005005.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005005 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0005005"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader + voc4cat:0005001 , + voc4cat:0005002 , + voc4cat:0005003 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A dimensionless physical quantity describing the fraction of a product B that is formed from a reactant A taking into account the stoichiometry. If A fully reacts to B without side-reactions, the yield of product B is 1 (or 100 %)."@en ; + skos:inScheme ; + skos:prefLabel "yield"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005006.ttl b/vocabularies/voc4cat/IDs0005xxx/0005006.ttl new file mode 100644 index 00000000..a9b736cd --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005006.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005006 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0005006"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader + voc4cat:0005001 , + voc4cat:0005002 , + voc4cat:0005003 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition """A physical quantity that describes the amount of product produced per unit of time and unit of producing entity. The producing entity is for example the volume of a chemical reactor or in catalysis the mass or volume or moles of catalyst. +Example unit: kg{product} / (hour * cubicmeter{catalyst})"""@en ; + skos:inScheme ; + skos:prefLabel "space-time yield"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005007.ttl b/vocabularies/voc4cat/IDs0005xxx/0005007.ttl new file mode 100644 index 00000000..e809343f --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005007.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005007 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0005007"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "Describes a transformation that changes the chemical composition of involved materials."@en ; + skos:inScheme ; + skos:prefLabel "chemical conversion"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005008.ttl b/vocabularies/voc4cat/IDs0005xxx/0005008.ttl new file mode 100644 index 00000000..2f99b3a0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005008.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005008 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0005008"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource, 0000-0002-4041-0165 Julia Schumann modified the resource"@en ; + skos:definition "A quantity describing the progress of a chemical reaction. For any chemical entitiy taking part in the reaction it is defined by the amount of chemical entity formed devided by its stoichiometric number in the reaction."@en ; + skos:inScheme ; + skos:prefLabel "extent of reaction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005009.ttl b/vocabularies/voc4cat/IDs0005xxx/0005009.ttl new file mode 100644 index 00000000..7de190f4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005009.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005009 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0005009"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "formation rate"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "Is a quantity describing how fast a product is formed in a chemical reaction. It is defined by the amount of product formed per unit of time."@en ; + skos:inScheme ; + skos:prefLabel "rate of formation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005010.ttl b/vocabularies/voc4cat/IDs0005xxx/0005010.ttl new file mode 100644 index 00000000..a2254dcf --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005010.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005010 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0005010"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "consumption rate"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "Is a quantity describing how fast a reactant is consumed in a chemical reaction. It is defined by the amount of reactant consumed per unit of time."@en ; + skos:inScheme ; + skos:prefLabel "rate of consumption"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005011.ttl b/vocabularies/voc4cat/IDs0005xxx/0005011.ttl new file mode 100644 index 00000000..d9ade58e --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005011.ttl @@ -0,0 +1,26 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005011 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005011"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A collection of the resource categories used in pid4cat. Resource categories classify for which type of resource the PID is used, e.g. if the PID is for a sample or a device."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0005012 , + voc4cat:0005013 , + voc4cat:0005014 , + voc4cat:0005015 , + voc4cat:0005016 , + voc4cat:0005017 ; + skos:prefLabel "PID resource categories"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005012.ttl b/vocabularies/voc4cat/IDs0005xxx/0005012.ttl new file mode 100644 index 00000000..4dbd7d63 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005012.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005012 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005012"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005011 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A PID resource category for a collection, which is a group of resources and/or other collections."@en ; + skos:inScheme ; + skos:prefLabel "collection"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005013.ttl b/vocabularies/voc4cat/IDs0005xxx/0005013.ttl new file mode 100644 index 00000000..22ac2e3f --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005013.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005013 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005013"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005011 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A PID resource category for a material sample ([voc4cat:0005056](https://w3id.org/nfdi4cat/voc4cat_0005056))."@en ; + skos:inScheme ; + skos:prefLabel "sample"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005014.ttl b/vocabularies/voc4cat/IDs0005xxx/0005014.ttl new file mode 100644 index 00000000..f3266108 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005014.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005014 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005014"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005011 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A PID resource category for a material used in the research process. Note that in the PID resource categorization, a \"material\" is distinct from \"sample\" ([voc4cat:0005013](https://w3id.org/nfdi4cat/voc4cat_0005013)) and distinct from \"device\" ([voc4cat:0005015](https://w3id.org/nfdi4cat/voc4cat_0005015)) ."@en ; + skos:inScheme ; + skos:prefLabel "material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005015.ttl b/vocabularies/voc4cat/IDs0005xxx/0005015.ttl new file mode 100644 index 00000000..609bef06 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005015.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005015 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005015"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005011 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A PID resource category for a physical device used in a research or manufacturing process."@en ; + skos:inScheme ; + skos:prefLabel "device"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005016.ttl b/vocabularies/voc4cat/IDs0005xxx/0005016.ttl new file mode 100644 index 00000000..49f371ad --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005016.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005016 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005016"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005011 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A PID resource category for a collection of data available for access or download. A data object might be a data file, a data set, a data collection."@en ; + skos:inScheme ; + skos:prefLabel "data object"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005017.ttl b/vocabularies/voc4cat/IDs0005xxx/0005017.ttl new file mode 100644 index 00000000..6d2b39fd --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005017.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005017 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005017"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005011 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A PID resource category for a data service, which is an organized system of operations that provide data processing functions or access to datasets."@en ; + skos:inScheme ; + skos:prefLabel "data service"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005018.ttl b/vocabularies/voc4cat/IDs0005xxx/0005018.ttl new file mode 100644 index 00000000..6f5d568a --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005018.ttl @@ -0,0 +1,53 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005018 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005018"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The type of relation between two resources. These relations are for example used to express relations between resources identified by their persistent identifiers."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0005019 , + voc4cat:0005020 , + voc4cat:0005021 , + voc4cat:0005022 , + voc4cat:0005023 , + voc4cat:0005024 , + voc4cat:0005025 , + voc4cat:0005026 , + voc4cat:0005027 , + voc4cat:0005028 , + voc4cat:0005029 , + voc4cat:0005030 , + voc4cat:0005031 , + voc4cat:0005032 , + voc4cat:0005033 , + voc4cat:0005034 , + voc4cat:0005035 , + voc4cat:0005036 , + voc4cat:0005037 , + voc4cat:0005038 , + voc4cat:0005039 , + voc4cat:0005040 , + voc4cat:0005041 , + voc4cat:0005042 , + voc4cat:0005043 , + voc4cat:0005044 , + voc4cat:0005045 , + voc4cat:0005046 , + voc4cat:0005047 , + voc4cat:0005048 , + voc4cat:0005049 , + voc4cat:0005050 , + voc4cat:0005059 ; + skos:prefLabel "resource relation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005019.ttl b/vocabularies/voc4cat/IDs0005xxx/0005019.ttl new file mode 100644 index 00000000..3dd5c904 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005019.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005019 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005019"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is cited by another resource."@en ; + skos:inScheme ; + skos:prefLabel "is cited by"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005020.ttl b/vocabularies/voc4cat/IDs0005xxx/0005020.ttl new file mode 100644 index 00000000..2541ddf6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005020.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005020 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005020"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource cites another resource."@en ; + skos:inScheme ; + skos:prefLabel "cites"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005021.ttl b/vocabularies/voc4cat/IDs0005xxx/0005021.ttl new file mode 100644 index 00000000..3a0d72bc --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005021.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005021 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005021"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is supplemented by another resource."@en ; + skos:inScheme ; + skos:prefLabel "is supplement to"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005022.ttl b/vocabularies/voc4cat/IDs0005xxx/0005022.ttl new file mode 100644 index 00000000..b0045df2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005022.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005022 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005022"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource supplements another resource."@en ; + skos:inScheme ; + skos:prefLabel "is supplemented by"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005023.ttl b/vocabularies/voc4cat/IDs0005xxx/0005023.ttl new file mode 100644 index 00000000..2a75a341 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005023.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005023 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005023"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is continued by another resource."@en ; + skos:inScheme ; + skos:prefLabel "is continued by"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005024.ttl b/vocabularies/voc4cat/IDs0005xxx/0005024.ttl new file mode 100644 index 00000000..ab461b20 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005024.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005024 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005024"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource continues another resource."@en ; + skos:inScheme ; + skos:prefLabel "continues"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005025.ttl b/vocabularies/voc4cat/IDs0005xxx/0005025.ttl new file mode 100644 index 00000000..264a6b1e --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005025.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005025 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005025"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource has metadata in another resource."@en ; + skos:inScheme ; + skos:prefLabel "has metadata"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005026.ttl b/vocabularies/voc4cat/IDs0005xxx/0005026.ttl new file mode 100644 index 00000000..c8a09089 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005026.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005026 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005026"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is metadata for another resource."@en ; + skos:inScheme ; + skos:prefLabel "is metadata for"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005027.ttl b/vocabularies/voc4cat/IDs0005xxx/0005027.ttl new file mode 100644 index 00000000..6485fffe --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005027.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005027 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005027"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource has a version. This is useful to refer to different versions of an abstract resource, for example, \"Python has version Python 3.12.4\"."@en ; + skos:inScheme ; + skos:prefLabel "has version"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005028.ttl b/vocabularies/voc4cat/IDs0005xxx/0005028.ttl new file mode 100644 index 00000000..019bcb7c --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005028.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005028 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005028"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is a version of another resource. This is useful to refer to an abstract resource that has different versions, for example, \"Python 3.12.4 is version of Python\"."@en ; + skos:inScheme ; + skos:prefLabel "is version of"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005029.ttl b/vocabularies/voc4cat/IDs0005xxx/0005029.ttl new file mode 100644 index 00000000..a6d4acfb --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005029.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005029 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005029"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is a new version of another versioned resource. This is useful to refer between versioned resources, for example, \"Python 3.12.1 is_new_version_of Python 3.12.0\"."@en ; + skos:inScheme ; + skos:prefLabel "is new version of"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005030.ttl b/vocabularies/voc4cat/IDs0005xxx/0005030.ttl new file mode 100644 index 00000000..4bc55f17 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005030.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005030 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005030"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is a previous version of another versioned resource. This is useful to refer between versioned resources, for example, \"Python 3.12.0 is_previous_version_of Python 3.12.1\"."@en ; + skos:inScheme ; + skos:prefLabel "is previous version of"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005031.ttl b/vocabularies/voc4cat/IDs0005xxx/0005031.ttl new file mode 100644 index 00000000..1a11f596 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005031.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005031 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005031"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition """The resource is part of another resource. This relation applies to container-contained type relationships. +If the relation refers to publishing one resource as part of another resource, use "IS_PUBLISHED_IN" instead. If the relation refers to a versioned resource and non-versioned resource, use "IS_VERSION_OF" instead."""@en ; + skos:inScheme ; + skos:prefLabel "is part of"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005032.ttl b/vocabularies/voc4cat/IDs0005xxx/0005032.ttl new file mode 100644 index 00000000..438f29db --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005032.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005032 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005032"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition """The resource has part another resource. This relation applies to container-contained type relationships. +If the relation refers to publishing one resource as part of another resource, "IS_PUBLISHED_IN" instead. If the relation refers to a versioned resource and non-versioned resource, use "HAS_VERSION" instead."""@en ; + skos:inScheme ; + skos:prefLabel "has part"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005033.ttl b/vocabularies/voc4cat/IDs0005xxx/0005033.ttl new file mode 100644 index 00000000..0833afc7 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005033.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005033 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005033"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition """The resource is published in another resource. +A resource A that is_published_in a resource B is independent from other resources published in the same resource B."""@en ; + skos:inScheme ; + skos:prefLabel "is published in"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005034.ttl b/vocabularies/voc4cat/IDs0005xxx/0005034.ttl new file mode 100644 index 00000000..5cf1a4cc --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005034.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005034 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005034"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is referenced by another resource."@en ; + skos:inScheme ; + skos:prefLabel "is referenced by"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005035.ttl b/vocabularies/voc4cat/IDs0005xxx/0005035.ttl new file mode 100644 index 00000000..322c8215 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005035.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005035 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005035"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource references another resource."@en ; + skos:inScheme ; + skos:prefLabel "references"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005036.ttl b/vocabularies/voc4cat/IDs0005xxx/0005036.ttl new file mode 100644 index 00000000..d2dff1bb --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005036.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005036 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005036"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is documented by another resource."@en ; + skos:inScheme ; + skos:prefLabel "is documented by"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005037.ttl b/vocabularies/voc4cat/IDs0005xxx/0005037.ttl new file mode 100644 index 00000000..5288ac7c --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005037.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005037 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005037"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource documents another resource."@en ; + skos:inScheme ; + skos:prefLabel "documents"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005038.ttl b/vocabularies/voc4cat/IDs0005xxx/0005038.ttl new file mode 100644 index 00000000..21f9224c --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005038.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005038 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005038"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is compiled by another resource. Resources may be text or software. The compiler may be a computer program or a person."@en ; + skos:inScheme ; + skos:prefLabel "is compiled by"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005039.ttl b/vocabularies/voc4cat/IDs0005xxx/0005039.ttl new file mode 100644 index 00000000..6ec1a27c --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005039.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005039 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005039"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource compiles another resource. Resources may be text or software. The compiler may be a computer program or a person."@en ; + skos:inScheme ; + skos:prefLabel "compiles"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005040.ttl b/vocabularies/voc4cat/IDs0005xxx/0005040.ttl new file mode 100644 index 00000000..cb5f32f5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005040.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005040 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005040"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is variant form of another resource. This may be used e.g. for relating architecture-specific builds of a software program to a source-code release. It may also be used to express the relation between data in different formats (e.g. PNG, JPEG) of the same image."@en ; + skos:inScheme ; + skos:prefLabel "is variant form of"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005041.ttl b/vocabularies/voc4cat/IDs0005xxx/0005041.ttl new file mode 100644 index 00000000..c16ae734 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005041.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005041 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005041"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is original form of another resource. This may be used e.g. for relating architecture-specific builds of a software program to a source-code release. It may also be used to express the relation between data in different formats (e.g. PNG, JPEG) of the same image."@en ; + skos:inScheme ; + skos:prefLabel "is original form of"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005042.ttl b/vocabularies/voc4cat/IDs0005xxx/0005042.ttl new file mode 100644 index 00000000..e69e8712 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005042.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005042 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005042"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is identical to another resource. May be used to indicate the relationship between an exact copy of a resource that is published at another location."@en ; + skos:inScheme ; + skos:prefLabel "is identical to"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005043.ttl b/vocabularies/voc4cat/IDs0005xxx/0005043.ttl new file mode 100644 index 00000000..8c7ce52c --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005043.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005043 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005043"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is derived from another resource. This may be used for relating a new dataset created by data processing to its original source dataset. For samples it may express the relation between the original sample and another sample derived from it by physical or chemical treatment."@en ; + skos:inScheme ; + skos:prefLabel "is derived from"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005044.ttl b/vocabularies/voc4cat/IDs0005xxx/0005044.ttl new file mode 100644 index 00000000..68f1cea0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005044.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005044 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005044"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is source of another resource. This may be used for example to express the relation between a source dataset and a new dataset derived from it by data processing. For samples it may express the relation between a sample processed by physical or chemical treatment and the original sample."@en ; + skos:inScheme ; + skos:prefLabel "is source of"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005045.ttl b/vocabularies/voc4cat/IDs0005xxx/0005045.ttl new file mode 100644 index 00000000..145ef534 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005045.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005045 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005045"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is collected by another resource. May be used to indicate the relationship between a dataset and an instrument that is used to collect, measure, obtain, or observe data."@en ; + skos:inScheme ; + skos:prefLabel "is collected by"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005046.ttl b/vocabularies/voc4cat/IDs0005xxx/0005046.ttl new file mode 100644 index 00000000..7bafe41b --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005046.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005046 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005046"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition """The resource collects another resource. May be used to indicate the relationship between an instrument and +where it has been used to collect, measure, obtain, or observe data."""@en ; + skos:inScheme ; + skos:prefLabel "collects"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005047.ttl b/vocabularies/voc4cat/IDs0005xxx/0005047.ttl new file mode 100644 index 00000000..448b1050 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005047.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005047 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005047"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is required by another resource."@en ; + skos:inScheme ; + skos:prefLabel "is required by"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005048.ttl b/vocabularies/voc4cat/IDs0005xxx/0005048.ttl new file mode 100644 index 00000000..df31db90 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005048.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005048 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005048"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource requires another resource."@en ; + skos:inScheme ; + skos:prefLabel "requires"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005049.ttl b/vocabularies/voc4cat/IDs0005xxx/0005049.ttl new file mode 100644 index 00000000..1cfea589 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005049.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005049 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005049"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource is obsoleted by another resource."@en ; + skos:inScheme ; + skos:prefLabel "is obsoleted by"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005050.ttl b/vocabularies/voc4cat/IDs0005xxx/0005050.ttl new file mode 100644 index 00000000..36a11ff2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005050.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005050 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005050"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The resource obsoletes another resource."@en ; + skos:inScheme ; + skos:prefLabel "obsoletes"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005051.ttl b/vocabularies/voc4cat/IDs0005xxx/0005051.ttl new file mode 100644 index 00000000..ea015186 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005051.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005051 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005051"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A usage status of a pid4cat persistent identifier (PID)."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0005052 , + voc4cat:0005053 , + voc4cat:0005054 , + voc4cat:0005055 ; + skos:prefLabel "pid4cat status"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005052.ttl b/vocabularies/voc4cat/IDs0005xxx/0005052.ttl new file mode 100644 index 00000000..90fed56f --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005052.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005052 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005052"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005051 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The persistent identifier is reserved but the resource is not yet linked."@en ; + skos:inScheme ; + skos:prefLabel "submitted"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005053.ttl b/vocabularies/voc4cat/IDs0005xxx/0005053.ttl new file mode 100644 index 00000000..cd73510e --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005053.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005053 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005053"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005051 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The persistent identifier is linked to a concrete resource."@en ; + skos:inScheme ; + skos:prefLabel "registered"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005054.ttl b/vocabularies/voc4cat/IDs0005xxx/0005054.ttl new file mode 100644 index 00000000..6f6e6891 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005054.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005054 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005054"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005051 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The persistent identifier is obsolete, e.g. because the resource is referenced by another persistent identifier."@en ; + skos:inScheme ; + skos:prefLabel "obsoleted"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005055.ttl b/vocabularies/voc4cat/IDs0005xxx/0005055.ttl new file mode 100644 index 00000000..7e0f8f54 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005055.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005055 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005055"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005051 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "The persistent identifier is deprecated, e.g. because the resource can no longer be found."@en ; + skos:inScheme ; + skos:prefLabel "deprecated"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005056.ttl b/vocabularies/voc4cat/IDs0005xxx/0005056.ttl new file mode 100644 index 00000000..648b88e4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005056.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005056 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005056"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "specimen"@en ; + skos:broadMatch ; + skos:broader voc4cat:0000190 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A representative part of a material of interest on which observations are made."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0007811 , + voc4cat:0007812 ; + skos:prefLabel "material sample"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005057.ttl b/vocabularies/voc4cat/IDs0005xxx/0005057.ttl new file mode 100644 index 00000000..d800d4ee --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005057.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005057 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005057"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broadMatch ; + skos:broader voc4cat:0000182 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A representative part of an entity of interest on which observations are made and which is created by time-based or spatial selection. It may have a lower dimension than the entity of interest. For example, an image may be a spatio-temporal sample of a 3D object."@en ; + skos:inScheme ; + skos:prefLabel "spatio-temporal sample"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005058.ttl b/vocabularies/voc4cat/IDs0005xxx/0005058.ttl new file mode 100644 index 00000000..8fc788b2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005058.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005058 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005058"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broadMatch ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "A representative part of an entity of interest on which observations are made and which is created by statistical sampling or subset selection."@en ; + skos:inScheme ; + skos:prefLabel "statistical sample"@en ; +. diff --git a/vocabularies/voc4cat/IDs0005xxx/0005059.ttl b/vocabularies/voc4cat/IDs0005xxx/0005059.ttl new file mode 100644 index 00000000..be18092d --- /dev/null +++ b/vocabularies/voc4cat/IDs0005xxx/0005059.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0005059 + a skos:Concept ; + dcterms:created "2025-01-23"^^xsd:date ; + dcterms:identifier "0005059"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005018 ; + skos:changeNote "0000-0002-5898-1820 David Linke created the resource"@en ; + skos:definition "An established standard to which the described resource conforms. This relation should be used to indicate the model, schema, ontology, or profile that the resource content conforms to."@en ; + skos:inScheme ; + skos:prefLabel "conforms to"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007001.ttl b/vocabularies/voc4cat/IDs0007xxx/0007001.ttl new file mode 100644 index 00000000..44073960 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007001.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007001 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007001"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A process during which a chemical reaction is accelerated by the presence of a catalyst in a different phase than the reactant. The reaction generally proceeds at the interface."@en ; + skos:inScheme ; + skos:prefLabel "heterogeneous catalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007002.ttl b/vocabularies/voc4cat/IDs0007xxx/0007002.ttl new file mode 100644 index 00000000..3b236931 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007002.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007002 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007002"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000196 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A process, during which elevated temperature is applied to increase the reaction rate of a reaction in presence of a catalyst."@en ; + skos:inScheme ; + skos:prefLabel "thermal catalysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007003.ttl b/vocabularies/voc4cat/IDs0007xxx/0007003.ttl new file mode 100644 index 00000000..6e61e37f --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007003.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007003 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007003"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000194 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A substance that increases the rate of a chemical reaction that is in a different phase than the reagents."@en ; + skos:inScheme ; + skos:prefLabel "heterogeneous catalyst"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007004.ttl b/vocabularies/voc4cat/IDs0007xxx/0007004.ttl new file mode 100644 index 00000000..cf11c751 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007004.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007004 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007004"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "The composition of chemical species fed to the inlet of a chemical reactor."@en ; + skos:inScheme ; + skos:prefLabel "reactor feed"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007005.ttl b/vocabularies/voc4cat/IDs0007xxx/0007005.ttl new file mode 100644 index 00000000..cf654e2d --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007005.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007005 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007005"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A substance that is added to a chemical reaction."@en ; + skos:inScheme ; + skos:prefLabel "reagent"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007006.ttl b/vocabularies/voc4cat/IDs0007xxx/0007006.ttl new file mode 100644 index 00000000..c7b33d97 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007006.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007006 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007006"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "active centre"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "Those sites for adsorption which are the effective sites for a particular heterogeneous catalytic reaction."@en ; + skos:inScheme ; + skos:prefLabel "active site"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007007.ttl b/vocabularies/voc4cat/IDs0007xxx/0007007.ttl new file mode 100644 index 00000000..109068e1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007007.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007007 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007007"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A type of catalytic test, where the performance of the catalyst is measured over an extended time period. Not to be performed at full conversion to be able to see catalyst deactivation, but usually also not at differential conditions to see the effect of product concentration on the catalyst."@en ; + skos:inScheme ; + skos:prefLabel "stability measurement"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007008.ttl b/vocabularies/voc4cat/IDs0007xxx/0007008.ttl new file mode 100644 index 00000000..2e8669f6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007008.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007008 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007008"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A type of catalytic test, where the depletion of formation of chemical substances is measured, usually performed under differential conditions"@en ; + skos:inScheme ; + skos:prefLabel "kinetic measurement"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007009.ttl b/vocabularies/voc4cat/IDs0007xxx/0007009.ttl new file mode 100644 index 00000000..805d4ea6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007009.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007009 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007009"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A name for a chemical reaction which assigns the reactants and (desired) products."@en ; + skos:inScheme ; + skos:prefLabel "reaction name"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007010.ttl b/vocabularies/voc4cat/IDs0007xxx/0007010.ttl new file mode 100644 index 00000000..0aee821b --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007010.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007010 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007010"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "reaction class"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A group of chemical reactions with common conditions or reactants, e.g. Oxidation, Hydrogenation, Reduction, Cracking."@en ; + skos:inScheme ; + skos:prefLabel "reaction type"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007012.ttl b/vocabularies/voc4cat/IDs0007xxx/0007012.ttl new file mode 100644 index 00000000..3cd95186 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007012.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007012 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007012"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A definition of best practice procedures to measure consistent datasets."@en ; + skos:inScheme ; + skos:prefLabel "handbook"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007013.ttl b/vocabularies/voc4cat/IDs0007xxx/0007013.ttl new file mode 100644 index 00000000..5f0d2e93 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007013.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007013 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007013"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "The temperature at which a chemical reaction is happening."@en ; + skos:inScheme ; + skos:prefLabel "reaction temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007014.ttl b/vocabularies/voc4cat/IDs0007xxx/0007014.ttl new file mode 100644 index 00000000..98c70aa3 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007014.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007014 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007014"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "Some characteristics that define the catalyst, which can be related to composition, active phase, or role."@en ; + skos:inScheme ; + skos:prefLabel "catalyst type"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007015.ttl b/vocabularies/voc4cat/IDs0007xxx/0007015.ttl new file mode 100644 index 00000000..30cd1865 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007015.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007015 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007015"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000194 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A catalyst that consists mainly of the active ingredient or phase."@en ; + skos:inScheme ; + skos:prefLabel "bulk catalyst"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007016.ttl b/vocabularies/voc4cat/IDs0007xxx/0007016.ttl new file mode 100644 index 00000000..d7a9f4b3 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007016.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007016 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007016"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "The main technique applied to make the catalyst material out of pure substances."@en ; + skos:inScheme ; + skos:narrower voc4cat:0007795 ; + skos:prefLabel "preparation method"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007017.ttl b/vocabularies/voc4cat/IDs0007xxx/0007017.ttl new file mode 100644 index 00000000..0d7d6d25 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007017.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007017 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007017"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000180 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "An apparatus or system designed for the controlled execution of reactions, encompassing a wide range of processes including chemical, nuclear, biochemical, or other physical transformations."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000193 , + voc4cat:0007035 , + voc4cat:0007036 ; + skos:prefLabel "reactor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007018.ttl b/vocabularies/voc4cat/IDs0007xxx/0007018.ttl new file mode 100644 index 00000000..da7a384f --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007018.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007018 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007018"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke provided the definition"@en ; + skos:definition "A classification of chemical reactors based on the distinct design, configuration, and operational characteristics. Examples are stirred tank reactors, loop reactors, trickle beds, multitubular reactors, fluidized beds, and others. Each type is tailored to accomodate a specific combinations of reaction kinetics, thermodynamics, mass transfer requirements, and process variables."@en ; + skos:inScheme ; + skos:prefLabel "reactor design type"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007019.ttl b/vocabularies/voc4cat/IDs0007xxx/0007019.ttl new file mode 100644 index 00000000..4507731c --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007019.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007019 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007019"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "CSTR"@en ; + skos:broader voc4cat:0007036 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "A reaction vessel characterized by continuously fed reactnts, thorough mixing of fed reactants with the contents already present in the reactor by stirring and continous removal of a product stream from the system to maintain a constant volume."@en ; + skos:inScheme ; + skos:prefLabel "continuous stirred tank reactor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007020.ttl b/vocabularies/voc4cat/IDs0007xxx/0007020.ttl new file mode 100644 index 00000000..14582905 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007020.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007020 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007020"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000188 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "The part of the reactor where the catalyst is located, characterized by length, diameter, volume."@en ; + skos:inScheme ; + skos:prefLabel "catalyst bed"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007021.ttl b/vocabularies/voc4cat/IDs0007xxx/0007021.ttl new file mode 100644 index 00000000..c56231bd --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007021.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007021 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007021"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "apparent catalyst volume"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "The bulk volume taken up by the catalyst and potential diluent in a fixed bed reactor."@en ; + skos:inScheme ; + skos:prefLabel "catalyst bed volume"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007022.ttl b/vocabularies/voc4cat/IDs0007xxx/0007022.ttl new file mode 100644 index 00000000..e257414c --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007022.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007022 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007022"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "The portion of a powder catalyst sample that passes through a standard sieve of specified number and is retained by some finer sieve."@en ; + skos:inScheme ; + skos:prefLabel "sieve fraction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007023.ttl b/vocabularies/voc4cat/IDs0007xxx/0007023.ttl new file mode 100644 index 00000000..3d67d5d1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007023.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007023 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007023"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "GHSV"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "A physical quantity given by the volumetric flow entering a control volume divided by the size of the control volume; the quantity must be given in the unit 1/hour. In heterogeneous catalysis the volume of the undiluted catalyst bed is used as characteristic control volume. In case of gases the flow at reference conditions (0°C, 100 kPa = 1 bar) is used."@en ; + skos:inScheme ; + skos:prefLabel "gas hourly space velocity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007024.ttl b/vocabularies/voc4cat/IDs0007xxx/0007024.ttl new file mode 100644 index 00000000..262e6905 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007024.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007024 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007024"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "rate of reaction"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "A physical quantity describing how fast a chemical reaction proceeds. It is defined by the change of the extend of reaction per unit of time."@en ; + skos:inScheme ; + skos:prefLabel "reaction rate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007025.ttl b/vocabularies/voc4cat/IDs0007xxx/0007025.ttl new file mode 100644 index 00000000..a8370ec0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007025.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007025 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007025"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "A reaction rate that is normalized either to mass of active ingredient, surface area or certain measured adsorption sites."@en ; + skos:inScheme ; + skos:prefLabel "specific reaction rate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007026.ttl b/vocabularies/voc4cat/IDs0007xxx/0007026.ttl new file mode 100644 index 00000000..74ddce5e --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007026.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007026 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007026"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "The number of datapoints per unit of time. Inverse of sampling interval."@en ; + skos:inScheme ; + skos:prefLabel "sampling frequency"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007027.ttl b/vocabularies/voc4cat/IDs0007xxx/0007027.ttl new file mode 100644 index 00000000..afa6fffc --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007027.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007027 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007027"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "A synthesis method in which a solid material (a precipitate) sediments from a liquid solution in which the material is present in a concentration greater than its solubility in the liquid."@en ; + skos:inScheme ; + skos:prefLabel "precipitation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007028.ttl b/vocabularies/voc4cat/IDs0007xxx/0007028.ttl new file mode 100644 index 00000000..8674e185 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007028.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007028 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007028"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "A synthesis method in which inorganic compounds are dissolved in a solvent and brought into contact with a solid support in order to deposit them completely or in parts onto the surface."@en ; + skos:inScheme ; + skos:narrower voc4cat:0007806 ; + skos:prefLabel "impregnation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007029.ttl b/vocabularies/voc4cat/IDs0007xxx/0007029.ttl new file mode 100644 index 00000000..34c957e8 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007029.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007029 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007029"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "A synthesis method involving the thermal treatment of a mixture of substances in aqueous solution or in form of a slurry in water characterised by heating the mixture in a sealed reaction vessel to a temperature greater than the boiling point at standard pressure ."@en ; + skos:inScheme ; + skos:prefLabel "hydrothermal synthesis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007030.ttl b/vocabularies/voc4cat/IDs0007xxx/0007030.ttl new file mode 100644 index 00000000..0c24b3b1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007030.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007030 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007030"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "Treatment of a solid substance or mixtures of solids at elevated temperatures."@en ; + skos:inScheme ; + skos:prefLabel "calcination"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007031.ttl b/vocabularies/voc4cat/IDs0007xxx/0007031.ttl new file mode 100644 index 00000000..e063d6bd --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007031.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007031 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007031"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A method to synthesize mixed oxide/non-oxide powders by combustion of liquid precursor droplets in a flame."@en ; + skos:inScheme ; + skos:prefLabel "flame spray pyrolysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007032.ttl b/vocabularies/voc4cat/IDs0007xxx/0007032.ttl new file mode 100644 index 00000000..0d7875aa --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007032.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007032 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007032"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A representative temperature value for the operating temperature of a reactor. In the special case of an isothermal chemical reactor, this is the same as the reaction temperature."@en ; + skos:inScheme ; + skos:prefLabel "reactor temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007034.ttl b/vocabularies/voc4cat/IDs0007xxx/0007034.ttl new file mode 100644 index 00000000..7c554cf2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007034.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007034 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007034"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000194 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A catalyst where the active material is usually the minority phase and fixed on a high surface area, relatively inert solid."@en ; + skos:inScheme ; + skos:prefLabel "supported catalyst"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007035.ttl b/vocabularies/voc4cat/IDs0007xxx/0007035.ttl new file mode 100644 index 00000000..0d9d2c25 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007035.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007035 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007035"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007017 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A device designed for the controlled execution of chemical reactions."@en ; + skos:inScheme ; + skos:narrower voc4cat:0007036 ; + skos:prefLabel "chemical reactor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007036.ttl b/vocabularies/voc4cat/IDs0007xxx/0007036.ttl new file mode 100644 index 00000000..b92449b7 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007036.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007036 + a skos:Concept ; + dcterms:created "2024-03-23"^^xsd:date ; + dcterms:identifier "0007036"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader + voc4cat:0007017 , + voc4cat:0007035 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A chemical reactor in which the reaction is carried out in the presence of a catalyst."@en ; + skos:inScheme ; + skos:narrower voc4cat:0007019 ; + skos:prefLabel "catalytic reactor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007038.ttl b/vocabularies/voc4cat/IDs0007xxx/0007038.ttl new file mode 100644 index 00000000..810ec0d1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007038.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007038 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007038"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "The mass of a material sample."@en ; + skos:inScheme ; + skos:prefLabel "sample mass"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007039.ttl b/vocabularies/voc4cat/IDs0007xxx/0007039.ttl new file mode 100644 index 00000000..b196e8d3 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007039.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007039 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007039"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "Collection of environmental variables of a reaction such as temperature, pressure, reagent concentrations and flow rate."@en ; + skos:inScheme ; + skos:prefLabel "reaction conditions"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007040.ttl b/vocabularies/voc4cat/IDs0007xxx/0007040.ttl new file mode 100644 index 00000000..b80ceadf --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007040.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX prov: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007040 + a skos:Concept ; + dcterms:created "2025-01-07"^^xsd:date ; + dcterms:identifier "0007040"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "reaction mechanism"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A detailed description of the process leading from the reactants to the products of a reaction, including a description as complete as possible of the composition, structure, energy and other properties of reaction intermediates, products and transition states."@en ; + skos:inScheme ; + skos:prefLabel "chemical reaction mechanism"@en ; + prov:hadPrimarySource ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007041.ttl b/vocabularies/voc4cat/IDs0007xxx/0007041.ttl new file mode 100644 index 00000000..3e74c1a8 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007041.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX prov: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007041 + a skos:Concept ; + dcterms:created "2025-01-07"^^xsd:date ; + dcterms:identifier "0007041"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "elementary step"@en ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A reaction for which no reaction intermediates have been detected or need to be postulated in order to describe the chemical reaction on a molecular scale. An elementary reaction is assumed to occur in a single step and to pass through a single transition state."@en ; + skos:inScheme ; + skos:prefLabel "elementary reaction"@en ; + prov:hadPrimarySource ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007042.ttl b/vocabularies/voc4cat/IDs0007xxx/0007042.ttl new file mode 100644 index 00000000..703b9926 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007042.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007042 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007042"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007045 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "The person carrying out a synthesis preparation."@en ; + skos:inScheme ; + skos:prefLabel "preparator"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007043.ttl b/vocabularies/voc4cat/IDs0007xxx/0007043.ttl new file mode 100644 index 00000000..4c6ccff6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007043.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007043 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007043"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007045 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "The person starting or carrying out a planned process."@en ; + skos:inScheme ; + skos:prefLabel "experimenter"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007044.ttl b/vocabularies/voc4cat/IDs0007xxx/0007044.ttl new file mode 100644 index 00000000..405f209a --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007044.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007044 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007044"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "The fractions of atoms of a specific chemical element located at the surface of a material versus the total number of atoms of this specific element in the material."@en ; + skos:inScheme ; + skos:prefLabel "dispersion"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007045.ttl b/vocabularies/voc4cat/IDs0007xxx/0007045.ttl new file mode 100644 index 00000000..1c0ecb92 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007045.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007045 + a skos:Concept ; + dcterms:created "2025-01-07"^^xsd:date ; + dcterms:identifier "0007045"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000180 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource"@en ; + skos:definition "A physical entity which is a human beeing."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0007042 , + voc4cat:0007043 ; + skos:prefLabel "person"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007046.ttl b/vocabularies/voc4cat/IDs0007xxx/0007046.ttl new file mode 100644 index 00000000..34526fcf --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007046.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007046 + a skos:Concept ; + dcterms:created "2025-09-15"^^xsd:date ; + dcterms:identifier "0007046"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "WHSV"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0002-4041-0165 Julia Schumann created the resource,"@en ; + skos:definition "A physical quantity given by the volumetric flow entering a catalytic reactor divided by the mass of the undiluted catalyst bed in this control volume. In case of gases the flow at reference conditions (0°C, 100 kPa = 1 bar) is used."@en ; + skos:inScheme ; + skos:prefLabel "weight hourly space velocity"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007101.ttl b/vocabularies/voc4cat/IDs0007xxx/0007101.ttl new file mode 100644 index 00000000..0fd0ffa9 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007101.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007101 + a skos:Concept ; + dcterms:created "2024-05-10"^^xsd:date ; + dcterms:identifier "0007101"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "Chemical reactors are often classified by their abstract concept. The reactor model type characterizes the basic physicochemical behavior of a reactor and thus creates a level of comparability between reactors. Different reactor model types are often used in simulation to simplify complex equations and physical behaviors."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0007102 , + voc4cat:0007103 , + voc4cat:0007104 ; + skos:prefLabel "reactor model type"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007102.ttl b/vocabularies/voc4cat/IDs0007xxx/0007102.ttl new file mode 100644 index 00000000..bde7d6de --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007102.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007102 + a skos:Concept ; + dcterms:created "2024-05-10"^^xsd:date ; + dcterms:identifier "0007102"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "PFR model"@en ; + skos:broader voc4cat:0007101 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "An abstract concept/ideal reactor model type in which a liquid flows uniformly through the tube, resulting in a straight wave/flow front. Each fluid element has the same residence time."@en ; + skos:inScheme ; + skos:prefLabel "plug flow reactor model"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007103.ttl b/vocabularies/voc4cat/IDs0007xxx/0007103.ttl new file mode 100644 index 00000000..98539111 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007103.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007103 + a skos:Concept ; + dcterms:created "2024-05-10"^^xsd:date ; + dcterms:identifier "0007103"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007101 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "An abstract concept/ideal reactor model type, in which the volume of fluid in the reaction vessel is considered to be perfectly mixed which results in the same concentration of all components in the whole reaction volume."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0007106 , + voc4cat:0007107 ; + skos:prefLabel "stirred tank reactor model"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007104.ttl b/vocabularies/voc4cat/IDs0007xxx/0007104.ttl new file mode 100644 index 00000000..e48003d9 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007104.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007104 + a skos:Concept ; + dcterms:created "2024-05-10"^^xsd:date ; + dcterms:identifier "0007104"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007101 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "A reactor model, in which opposing to the ideal plug flow behavior, friction is acting on the fluid, thus creating a residence time distribution."@en ; + skos:inScheme ; + skos:narrower voc4cat:0007105 ; + skos:prefLabel "tubular reactor model"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007105.ttl b/vocabularies/voc4cat/IDs0007xxx/0007105.ttl new file mode 100644 index 00000000..8ec52262 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007105.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007105 + a skos:Concept ; + dcterms:created "2024-05-10"^^xsd:date ; + dcterms:identifier "0007105"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007104 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "An extension of the concept of the tubular reactor model, in that the fluid does not flow though a straight tube but through a tube with regular bends, e.g. a coiled tube, which modifies the residence time distribution as compared to a straight tube."@en ; + skos:inScheme ; + skos:prefLabel "coiled tubular reactor model"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007106.ttl b/vocabularies/voc4cat/IDs0007xxx/0007106.ttl new file mode 100644 index 00000000..3af7656c --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007106.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007106 + a skos:Concept ; + dcterms:created "2024-05-10"^^xsd:date ; + dcterms:identifier "0007106"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "CSTR model"@en ; + skos:broader voc4cat:0007103 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "A stirred tank reactor model with always present feed and effluent streams."@en ; + skos:inScheme ; + skos:prefLabel "continuous stirred tank reactor model"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007107.ttl b/vocabularies/voc4cat/IDs0007xxx/0007107.ttl new file mode 100644 index 00000000..433fd3c5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007107.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007107 + a skos:Concept ; + dcterms:created "2024-05-10"^^xsd:date ; + dcterms:identifier "0007107"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "batch stirred tank reactor model"@en ; + skos:broader voc4cat:0007103 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0000-0002-5898-1820 David Linke contributed to the definition of the resource"@en ; + skos:definition "A stirred tank reactor model characterized by the absence of either feed or effluent flows. Examples modes of operation are batch (neither feed nor effluent), feed batch (only feed) , or drained batch (only effluent)."@en ; + skos:inScheme ; + skos:prefLabel "discontinuous stirred tank reactor model"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007108.ttl b/vocabularies/voc4cat/IDs0007xxx/0007108.ttl new file mode 100644 index 00000000..6f65b67e --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007108.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007108 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007108"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "primary energy; accelerating voltage; electron beam energy"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "The kinetic energy of the incident electron beam, typically measured in kiloelectronvolts (keV), which influences the interaction volume and excitation of X-rays in the sample."@en ; + skos:inScheme ; + skos:prefLabel "beam energy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007109.ttl b/vocabularies/voc4cat/IDs0007xxx/0007109.ttl new file mode 100644 index 00000000..1790aa87 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007109.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007109 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007109"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "tilt angle"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "The angle between the sample holder (stage) surface and the incident electron beam axis, used to optimize geometry for imaging or detection."@en ; + skos:inScheme ; + skos:prefLabel "stage tilt"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007111.ttl b/vocabularies/voc4cat/IDs0007xxx/0007111.ttl new file mode 100644 index 00000000..e6c2ceba --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007111.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007111 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007111"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "azimuth angle"@en , + "in-plane rotation"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "The in-plane rotation angle of the specimen around the beam axis, used to align crystallographic directions or detector orientation relative to the sample."@en ; + skos:inScheme ; + skos:prefLabel "sample azimuth angle"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007112.ttl b/vocabularies/voc4cat/IDs0007xxx/0007112.ttl new file mode 100644 index 00000000..e3c89613 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007112.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007112 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007112"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "real time; clock time; elapsed acquisition time"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "The total elapsed time during the data acquisition process, including both periods when the detector is actively collecting data and when it is not (due to dead time or processing delays)."@en ; + skos:inScheme ; + skos:prefLabel "measurement reference time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007113.ttl b/vocabularies/voc4cat/IDs0007xxx/0007113.ttl new file mode 100644 index 00000000..8dee3113 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007113.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007113 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007113"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "live time; effective counting time; life time"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "The net time during which the detector is actively recording, excluding time lost to processing (dead time)."@en ; + skos:inScheme ; + skos:prefLabel "active acquisition time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007114.ttl b/vocabularies/voc4cat/IDs0007xxx/0007114.ttl new file mode 100644 index 00000000..31c84024 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007114.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007114 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007114"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "The classification of a detector according to its underlying detection principle, design, or intended measurement mode"@en ; + skos:inScheme ; + skos:prefLabel "detector type"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007115.ttl b/vocabularies/voc4cat/IDs0007xxx/0007115.ttl new file mode 100644 index 00000000..983ee523 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007115.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007115 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007115"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "entrance dead layer; inactive detection surface region"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "A non-sensitive region at the surface of a detector, typically composed of silicon or other passive materials, in which incident rays of various kinds may be absorbed without generating a measurable signal. This layer reduces sensitivity."@en ; + skos:inScheme ; + skos:prefLabel "detector window dead layer"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007116.ttl b/vocabularies/voc4cat/IDs0007xxx/0007116.ttl new file mode 100644 index 00000000..0eb7dc4f --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007116.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007116 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007116"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "detector active layer thickness"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "The physical thickness of the active region in a detector that is responsible for absorbing and converting incoming rays into charge carriers for signal generation."@en ; + skos:inScheme ; + skos:prefLabel "detector excitation material thickness"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007117.ttl b/vocabularies/voc4cat/IDs0007xxx/0007117.ttl new file mode 100644 index 00000000..7fcc413d --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007117.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007117 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007117"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "sensor window material;"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "The material and structural configuration of the barrier or interface at the front of a detector that allows selected input signals to pass through while protecting internal components or maintaining internal conditions."@en ; + skos:inScheme ; + skos:prefLabel "detector window material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007118.ttl b/vocabularies/voc4cat/IDs0007xxx/0007118.ttl new file mode 100644 index 00000000..ddd2c548 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007118.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007118 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007118"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "energy fluctuation coefficient; charge generation variability factor"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "A dimensionless constant that quantifies the statistical variation in the number of charge carriers generated per absorbed X-ray photon. Lower Fano factors indicate better intrinsic energy resolution of the detector material."@en ; + skos:inScheme ; + skos:prefLabel "Fano factor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007119.ttl b/vocabularies/voc4cat/IDs0007xxx/0007119.ttl new file mode 100644 index 00000000..ba1d31f3 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007119.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007119 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007119"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "Mn FWHM; energy resolution at Mn Kα; manganese peak width; Mn resolution"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "The spectral linewidth of a peak, expressed as the width between the two points on either side of the maximum intensity where the intensity is half of the maximum value.Also known as full width at half maximum (FWHM)."@en ; + skos:inScheme ; + skos:prefLabel "Peak full width at half maximum"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007120.ttl b/vocabularies/voc4cat/IDs0007xxx/0007120.ttl new file mode 100644 index 00000000..ccd90340 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007120.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007120 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007120"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "linear scaling calibration"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "A method of scaling measurement output using a constant proportional relationship between the measured signal and its corresponding physical quantity."@en ; + skos:inScheme ; + skos:prefLabel "linear calibration"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007121.ttl b/vocabularies/voc4cat/IDs0007xxx/0007121.ttl new file mode 100644 index 00000000..bca641af --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007121.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007121 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007121"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "data channel; signal bin"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "A distinct signal pathway in a measurement system, defined by a particular detector, detector element, or signal processing range, through which data are collected. In setups with multiple detectors or detector arrays, each channel represents one of the parallel streams of measurement that can be acquired and analyzed separately."@en ; + skos:inScheme ; + skos:prefLabel "measurement channel"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007122.ttl b/vocabularies/voc4cat/IDs0007xxx/0007122.ttl new file mode 100644 index 00000000..6cea9fe1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007122.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007122 + a skos:Concept ; + dcterms:created "2025-07-25"^^xsd:date ; + dcterms:identifier "0007122"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource, 0009-0006-1375-2895 Marc Völkenrath contributed to the definition of the resource"@en ; + skos:definition "A material or specimen with known and well-characterized properties that is used as a standard for calibration or validation of measurements."@en ; + skos:inScheme ; + skos:prefLabel "measurement reference material"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007123.ttl b/vocabularies/voc4cat/IDs0007xxx/0007123.ttl new file mode 100644 index 00000000..8c54db78 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007123.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007123 + a skos:Concept ; + dcterms:created "2025-11-18"^^xsd:date ; + dcterms:identifier "0007123"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; + skos:definition "A numerical value representing the ratio of the apparent size of a specimen as observed in an image to its true, physical size."@en ; + skos:inScheme ; + skos:prefLabel "sample magnification"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007124.ttl b/vocabularies/voc4cat/IDs0007xxx/0007124.ttl new file mode 100644 index 00000000..9aec2781 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007124.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007124 + a skos:Concept ; + dcterms:created "2025-11-18"^^xsd:date ; + dcterms:identifier "0007124"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; + skos:definition "The specific interval of time that a scanning probe, beam, or sensor remains stationary at a single, discrete coordinate or pixel to acquire data."@en ; + skos:inScheme ; + skos:prefLabel "scanning dwell time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007125.ttl b/vocabularies/voc4cat/IDs0007xxx/0007125.ttl new file mode 100644 index 00000000..19cc8888 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007125.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007125 + a skos:Concept ; + dcterms:created "2025-11-18"^^xsd:date ; + dcterms:identifier "0007125"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; + skos:definition "The complete period during which a detector actively accumulates photons or other signal-generating particles to constitute a single, distinct measurement."@en ; + skos:inScheme ; + skos:prefLabel "signal integration time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007126.ttl b/vocabularies/voc4cat/IDs0007xxx/0007126.ttl new file mode 100644 index 00000000..854f85ae --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007126.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007126 + a skos:Concept ; + dcterms:created "2025-11-18"^^xsd:date ; + dcterms:identifier "0007126"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; + skos:definition "A predefined operational setting or configured strategy that dictates the specific protocol, parameters, and method by which experimental data is collected."@en ; + skos:inScheme ; + skos:prefLabel "acquisition mode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007127.ttl b/vocabularies/voc4cat/IDs0007xxx/0007127.ttl new file mode 100644 index 00000000..9537156e --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007127.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007127 + a skos:Concept ; + dcterms:created "2025-11-18"^^xsd:date ; + dcterms:identifier "0007127"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; + skos:definition "The calibrated span, from a minimum to a maximum intensity, within which an analytical instrument or detector can quantitatively measure or process an incoming signal."@en ; + skos:inScheme ; + skos:prefLabel "signal range"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007128.ttl b/vocabularies/voc4cat/IDs0007xxx/0007128.ttl new file mode 100644 index 00000000..50f34260 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007128.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007128 + a skos:Concept ; + dcterms:created "2025-11-18"^^xsd:date ; + dcterms:identifier "0007128"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; + skos:definition "The defined set of dimensions, often expressed as the total number of discrete points or pixels in one or more coordinates, that constitute the structural grid for a data recording."@en ; + skos:inScheme ; + skos:prefLabel "measurement matrix size"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007129.ttl b/vocabularies/voc4cat/IDs0007xxx/0007129.ttl new file mode 100644 index 00000000..417fbc2f --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007129.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007129 + a skos:Concept ; + dcterms:created "2025-11-18"^^xsd:date ; + dcterms:identifier "0007129"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; + skos:definition "The precise physical distance or step size that separates the centers of adjacent, discrete data acquisition points within a measurement scan or image."@en ; + skos:inScheme ; + skos:prefLabel "spatial sampling interval"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007130.ttl b/vocabularies/voc4cat/IDs0007xxx/0007130.ttl new file mode 100644 index 00000000..ceb3becc --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007130.ttl @@ -0,0 +1,27 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007130 + a skos:Collection ; + dcterms:created "2025-11-18"^^xsd:date ; + dcterms:identifier "0007130"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:isDefinedBy ; + rdfs:seeAlso ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; + skos:definition "Metadata attributes relevant for Scanning Electron Microscopy (SEM)"@en ; + skos:inScheme ; + skos:member + voc4cat:0007123 , + voc4cat:0007124 , + voc4cat:0007125 , + voc4cat:0007126 , + voc4cat:0007127 , + voc4cat:0007128 , + voc4cat:0007129 ; + skos:prefLabel "SEM measurement attribute"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007131.ttl b/vocabularies/voc4cat/IDs0007xxx/0007131.ttl new file mode 100644 index 00000000..e06425ef --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007131.ttl @@ -0,0 +1,41 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007131 + a skos:Collection ; + dcterms:created "2025-11-18"^^xsd:date ; + dcterms:identifier "0007131"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:isDefinedBy ; + rdfs:seeAlso ; + skos:changeNote "0000-0001-5886-7860 Hendrik Borgelt created this resource"@en ; + skos:definition "A collection of terms used in various measurement techniques, relevant in the domain of catalysis. (This collection is not exclusive)"@en ; + skos:inScheme ; + skos:member + voc4cat:0007108 , + voc4cat:0007109 , + voc4cat:0007111 , + voc4cat:0007112 , + voc4cat:0007113 , + voc4cat:0007114 , + voc4cat:0007115 , + voc4cat:0007116 , + voc4cat:0007117 , + voc4cat:0007118 , + voc4cat:0007119 , + voc4cat:0007120 , + voc4cat:0007121 , + voc4cat:0007122 , + voc4cat:0007123 , + voc4cat:0007124 , + voc4cat:0007125 , + voc4cat:0007126 , + voc4cat:0007127 , + voc4cat:0007128 , + voc4cat:0007129 ; + skos:prefLabel "measurement metadata attribute collection"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007201.ttl b/vocabularies/voc4cat/IDs0007xxx/0007201.ttl new file mode 100644 index 00000000..def251a5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007201.ttl @@ -0,0 +1,27 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007201 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007201"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The two electronically conducting parts of an electrochemical cell."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0007202 , + voc4cat:0007203 , + voc4cat:0007204 , + voc4cat:0007243 , + voc4cat:0007248 , + voc4cat:0007254 , + voc4cat:0007255 ; + skos:prefLabel "electrode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007202.ttl b/vocabularies/voc4cat/IDs0007xxx/0007202.ttl new file mode 100644 index 00000000..de169822 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007202.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007202 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007202"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "WE"@en ; + skos:broader voc4cat:0007201 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The electrode in a three-electrode cell where \"the action is\"."@en ; + skos:inScheme ; + skos:prefLabel "working electrode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007203.ttl b/vocabularies/voc4cat/IDs0007xxx/0007203.ttl new file mode 100644 index 00000000..fe0425cb --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007203.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007203 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007203"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "CE"@en ; + skos:broader voc4cat:0007201 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "An electrode in a three-electrode cell that is used only to make an electrical connection to the electrolyte so that a current can be applied to the working electrode."@en ; + skos:inScheme ; + skos:prefLabel "counter electrode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007204.ttl b/vocabularies/voc4cat/IDs0007xxx/0007204.ttl new file mode 100644 index 00000000..a53a6d1e --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007204.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007204 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007204"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "reaction class"@en ; + skos:broader voc4cat:0007201 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "An electrode that has a well known and stable equilibrium electrode potential."@en ; + skos:inScheme ; + skos:prefLabel "reference electrode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007205.ttl b/vocabularies/voc4cat/IDs0007xxx/0007205.ttl new file mode 100644 index 00000000..761bc1cc --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007205.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007205 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007205"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "An electronic instrument that controls the electrical potential difference between the working and reference electrodes of a three-electrode cell at a preset value."@en ; + skos:inScheme ; + skos:prefLabel "potentiostat"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007206.ttl b/vocabularies/voc4cat/IDs0007xxx/0007206.ttl new file mode 100644 index 00000000..ff6e433c --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007206.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007206 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007206"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "An electroanalytical technique based on the measurement of the electromotive force of an electrochemical cell comprised of a measuring and a reference electrode."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0007208 , + voc4cat:0007209 , + voc4cat:0007212 , + voc4cat:0007237 ; + skos:prefLabel "potentiometry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007207.ttl b/vocabularies/voc4cat/IDs0007xxx/0007207.ttl new file mode 100644 index 00000000..1b92f359 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007207.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007207 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007207"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "CA"@en ; + skos:broader voc4cat:0007237 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "An electrochemical measuring technique used for electrochemical analysis or for the determination of the kinetics and mechanism of electrode reactions. A fast-rising potential pulse is enforced on the working electrode of an electrochemical cell and the current flowing through this electrode is measured as a function of time."@en ; + skos:inScheme ; + skos:prefLabel "chronoamperometry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007208.ttl b/vocabularies/voc4cat/IDs0007xxx/0007208.ttl new file mode 100644 index 00000000..daa21262 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007208.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007208 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007208"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "CP"@en ; + skos:broader voc4cat:0007206 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "An electrochemical measuring technique used for electrochemical analysis or for the determination of the kinetics and mechanism of electrode reactions. A fast-rising current pulse is enforced on the working electrode of an electrochemical cell and the potential of this electrode is measured against a reference electrode as a function of time."@en ; + skos:inScheme ; + skos:prefLabel "chronopotentiometry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007209.ttl b/vocabularies/voc4cat/IDs0007xxx/0007209.ttl new file mode 100644 index 00000000..d9294db5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007209.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007209 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007209"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "EIS"@en ; + skos:broader voc4cat:0007206 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A powerful tool for examining processes occurring at electrode surfaces. A small amplitude ac (sinusoidal) excitation signal (potential or current), covering a wide range of frequencies, is applied to the system under investigation and the response (current or voltage or another signal of interest) is measured. It is routinely used in electrode kinetics and mechanism investigations, and in the characterization of batteries, fuel cells, and corrosion phenomena."@en ; + skos:inScheme ; + skos:prefLabel "electrochemical impedance spectroscopy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007210.ttl b/vocabularies/voc4cat/IDs0007xxx/0007210.ttl new file mode 100644 index 00000000..0f905234 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007210.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007210 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007210"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "OCV"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The cell voltage under zero current conditions."@en ; + skos:inScheme ; + skos:prefLabel "open circuit voltage"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007211.ttl b/vocabularies/voc4cat/IDs0007xxx/0007211.ttl new file mode 100644 index 00000000..40497d82 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007211.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007211 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007211"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "LSV"@en ; + skos:broader voc4cat:0007237 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A voltammetry where the voltage changes linearly over time from a initial potential to a final potential."@en ; + skos:inScheme ; + skos:prefLabel "linear sweep voltammetry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007212.ttl b/vocabularies/voc4cat/IDs0007xxx/0007212.ttl new file mode 100644 index 00000000..7723808e --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007212.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007212 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007212"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "CC"@en ; + skos:broader voc4cat:0007206 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "An electrochemical measuring technique used for electrochemical analysis or for the determination of the kinetics and mechanism of electrode reactions. A fast-rising potential pulse is enforced on the working electrode of an electrochemical cell and the electrical charge passing through this electrode is measured as a function of time."@en ; + skos:inScheme ; + skos:prefLabel "chronocoulometry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007213.ttl b/vocabularies/voc4cat/IDs0007xxx/0007213.ttl new file mode 100644 index 00000000..7cebd663 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007213.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007213 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007213"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "sweep rate potential"@en ; + skos:broader voc4cat:0007219 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "In cyclic voltammetry, the rate at which the potential of the working electrode is varied, i.e., = (dE/dt). The value of is always cited as positive."@en ; + skos:inScheme ; + skos:prefLabel "scan rate potential"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007214.ttl b/vocabularies/voc4cat/IDs0007xxx/0007214.ttl new file mode 100644 index 00000000..22d07cbb --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007214.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007214 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007214"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007219 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The minimal electrical potential in a cyclic voltammetry. This is where the sweep turns."@en ; + skos:inScheme ; + skos:prefLabel "lower limit potential"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007215.ttl b/vocabularies/voc4cat/IDs0007xxx/0007215.ttl new file mode 100644 index 00000000..96c680aa --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007215.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007215 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007215"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007219 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The maximal electrical potential in a cyclic voltammetry. This is where the sweep turns."@en ; + skos:inScheme ; + skos:prefLabel "upper limit potential"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007216.ttl b/vocabularies/voc4cat/IDs0007xxx/0007216.ttl new file mode 100644 index 00000000..9747a535 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007216.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007216 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007216"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007219 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The electrical potential at which a linear sweep or cyclic voltammetry starts."@en ; + skos:inScheme ; + skos:prefLabel "initial potential"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007217.ttl b/vocabularies/voc4cat/IDs0007xxx/0007217.ttl new file mode 100644 index 00000000..b2e46b5a --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007217.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007217 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007217"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007219 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The electrical potential at which a linear sweep or cyclic voltammetry ends."@en ; + skos:inScheme ; + skos:prefLabel "final potential"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007218.ttl b/vocabularies/voc4cat/IDs0007xxx/0007218.ttl new file mode 100644 index 00000000..e1d51152 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007218.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007218 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007218"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007219 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The electrical potential difference at which the potential in a linear sweep or cyclic voltammetry is altered."@en ; + skos:inScheme ; + skos:prefLabel "step size potential"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007219.ttl b/vocabularies/voc4cat/IDs0007xxx/0007219.ttl new file mode 100644 index 00000000..a429e8d3 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007219.ttl @@ -0,0 +1,27 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007219 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007219"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "voltage"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Defined as the amount of work needed per unit of electric charge to move the charge from a reference point to a specific point in an electric field. By definition, the electric potential at the reference point is zero units. A typical reference point is earth (ground)."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0007213 , + voc4cat:0007214 , + voc4cat:0007215 , + voc4cat:0007216 , + voc4cat:0007217 , + voc4cat:0007218 ; + skos:prefLabel "electrical potential"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007220.ttl b/vocabularies/voc4cat/IDs0007xxx/0007220.ttl new file mode 100644 index 00000000..d543ac28 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007220.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007220 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007220"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The movement of electrical charges in a conductor; carried by electrons in an electronic conductor (electronic current) or by ions in an ionic conductor (ionic current)."@en ; + skos:inScheme ; + skos:narrower voc4cat:0007259 ; + skos:prefLabel "current"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007221.ttl b/vocabularies/voc4cat/IDs0007xxx/0007221.ttl new file mode 100644 index 00000000..9b1e231f --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007221.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007221 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007221"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Current referred to the unit area of the electrode. Current divided by the true electrode area."@en ; + skos:inScheme ; + skos:prefLabel "current density"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007222.ttl b/vocabularies/voc4cat/IDs0007xxx/0007222.ttl new file mode 100644 index 00000000..ace589a1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007222.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007222 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007222"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The measure of an electrical circuit element's inability to carry electrical current."@en ; + skos:inScheme ; + skos:prefLabel "resistance"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007223.ttl b/vocabularies/voc4cat/IDs0007xxx/0007223.ttl new file mode 100644 index 00000000..71faedd4 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007223.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007223 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007223"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The final environment in which the electrochemical reaction happens. Includes possibly purged electrolyte."@en ; + skos:inScheme ; + skos:prefLabel "electrochemical environment"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007224.ttl b/vocabularies/voc4cat/IDs0007xxx/0007224.ttl new file mode 100644 index 00000000..3e85a11e --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007224.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007224 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007224"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A chemical compound (salt, acid, or base) that dissociates into electrically charged ions when dissolved in a solvent."@en ; + skos:inScheme ; + skos:prefLabel "electrolyte"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007225.ttl b/vocabularies/voc4cat/IDs0007xxx/0007225.ttl new file mode 100644 index 00000000..7ee4307b --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007225.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007225 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007225"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The process of treating an electrolyte solution with gas."@en ; + skos:inScheme ; + skos:prefLabel "purging"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007226.ttl b/vocabularies/voc4cat/IDs0007xxx/0007226.ttl new file mode 100644 index 00000000..4cb8fe3b --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007226.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007226 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007226"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Gas which is used in purging."@en ; + skos:inScheme ; + skos:prefLabel "purging gas"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007227.ttl b/vocabularies/voc4cat/IDs0007xxx/0007227.ttl new file mode 100644 index 00000000..453a019c --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007227.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007227 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007227"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Temperature for which a gas is purged through the reaction chamber."@en ; + skos:inScheme ; + skos:prefLabel "purging temperature"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007228.ttl b/vocabularies/voc4cat/IDs0007xxx/0007228.ttl new file mode 100644 index 00000000..b5f133f9 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007228.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007228 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007228"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The number of cycles in a measurement, such as a cyclic voltammetry."@en ; + skos:inScheme ; + skos:prefLabel "number of voltammetry cycles"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007229.ttl b/vocabularies/voc4cat/IDs0007xxx/0007229.ttl new file mode 100644 index 00000000..81103b4d --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007229.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007229 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007229"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The quotient of faradaic current to total current passed."@en ; + skos:inScheme ; + skos:prefLabel "faradaic efficiency"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007230.ttl b/vocabularies/voc4cat/IDs0007xxx/0007230.ttl new file mode 100644 index 00000000..0f4ba906 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007230.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007230 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007230"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The collection of instruments and devices used in an electochemical reaction. Can include electrodes, flow cells, beaker, does not include the electrochemical environment."@en ; + skos:inScheme ; + skos:prefLabel "electrochemical setup"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007231.ttl b/vocabularies/voc4cat/IDs0007xxx/0007231.ttl new file mode 100644 index 00000000..837902b0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007231.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007231 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007231"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "becker"@en , + "beker"@en ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "In laboratory equipment, a beaker is generally a cylindrical container with a flat bottom."@en ; + skos:inScheme ; + skos:prefLabel "beaker"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007232.ttl b/vocabularies/voc4cat/IDs0007xxx/0007232.ttl new file mode 100644 index 00000000..bb9c4d70 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007232.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007232 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007232"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Electrochemical cell in which analyte solution flows at a constant velocity through stationary tubular electrode(s)."@en ; + skos:inScheme ; + skos:prefLabel "flow cell"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007233.ttl b/vocabularies/voc4cat/IDs0007xxx/0007233.ttl new file mode 100644 index 00000000..da747327 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007233.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007233 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007233"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "In voltammetry: a complementary pair of forward and reverse potential sweeps."@en ; + skos:inScheme ; + skos:prefLabel "voltammetry cycle"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007234.ttl b/vocabularies/voc4cat/IDs0007xxx/0007234.ttl new file mode 100644 index 00000000..72d007c2 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007234.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007234 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007234"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000183 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The phenomenon of movement (transportation) of electrical charge (that is, the electrical current) from one part of the electrochemical cell to another, occurring mainly as electromigration of ions, but it can also occur by diffusion of ions. See electrochemical potential."@en ; + skos:inScheme ; + skos:prefLabel "charge transport"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007235.ttl b/vocabularies/voc4cat/IDs0007xxx/0007235.ttl new file mode 100644 index 00000000..6cfdf330 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007235.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007235 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007235"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "separator"@en ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A thin structural material (usually a sheet) used to separate the electrolyte of a divided electrochemical cell into two or more compartments."@en ; + skos:inScheme ; + skos:prefLabel "membrane"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007236.ttl b/vocabularies/voc4cat/IDs0007xxx/0007236.ttl new file mode 100644 index 00000000..8a514fed --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007236.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007236 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007236"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "H-cell"@en ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The H-Cell is a two-compartment electrochemical cell used for membrane testing, hydrogen permeation, or any other experiment where two separate electrode chambers are required."@en ; + skos:inScheme ; + skos:prefLabel "H cell"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007237.ttl b/vocabularies/voc4cat/IDs0007xxx/0007237.ttl new file mode 100644 index 00000000..dddf6bfc --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007237.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007237 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007237"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007206 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "An electrochemical measuring technique used for electrochemical analysis, for the determination of the kinetics and mechanism of electrode reactions, and for corrosion studies. \"Voltammetry\" is a family of techniques with the common characteristics that the potential of the working electrode is controlled (typically with a potentiostat) and the current flowing through the electrode is measured."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000082 , + voc4cat:0007207 , + voc4cat:0007211 ; + skos:prefLabel "voltammetry"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007238.ttl b/vocabularies/voc4cat/IDs0007xxx/0007238.ttl new file mode 100644 index 00000000..f16019d1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007238.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007238 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007238"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Graphical representation of the results of a voltammetric measurement."@en ; + skos:inScheme ; + skos:prefLabel "voltammogramm"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007239.ttl b/vocabularies/voc4cat/IDs0007xxx/0007239.ttl new file mode 100644 index 00000000..9af4de9e --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007239.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007239 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007239"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The frequency of an alternating (ac) current is a measure of how many times the direction of the current flow changes, in the same direction, per second. As the direction of flow changes back and forth, the total number of directional changes, per second, is twice the frequency."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0007241 , + voc4cat:0007242 ; + skos:prefLabel "frequency"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007240.ttl b/vocabularies/voc4cat/IDs0007xxx/0007240.ttl new file mode 100644 index 00000000..bd9a4c7d --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007240.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007240 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007240"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Impedance is the analogue of the resistance when applied to alternating current. That is, it is a measure of a circuit element's inability to carry the electrical current."@en ; + skos:inScheme ; + skos:prefLabel "impedance"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007241.ttl b/vocabularies/voc4cat/IDs0007xxx/0007241.ttl new file mode 100644 index 00000000..9f38e020 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007241.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007241 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007241"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007239 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Initial frequency in for example an electrochemical impedance spectroscopy."@en ; + skos:inScheme ; + skos:prefLabel "initial frequency"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007242.ttl b/vocabularies/voc4cat/IDs0007xxx/0007242.ttl new file mode 100644 index 00000000..a257a89a --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007242.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007242 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007242"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007239 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Final frequency in for example an electrochemical impedance spectroscopy."@en ; + skos:inScheme ; + skos:prefLabel "final frequency"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007243.ttl b/vocabularies/voc4cat/IDs0007xxx/0007243.ttl new file mode 100644 index 00000000..824a6afd --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007243.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007243 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007243"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "RHE"@en ; + skos:broader voc4cat:0007201 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A commonly used reference electrode. A hydrogen electrode immersed directly into the electrolyte of the electrochemical cell and usually (unless otherwise stated) operated with one atmosphere pressure hydrogen gas. The equilibrium potential depends on the hydrogen ion concentration (strictly speaking, activity) of the cell electrolyte."@en ; + skos:inScheme ; + skos:prefLabel "reversible hydrogen electrode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007244.ttl b/vocabularies/voc4cat/IDs0007xxx/0007244.ttl new file mode 100644 index 00000000..1bd7ab3a --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007244.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007244 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007244"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The measure of the amount of dissolved material (solute) in a solution."@en ; + skos:inScheme ; + skos:prefLabel "concentration"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007245.ttl b/vocabularies/voc4cat/IDs0007xxx/0007245.ttl new file mode 100644 index 00000000..b5ffebec --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007245.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007245 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007245"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The mass per area on a thin film sample, i.e. the working electrode."@en ; + skos:inScheme ; + skos:prefLabel "mass coverage"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007246.ttl b/vocabularies/voc4cat/IDs0007xxx/0007246.ttl new file mode 100644 index 00000000..f761c378 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007246.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007246 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007246"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A liquid that dissolves another material."@en ; + skos:inScheme ; + skos:prefLabel "solvent"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007247.ttl b/vocabularies/voc4cat/IDs0007xxx/0007247.ttl new file mode 100644 index 00000000..2c693020 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007247.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007247 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007247"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The dissolved species (e.g., a salt) in a solution."@en ; + skos:inScheme ; + skos:prefLabel "solute"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007248.ttl b/vocabularies/voc4cat/IDs0007xxx/0007248.ttl new file mode 100644 index 00000000..b30c87ef --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007248.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007248 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007248"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "RDE"@en , + "rotating disk electrode"@en ; + skos:broader voc4cat:0007201 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A specialized hydrodynamic electrode used in the study of the kinetics and mechanism of electrode reactions and in electroanalysis for ensuring a known and controllable flow of solution over the electrode."@en ; + skos:inScheme ; + skos:prefLabel "rotating-disk electrode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007249.ttl b/vocabularies/voc4cat/IDs0007xxx/0007249.ttl new file mode 100644 index 00000000..6c09777c --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007249.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007249 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007249"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A device that converts chemical energy into electrical energy or vice versa when a chemical reaction is occurring in the cell. Typically, it consists of two metal electrodes immersed into an aqueous solution (electrolyte) with electrode reactions occurring at the electrode-solution surfaces. See also galvanic cell and electrolytic cell."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0000209 , + voc4cat:0007256 , + voc4cat:0007257 ; + skos:prefLabel "electrochemical cell"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007250.ttl b/vocabularies/voc4cat/IDs0007xxx/0007250.ttl new file mode 100644 index 00000000..3d4bd8ac --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007250.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007250 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007250"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000187 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Equipment used in an electrochemical setup."@en ; + skos:inScheme ; + skos:prefLabel "electrochemical equipment"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007251.ttl b/vocabularies/voc4cat/IDs0007xxx/0007251.ttl new file mode 100644 index 00000000..0cdbbd0c --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007251.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007251 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007251"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "OCP measurement"@en , + "OCV measurement"@en ; + skos:broader voc4cat:0000184 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The measurement of the open circuit voltage of an electrochemical cell."@en ; + skos:inScheme ; + skos:prefLabel "open circuit voltage measurement"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007252.ttl b/vocabularies/voc4cat/IDs0007xxx/0007252.ttl new file mode 100644 index 00000000..33ea9db9 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007252.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007252 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007252"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A basic property of matter that gives rise to all electric and magnetic forces and interactions."@en ; + skos:inScheme ; + skos:prefLabel "electrical charge"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007253.ttl b/vocabularies/voc4cat/IDs0007xxx/0007253.ttl new file mode 100644 index 00000000..5fc2f16f --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007253.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007253 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007253"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "Charge referred to the unit area of the electrode. Charge divided by electrode area."@en ; + skos:inScheme ; + skos:prefLabel "electrical charge density"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007254.ttl b/vocabularies/voc4cat/IDs0007xxx/0007254.ttl new file mode 100644 index 00000000..c3dcb96a --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007254.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007254 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007254"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007201 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The electrode where reduction occurs in an electrochemical cell. It is the negative electrode in an electrolytic cell, while it is the positive electrode in a galvanic cell."@en ; + skos:inScheme ; + skos:prefLabel "cathode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007255.ttl b/vocabularies/voc4cat/IDs0007xxx/0007255.ttl new file mode 100644 index 00000000..89977dae --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007255.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007255 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007255"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007201 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The electrode where oxidation occurs in an electrochemical cell. It is the positive electrode in an electrolytic cell, while it is the negative electrode in a galvanic cell."@en ; + skos:inScheme ; + skos:prefLabel "anode"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007256.ttl b/vocabularies/voc4cat/IDs0007xxx/0007256.ttl new file mode 100644 index 00000000..79e5287b --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007256.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007256 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007256"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007249 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "An electrochemical cell that converts chemical energy into electrical energy. A cell in which chemical reactions occur spontaneously at the electrodes when they are connected through an external circuit, producing an electrical current."@en ; + skos:inScheme ; + skos:prefLabel "galvanic cell"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007257.ttl b/vocabularies/voc4cat/IDs0007xxx/0007257.ttl new file mode 100644 index 00000000..0f7b6133 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007257.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007257 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007257"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007249 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "An electrochemical cell that converts electrical energy into chemical energy. The chemical reactions do not occur \"spontaneously\" at the electrodes when they are connected through an external circuit. The reaction must be forced by applying an external electrical current."@en ; + skos:inScheme ; + skos:prefLabel "electrolytic cell"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007258.ttl b/vocabularies/voc4cat/IDs0007xxx/0007258.ttl new file mode 100644 index 00000000..8fd34515 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007258.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007258 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007258"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "true electrode area"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "In contrast to substrate area, the actual area of a sample or electrode which is active."@en ; + skos:inScheme ; + skos:prefLabel "active area"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007259.ttl b/vocabularies/voc4cat/IDs0007xxx/0007259.ttl new file mode 100644 index 00000000..77c15725 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007259.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007259 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007259"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0007220 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The current that is flowing through an electrochemical cell and is causing (or is caused by) chemical reactions (charge transfer) occurring at the electrode surfaces."@en ; + skos:inScheme ; + skos:prefLabel "faradaic current"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007260.ttl b/vocabularies/voc4cat/IDs0007xxx/0007260.ttl new file mode 100644 index 00000000..23fac3a5 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007260.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007260 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007260"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A measure of the time taken for a solute to pass through a chromatography column. It is the mean of the residence time distribution; it is known as the first moment of the residence time distribution."@en ; + skos:inScheme ; + skos:prefLabel "retention time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007261.ttl b/vocabularies/voc4cat/IDs0007xxx/0007261.ttl new file mode 100644 index 00000000..2e726540 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007261.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007261 + a skos:Concept ; + dcterms:created "2024-02-28"^^xsd:date ; + dcterms:identifier "0007261"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "A measure which is proportional to the amount of a product with a specific retention time. After calibration it is used to calculate gas concentrations of products of an chemical experiment."@en ; + skos:inScheme ; + skos:prefLabel "peak area"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007262.ttl b/vocabularies/voc4cat/IDs0007xxx/0007262.ttl new file mode 100644 index 00000000..f03583b6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007262.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007262 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007262"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The thickness of the membrane."@en ; + skos:inScheme ; + skos:prefLabel "membrane thickness"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007263.ttl b/vocabularies/voc4cat/IDs0007xxx/0007263.ttl new file mode 100644 index 00000000..88f89536 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007263.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007263 + a skos:Concept ; + dcterms:created "2024-02-02"^^xsd:date ; + dcterms:identifier "0007263"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0008-1278-8890 Michael Götte created the resource"@en ; + skos:definition "The sum of all faradaic efficiencies in an experiment. If all current is accounted for should be 1."@en ; + skos:inScheme ; + skos:prefLabel "total faradaic efficiency"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007793.ttl b/vocabularies/voc4cat/IDs0007xxx/0007793.ttl new file mode 100644 index 00000000..8a02c701 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007793.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007793 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007793"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "A substance that is added to a reaction or material and influences the reaction outcome or material properties."@en ; + skos:inScheme ; + skos:prefLabel "additive"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007794.ttl b/vocabularies/voc4cat/IDs0007xxx/0007794.ttl new file mode 100644 index 00000000..1f86f587 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007794.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007794 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007794"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "A substance which is used as starting material for the synthesis of a functional material, for example a catalyst, and is transformed during the synthesis."@en ; + skos:inScheme ; + skos:prefLabel "precursor"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007795.ttl b/vocabularies/voc4cat/IDs0007xxx/0007795.ttl new file mode 100644 index 00000000..b2e7d5ca --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007795.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007795 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007795"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "co precipitation"@en , + "coprecipitation"@en ; + skos:broader voc4cat:0007016 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "A synthesis method for chemical substances which includes the simultaneous precipitation of two or more precursors."@en ; + skos:inScheme ; + skos:prefLabel "co-precipitation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007803.ttl b/vocabularies/voc4cat/IDs0007xxx/0007803.ttl new file mode 100644 index 00000000..8bfd5f16 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007803.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007803 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007803"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "TON"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "The number of converted substrate molecules per active catalytic site."@en ; + skos:inScheme ; + skos:prefLabel "turnover number"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007806.ttl b/vocabularies/voc4cat/IDs0007xxx/0007806.ttl new file mode 100644 index 00000000..1caeb8ae --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007806.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007806 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007806"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "IWI"@en ; + skos:broader voc4cat:0007028 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "A synthesis method in which inorganic compounds are dissolved in a solvent and brought into contact with a solid support in order to deposit them. The volume of the solution corresponds exactly to the pore volume."@en ; + skos:inScheme ; + skos:prefLabel "incipient wetness impregnation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007807.ttl b/vocabularies/voc4cat/IDs0007xxx/0007807.ttl new file mode 100644 index 00000000..806f76aa --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007807.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007807 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007807"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "operando characterization"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "Characterization during the ongoing catalytic process whereby the catalytic activity is measured simultaneously."@en ; + skos:inScheme ; + skos:prefLabel "operando analysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007808.ttl b/vocabularies/voc4cat/IDs0007xxx/0007808.ttl new file mode 100644 index 00000000..2f2c720c --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007808.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007808 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007808"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "in situ analysis"@en , + "in situ characterization"@en , + "in-situ characterization"@en ; + skos:broader voc4cat:0000066 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "Characterization under the catalytic conditions without measuring the catalytic activity simultaneously."@en ; + skos:inScheme ; + skos:prefLabel "in-situ analysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007809.ttl b/vocabularies/voc4cat/IDs0007xxx/0007809.ttl new file mode 100644 index 00000000..c28dcadf --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007809.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007809 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007809"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "The gaseous environment in which a process, such as a catalytic test, synthesis or a measurement, takes place."@en ; + skos:inScheme ; + skos:prefLabel "atmosphere"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007811.ttl b/vocabularies/voc4cat/IDs0007xxx/0007811.ttl new file mode 100644 index 00000000..92770bb0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007811.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007811 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007811"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0005056 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "Liquid fraction which is collected from the catalytic reaction mixture for analysis."@en ; + skos:inScheme ; + skos:prefLabel "liquid sample"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007812.ttl b/vocabularies/voc4cat/IDs0007xxx/0007812.ttl new file mode 100644 index 00000000..b6406e42 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007812.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007812 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007812"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "gas sample"@en ; + skos:broader voc4cat:0005056 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "Gaseous fraction which is collected from the catalytic reaction mixture for analysis."@en ; + skos:inScheme ; + skos:prefLabel "gaseous sample"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007813.ttl b/vocabularies/voc4cat/IDs0007xxx/0007813.ttl new file mode 100644 index 00000000..2834e573 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007813.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007813 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007813"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "liquid phase characterization"@en , + "liquid-phase analysis"@en , + "liquid-phase characterization"@en ; + skos:broader voc4cat:0000129 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "Analysis of the liquid sample from a catalytic test."@en ; + skos:inScheme ; + skos:prefLabel "liquid phase analysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007814.ttl b/vocabularies/voc4cat/IDs0007xxx/0007814.ttl new file mode 100644 index 00000000..1cbd2510 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007814.ttl @@ -0,0 +1,23 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007814 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007814"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "gas phase characterization"@en , + "gas-phase analysis"@en , + "gas-phase characterization"@en ; + skos:broader voc4cat:0000129 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "Analysis of the gaseous sample from a catalytic test."@en ; + skos:inScheme ; + skos:prefLabel "gas phase analysis"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007817.ttl b/vocabularies/voc4cat/IDs0007xxx/0007817.ttl new file mode 100644 index 00000000..51019aae --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007817.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007817 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007817"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "TOF"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "The number of converted substrate molecules per active catalytic site per time which is equal to the turnover number per time."@en ; + skos:inScheme ; + skos:prefLabel "turnover frequency"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007828.ttl b/vocabularies/voc4cat/IDs0007xxx/0007828.ttl new file mode 100644 index 00000000..8db102fc --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007828.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007828 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007828"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "A compound that is used to generate a calibration curve which can then be used to determine the concentration of a compound in a reaction mixture."@en ; + skos:inScheme ; + skos:prefLabel "external standard"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007829.ttl b/vocabularies/voc4cat/IDs0007xxx/0007829.ttl new file mode 100644 index 00000000..1ef746aa --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007829.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007829 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007829"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "A compound that is added in a known concentration to a product mixture to determine the concentration of another compound."@en ; + skos:inScheme ; + skos:prefLabel "internal standard"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007838.ttl b/vocabularies/voc4cat/IDs0007xxx/0007838.ttl new file mode 100644 index 00000000..71a3408e --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007838.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007838 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007838"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000181 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "The sum of all products after a catalytic reaction which is analysed to measure the catalytic performance."@en ; + skos:inScheme ; + skos:prefLabel "product mixture"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007839.ttl b/vocabularies/voc4cat/IDs0007xxx/0007839.ttl new file mode 100644 index 00000000..9f110ce3 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007839.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007839 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007839"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "Description if a substance is brought into a homogeneous solution in the presence of a liquid solvent or if it remains (partly) undissolved."@en ; + skos:inScheme ; + skos:prefLabel "solubility"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007840.ttl b/vocabularies/voc4cat/IDs0007xxx/0007840.ttl new file mode 100644 index 00000000..ea782f4b --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007840.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007840 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007840"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000049 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "A step within the synthesis of a catalyst whereby a precursor is dissolved or dispersed in a solution."@en ; + skos:inScheme ; + skos:prefLabel "solvation"@en ; +. diff --git a/vocabularies/voc4cat/IDs0007xxx/0007844.ttl b/vocabularies/voc4cat/IDs0007xxx/0007844.ttl new file mode 100644 index 00000000..2192d9e1 --- /dev/null +++ b/vocabularies/voc4cat/IDs0007xxx/0007844.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0007844 + a skos:Concept ; + dcterms:created "2025-08-22"^^xsd:date ; + dcterms:identifier "0007844"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0000-0003-4418-7455 Franziska Flecken created the resource"@en ; + skos:definition "Ratio of the amount of one substance compared to the amount of another substance."@en ; + skos:inScheme ; + skos:prefLabel "molar equivalent"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008081.ttl b/vocabularies/voc4cat/IDs0008xxx/0008081.ttl new file mode 100644 index 00000000..6f611279 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008081.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008081 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008081"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000286 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Mode of XAS measurement where absorption is determined from transmitted X-rays."@en ; + skos:inScheme ; + skos:prefLabel "XAS Transmission"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008082.ttl b/vocabularies/voc4cat/IDs0008xxx/0008082.ttl new file mode 100644 index 00000000..41a439db --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008082.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008082 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008082"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000286 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Mode of XAS measurement where absorption is probed via fluorescence yield."@en ; + skos:inScheme ; + skos:prefLabel "XAS Fluorescence"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008083.ttl b/vocabularies/voc4cat/IDs0008xxx/0008083.ttl new file mode 100644 index 00000000..b2305570 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008083.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008083 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008083"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "SDD"@en , + "silicon-drift detector"@en ; + skos:broader voc4cat:0000191 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Semiconductor-based X-ray detector type commonly used for fluorescence measurements, providing high energy resolution and fast count rates."@en ; + skos:inScheme ; + skos:prefLabel "silicon drift detector"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008084.ttl b/vocabularies/voc4cat/IDs0008xxx/0008084.ttl new file mode 100644 index 00000000..5b041d46 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008084.ttl @@ -0,0 +1,24 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008084 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008084"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "dead time"@en , + "dead-time"@en ; + skos:broader + voc4cat:0008099 , + voc4cat:0008100 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Time interval after each detection event during which the detector is unable to record another event."@en ; + skos:inScheme ; + skos:prefLabel "detector dead time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008085.ttl b/vocabularies/voc4cat/IDs0008xxx/0008085.ttl new file mode 100644 index 00000000..15f71014 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008085.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008085 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008085"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "dead-time correction"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Mathematical correction applied to compensate for detector dead time effects in measured count rates."@en ; + skos:inScheme ; + skos:prefLabel "dead time correction"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008086.ttl b/vocabularies/voc4cat/IDs0008xxx/0008086.ttl new file mode 100644 index 00000000..766eccd6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008086.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008086 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008086"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "The ratio of emitted fluorescence photons to absorbed photons."@en ; + skos:inScheme ; + skos:prefLabel "fluorescence yield"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008087.ttl b/vocabularies/voc4cat/IDs0008xxx/0008087.ttl new file mode 100644 index 00000000..de5d1df6 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008087.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008087 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008087"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Dimensionless quantity that expresses how much of the incident radiation is absorbed by a material. It is defined as the negative logarithm of the ratio of transmitted intensity to the incident intensity. Absorbance depends on the absorption properties of the material, the path length, and the concentration of absorbing species."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0008088 , + voc4cat:0008089 ; + skos:prefLabel "absorbance"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008088.ttl b/vocabularies/voc4cat/IDs0008xxx/0008088.ttl new file mode 100644 index 00000000..f050fcce --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008088.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008088 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008088"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader + voc4cat:0000186 , + voc4cat:0008087 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Absorbance measured on a reference material under the same experimental conditions as the sample. Typically used for calibration, normalization, or comparison."@en ; + skos:inScheme ; + skos:prefLabel "absorbance of the reference"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008089.ttl b/vocabularies/voc4cat/IDs0008xxx/0008089.ttl new file mode 100644 index 00000000..2d6e5770 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008089.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008089 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008089"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader + voc4cat:0000186 , + voc4cat:0008087 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Absorbance measured on the investigated sample, quantifying how much of the incident radiation is absorbed relative to the incident beam."@en ; + skos:inScheme ; + skos:prefLabel "absorbance of the sample"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008090.ttl b/vocabularies/voc4cat/IDs0008xxx/0008090.ttl new file mode 100644 index 00000000..bdb5c3f0 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008090.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008090 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008090"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "User-applied offset to shift a measured energy scale, where positive values are added and negative values are subtracted, in order to align the data with a known reference (true energy value = measured energy value + offset)."@en ; + skos:inScheme ; + skos:prefLabel "manual energy shift"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008091.ttl b/vocabularies/voc4cat/IDs0008xxx/0008091.ttl new file mode 100644 index 00000000..7f850fd9 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008091.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008091 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008091"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "fluo"@en , + "fluorescence"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Measured detector signal resulting from fluorescence photons emitted by the sample upon X-ray excitation."@en ; + skos:inScheme ; + skos:prefLabel "fluorescence signal"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008092.ttl b/vocabularies/voc4cat/IDs0008xxx/0008092.ttl new file mode 100644 index 00000000..758c7f19 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008092.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008092 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008092"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "ICR"@en ; + skos:broader voc4cat:0008100 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Number of events per unit time arriving at the detector before dead time losses are considered."@en ; + skos:inScheme ; + skos:prefLabel "incoming count rate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008093.ttl b/vocabularies/voc4cat/IDs0008xxx/0008093.ttl new file mode 100644 index 00000000..62c19188 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008093.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008093 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008093"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "OCR"@en , + "output count rate"@en ; + skos:broader voc4cat:0008100 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Number of events per unit time successfully processed and recorded by the detector after dead time losses."@en ; + skos:inScheme ; + skos:prefLabel "outgoing count rate"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008094.ttl b/vocabularies/voc4cat/IDs0008xxx/0008094.ttl new file mode 100644 index 00000000..28919f6f --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008094.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008094 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008094"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "TLT"@en ; + skos:broader voc4cat:0008100 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Time period during which a detector is ready to trigger on incoming events."@en ; + skos:inScheme ; + skos:prefLabel "trigger live time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008095.ttl b/vocabularies/voc4cat/IDs0008xxx/0008095.ttl new file mode 100644 index 00000000..a11b113d --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008095.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008095 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008095"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "LT"@en , + "live time"@en ; + skos:broader voc4cat:0008100 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Time period during which a detector is actively recording or processing events, excluding periods of dead time."@en ; + skos:inScheme ; + skos:prefLabel "effective measurement time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008096.ttl b/vocabularies/voc4cat/IDs0008xxx/0008096.ttl new file mode 100644 index 00000000..a03f7f61 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008096.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008096 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008096"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "RT"@en , + "real time"@en ; + skos:broader voc4cat:0008100 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "The total duration over which a measurement is conducted, including both the periods when the detector or measurement system is actively recording events and the periods when it is inactive due to dead time or processing delays."@en ; + skos:inScheme ; + skos:prefLabel "total measurement time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008097.ttl b/vocabularies/voc4cat/IDs0008xxx/0008097.ttl new file mode 100644 index 00000000..332b350e --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008097.ttl @@ -0,0 +1,22 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008097 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008097"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel + "energy"@en , + "photon energy"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Energy of X-ray photons, representing the incident radiation in a measurement."@en ; + skos:inScheme ; + skos:prefLabel "X-ray photon energy"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008098.ttl b/vocabularies/voc4cat/IDs0008xxx/0008098.ttl new file mode 100644 index 00000000..3eb55f36 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008098.ttl @@ -0,0 +1,39 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008098 + a skos:Collection ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008098"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:isDefinedBy ; + rdfs:seeAlso ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the collection"@en ; + skos:definition "A collection of concepts related to X-ray Absorption Spectroscopy (XAS)."@en ; + skos:inScheme ; + skos:member + voc4cat:0000092 , + voc4cat:0000286 , + voc4cat:0008081 , + voc4cat:0008082 , + voc4cat:0008083 , + voc4cat:0008084 , + voc4cat:0008085 , + voc4cat:0008086 , + voc4cat:0008087 , + voc4cat:0008088 , + voc4cat:0008089 , + voc4cat:0008090 , + voc4cat:0008091 , + voc4cat:0008092 , + voc4cat:0008093 , + voc4cat:0008094 , + voc4cat:0008095 , + voc4cat:0008096 , + voc4cat:0008097 ; + skos:prefLabel "XAS collection"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008099.ttl b/vocabularies/voc4cat/IDs0008xxx/0008099.ttl new file mode 100644 index 00000000..4424c179 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008099.ttl @@ -0,0 +1,21 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008099 + a skos:Concept ; + dcterms:created "2025-08-27"^^xsd:date ; + dcterms:identifier "0008099"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "dead-time"@en ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Time interval after an event during which a system or process is unable to respond to or record a subsequent event."@en ; + skos:inScheme ; + skos:narrower voc4cat:0008084 ; + skos:prefLabel "dead time"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008100.ttl b/vocabularies/voc4cat/IDs0008xxx/0008100.ttl new file mode 100644 index 00000000..f220f6af --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008100.ttl @@ -0,0 +1,26 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008100 + a skos:Concept ; + dcterms:created "2025-09-08"^^xsd:date ; + dcterms:identifier "0008100"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000186 ; + skos:changeNote "0009-0004-3786-0773 Carla Terboven created the resource"@en ; + skos:definition "Measurable quantity that characterizes the performance or operational behavior of a detector during active operation."@en ; + skos:inScheme ; + skos:narrower + voc4cat:0008084 , + voc4cat:0008092 , + voc4cat:0008093 , + voc4cat:0008094 , + voc4cat:0008095 , + voc4cat:0008096 ; + skos:prefLabel "detector performance measure"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008101.ttl b/vocabularies/voc4cat/IDs0008xxx/0008101.ttl new file mode 100644 index 00000000..a1f5ae6f --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008101.ttl @@ -0,0 +1,20 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008101 + a skos:Concept ; + dcterms:created "2025-12-28"^^xsd:date ; + dcterms:identifier "0008101"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:altLabel "Metal leaching"@en ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0001-5161-4801 Arjun Neyyathala created this resource"@en ; + skos:definition "The loss of catalytically active species from a solid catalyst into the surrounding reaction medium."@en ; + skos:inScheme ; + skos:prefLabel "Catalyst leaching"@en ; +. diff --git a/vocabularies/voc4cat/IDs0008xxx/0008102.ttl b/vocabularies/voc4cat/IDs0008xxx/0008102.ttl new file mode 100644 index 00000000..091e3011 --- /dev/null +++ b/vocabularies/voc4cat/IDs0008xxx/0008102.ttl @@ -0,0 +1,19 @@ +PREFIX dcterms: +PREFIX rdfs: +PREFIX skos: +PREFIX voc4cat: +PREFIX xsd: + +voc4cat:0008102 + a skos:Concept ; + dcterms:created "2025-12-28"^^xsd:date ; + dcterms:identifier "0008102"^^xsd:token ; + dcterms:modified "2025-12-31"^^xsd:date ; + dcterms:provenance ; + rdfs:seeAlso ; + skos:broader voc4cat:0000185 ; + skos:changeNote "0000-0001-5161-4801 Arjun Neyyathala created this resource"@en ; + skos:definition "The progressive loss of catalytic activity and/or selectivity over time. Typically caused by factors such as chemical poisoning, fouling, thermal degradation, chemical degradation, or mechanical failure."@en ; + skos:inScheme ; + skos:prefLabel "Catalyst deactivation"@en ; +. diff --git a/vocabularies/voc4cat/concept_scheme.ttl b/vocabularies/voc4cat/concept_scheme.ttl index bf4e72c0..edb186f2 100644 --- a/vocabularies/voc4cat/concept_scheme.ttl +++ b/vocabularies/voc4cat/concept_scheme.ttl @@ -1,35 +1,61 @@ PREFIX dcat: PREFIX dcterms: +PREFIX foaf: PREFIX owl: +PREFIX rdfs: +PREFIX schema: PREFIX skos: +PREFIX voc4cat: PREFIX xsd: a skos:ConceptScheme ; + dcterms:conformsTo ; dcterms:created "2023-06-29"^^xsd:date ; - dcterms:creator ; - dcterms:hasPart - , - , - , - , - , - ; - dcterms:identifier "voc4cat"^^xsd:token ; - dcterms:modified "2025-12-02"^^xsd:date ; + dcterms:creator + , + ; + dcterms:identifier "https://doi.org/10.5281/zenodo.8313340" ; + dcterms:modified "2025-12-28"^^xsd:date ; dcterms:publisher ; - owl:versionInfo "automatic" ; - skos:definition """The Voc4Cat vocabulary is a collection of concepts (or "terms") from the field of catalysis and related disciplines such as chemical engineering or materials science. For each concept, Voc4Cat provides a unique resolvable persistent identifier and a carefully written textual definition, which reflects the community’s shared understanding of the concept’s meaning. + rdfs:seeAlso ; + owl:versionInfo "v_40c0ddaf" ; + skos:definition """The Voc4Cat vocabulary is a collection of concepts (or "terms") from the field of catalysis and related disciplines such as chemical engineering or materials science. For each concept, Voc4Cat provides a unique resolvable persistent identifier and a carefully written textual definition, which reflects the community's shared understanding of the concept's meaning. By using the identifiers provided by Voc4Cat to annotate data, rather than just words and symbols, ambiguity as to what is meant is avoided. Producing Voc4Cat-annotated data contributes to realising the vision of machine-actionability described as the ultimate goal of the FAIR principles. See also [voc4cat help](https://nfdi4cat.github.io/voc4cat/)."""@en ; skos:hasTopConcept - , - , - , - ; - skos:historyNote "https://orcid.org/0000-0002-5898-1820 David Linke, https://orcid.org/0000-0002-6242-2167 Nikolaos G. Moustakas"@en ; + voc4cat:0000180 , + voc4cat:0000181 , + voc4cat:0000182 , + voc4cat:0000186 ; + skos:historyNote "Created 2023-06-29."@en ; skos:prefLabel "Voc4Cat - A SKOS vocabulary for Catalysis."@en ; - dcat:contactPoint "David Linke (orcid:0000-0002-5898-1820), Nikolaos G. Moustakas (orcid:0000-0002-6242-2167)" ; + dcat:contactPoint ; + foaf:homepage ; +. + + + a schema:Person ; + schema:name "Voc4Cat curator group" ; + schema:url "https://github.com/orgs/nfdi4cat/teams/voc4cat-curators"^^xsd:anyURI ; +. + + + a schema:Person ; + schema:name "David Linke" ; + schema:url "https://orcid.org/0000-0002-5898-1820"^^xsd:anyURI ; +. + + + a schema:Person ; + schema:name "Nikolaos Moustakas" ; + schema:url "https://orcid.org/0000-0002-6242-2167"^^xsd:anyURI ; +. + + + a schema:Organization ; + schema:name "NFDI4Cat Consortium" ; + schema:url "https://w3id.org/nfdi4cat/"^^xsd:anyURI ; .