diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 3d509ec..4c8fe94 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -24,17 +24,32 @@ jobs: - name: Run EMMO Check - electrochemistry run: | - emmocheck --verbose --url-from-catalog \ - --skip test_namespace \ - --skip test_quantity_dimension \ - --configfile=.github/utils/emmocheck_config.yml \ - electrochemistry.ttl + if [ -f "electrochemistry.ttl" ]; then + emmocheck --verbose --url-from-catalog \ + --skip test_namespace \ + --skip test_quantity_dimension \ + --configfile=.github/utils/emmocheck_config.yml \ + electrochemistry.ttl + else + echo "electrochemistry.ttl not found!" + exit 1 + fi - name: Run EMMO Check - electrochemicalquantities run: | - emmocheck --verbose --url-from-catalog \ - --skip test_namespace \ - --skip test_quantity_dimension \ - --configfile=.github/utils/emmocheck_config.yml \ - electrochemicalquantities.ttl - + if [ -f "electrochemicalquantities.ttl" ]; then + emmocheck --verbose --url-from-catalog \ + --skip test_namespace \ + --skip test_quantity_dimension \ + --configfile=.github/utils/emmocheck_config.yml \ + electrochemicalquantities.ttl + elif [ -f "modules/quantities.ttl" ]; then + emmocheck --verbose --url-from-catalog \ + --skip test_namespace \ + --skip test_quantity_dimension \ + --configfile=.github/utils/emmocheck_config.yml \ + modules/quantities.ttl + else + echo "electrochemicalquantities.ttl or modules/quantities.ttl not found!" + exit 1 + fi diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 3330c95..4bd7b8a 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -4,7 +4,10 @@ on: push: branches: - 'master' - + pull_request: + branches: + - '*' # To ensure it runs on all PRs + env: GIT_USER_NAME: BattINFO Developers GIT_USER_EMAIL: "BattINFO@big-map.org" @@ -23,14 +26,14 @@ jobs: uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 #Uses python install action from here: https://github.com/marketplace?type=actions + uses: actions/setup-python@v4 with: - python-version: '3.10' # Replace with the desired Python version + python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip - pip install Markdown==3.4.3 rdflib==6.3.2 pandoc # Add any other dependencies if needed + pip install Markdown==3.4.3 rdflib==6.3.2 pandoc - name: Render documentation from ttl run: python docs/scripts/ttl_to_rst.py @@ -47,24 +50,13 @@ jobs: - name: Check if HTML context directory exists run: | if [ ! -d "docs/_build/html/context/" ]; then - echo "Creating HTML context directory" sudo mkdir -p docs/_build/html/context/ - else - echo "HTML context directory already exists" fi - if [ ! -d "docs/_build/html/assets/" ]; then - echo "Creating HTML context directory" sudo mkdir -p docs/_build/html/assets/ - else - echo "HTML assets directory already exists" fi - if [ ! -d "docs/_build/html/versions/" ]; then - echo "Creating HTML versions directory" sudo mkdir -p docs/_build/html/versions/ - else - echo "HTML version directory already exists" fi - name: Copy assets directory to HTML directory @@ -78,10 +70,14 @@ jobs: git config --local user.email "${{ env.GIT_USER_EMAIL }}" git config --local user.name "${{ env.GIT_USER_NAME }}" git add context/context.json - # Check for any changes to commit git diff --staged --quiet || git commit -m "Update context.json file" + - name: Pull latest changes + if: github.event_name == 'push' # Only pull changes during push events + run: git pull origin master --rebase + - name: Push changes + if: github.event_name == 'push' && github.ref == 'refs/heads/master' # Only push during push events on master run: git push origin HEAD:master - name: Fetch all tags and create version directories @@ -89,29 +85,43 @@ jobs: git fetch --tags git tag | while read TAG; do sudo mkdir -p "docs/_build/html/versions/$TAG" + + if [ -f "electrochemicalquantities.ttl" ]; then + python docs/scripts/apply_foops_recommendations.py electrochemicalquantities.ttl electrochemicalquantities-foops.ttl + sudo cp "electrochemicalquantities-foops.ttl" "docs/_build/html/versions/$TAG/electrochemicalquantities.ttl" + elif [ -f "modules/quantities.ttl" ]; then + python docs/scripts/apply_foops_recommendations.py modules/quantities.ttl quantities-foops.ttl + sudo cp "quantities-foops.ttl" "docs/_build/html/versions/$TAG/quantities.ttl" + else + echo "File not found!" + exit 1 + fi + python docs/scripts/apply_foops_recommendations.py electrochemistry.ttl electrochemistry-foops.ttl - python docs/scripts/apply_foops_recommendations.py electrochemicalquantities.ttl electrochemicalquantities-foops.ttl sudo cp "electrochemistry-foops.ttl" "docs/_build/html/versions/$TAG/electrochemistry.ttl" - sudo cp "electrochemicalquantities-foops.ttl" "docs/_build/html/versions/$TAG/electrochemicalquantities.ttl" sudo cp "electrochemistry-inferred.ttl" "docs/_build/html/versions/$TAG/" - if [ -d "context" ]; then - echo "Context directory exists, copying context.json to $TAG" - # Make sure the context directory exists in the version-specific directory - sudo mkdir -p "docs/_build/html/versions/$TAG/context" - # Copy context.json to the tag-specific context directory - sudo cp "context/context.json" "docs/_build/html/versions/$TAG/context" - else - echo "No context directory found in the source directory." - fi + if [ -d "context" ]; then + sudo mkdir -p "docs/_build/html/versions/$TAG/context" + sudo cp "context/context.json" "docs/_build/html/versions/$TAG/context" + fi done - name: Copy TTL files to HTML directory run: | + if [ -f "electrochemicalquantities.ttl" ]; then + python docs/scripts/apply_foops_recommendations.py electrochemicalquantities.ttl electrochemicalquantities-foops.ttl + sudo cp "electrochemicalquantities-foops.ttl" "docs/_build/html/electrochemicalquantities.ttl" + elif [ -f "modules/quantities.ttl" ]; then + python docs/scripts/apply_foops_recommendations.py modules/quantities.ttl quantities-foops.ttl + sudo cp "quantities-foops.ttl" "docs/_build/html/quantities.ttl" + else + echo "Electrochemical quantities file not found!" + exit 1 + fi + python docs/scripts/apply_foops_recommendations.py electrochemistry.ttl electrochemistry-foops.ttl - python docs/scripts/apply_foops_recommendations.py electrochemicalquantities.ttl electrochemicalquantities-foops.ttl sudo cp "electrochemistry-foops.ttl" "docs/_build/html/electrochemistry.ttl" - sudo cp "electrochemicalquantities-foops.ttl" "docs/_build/html/electrochemicalquantities.ttl" sudo cp "electrochemistry-inferred.ttl" "docs/_build/html/electrochemistry-inferred.ttl" - name: Upload artifacts @@ -121,10 +131,8 @@ jobs: path: docs/_build/html/ - name: Deploy + if: github.ref == 'refs/heads/master' && github.event_name == 'push' # Only deploy during push events on master uses: peaceiris/actions-gh-pages@v3 - if: github.ref == 'refs/heads/master' with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: docs/_build/html - - diff --git a/catalog-v001.xml b/catalog-v001.xml index d994e76..cf87cc2 100644 --- a/catalog-v001.xml +++ b/catalog-v001.xml @@ -4,8 +4,8 @@ - - + + diff --git a/docs/scripts/ttl_to_rst.py b/docs/scripts/ttl_to_rst.py index 3a6f020..17eca5a 100644 --- a/docs/scripts/ttl_to_rst.py +++ b/docs/scripts/ttl_to_rst.py @@ -1,4 +1,5 @@ from rdflib import Graph +import os @@ -135,38 +136,40 @@ def render_rst_bottom() -> str: ########### RUN THE RENDERING WORKFLOW ############## - def rendering_workflow(): - - # PAGES - ttl_modules = [ - {"section title": "Quantities used in Electrochemistry", - "path": "./electrochemicalquantities.ttl"}, - {"section title": "Electrochemistry Concepts", - "path": "./electrochemistry.ttl"} - ] + # Adapt based on file structure + ttl_modules = [] + + # Check for old structure (root directory) + if os.path.isfile("./electrochemicalquantities.ttl"): + ttl_modules.append({"section title": "Quantities used in Electrochemistry", "path": "./electrochemicalquantities.ttl"}) + elif os.path.isfile("./modules/quantities.ttl"): + ttl_modules.append({"section title": "Quantities used in Electrochemistry", "path": "./modules/quantities.ttl"}) + else: + raise FileNotFoundError("No suitable TTL file found for electrochemical quantities.") + + # Check for the electrochemistry file in the correct directory + if os.path.isfile("./electrochemistry.ttl"): + ttl_modules.append({"section title": "Electrochemistry Concepts", "path": "./electrochemistry.ttl"}) + else: + raise FileNotFoundError("No suitable TTL file found for electrochemistry concepts.") # GENERATE PAGES rst_filename = "electrochemistry.rst" - rst = render_rst_top() for module in ttl_modules: - g = load_ttl_from_url(module["path"]) - entities_list = extract_terms_info_sparql(g) page_title = module["section title"] rst += page_title + "\n" - for ind in range(len(page_title)): - rst += "=" - rst += "\n\n" + rst += "=" * len(page_title) + "\n\n" rst += entities_to_rst(entities_list) rst += render_rst_bottom() - with open("./docs/"+ rst_filename, "w+", encoding="utf-8") as f: + with open("./docs/" + rst_filename, "w+", encoding="utf-8") as f: f.write(rst) diff --git a/electrochemistry-inferred.ttl b/electrochemistry-inferred.ttl index e6e222a..e2792a6 100644 --- a/electrochemistry-inferred.ttl +++ b/electrochemistry-inferred.ttl @@ -1,54 +1,54 @@ -@prefix : . +@prefix : . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . -@base . +@base . - rdf:type owl:Ontology ; - owl:versionIRI ; - ""@en , - "CHAMEO is a domain ontology designed to model the common aspects across the different characterisation techniques and methodologies."@en , - """Defines physical quantities in the International System of Quantities (ISQ). ISQ was made an official ISO standard in 2009 and is defined in the ISO/IEC 80000 standard. + rdf:type owl:Ontology ; + owl:versionIRI ; + ""@en , + "CHAMEO is a domain ontology designed to model the common aspects across the different characterisation techniques and methodologies."@en , + """Defines physical quantities in the International System of Quantities (ISQ). ISQ was made an official ISO standard in 2009 and is defined in the ISO/IEC 80000 standard. ISQ underlines the SI system and defines physical quanties that are measured with SI units. ISQ has 7 base quantities and many derived quantities defined in terms of the 7 base quantities. The number of derived quantities not closed and may increase based on the need by domain ontologies."""@en , - """Defines properties as the result of an observation process. Observation is a semiotic process that stimulate an interpretant within the interpreter who communicates the perception result to other interpreters through a sign, which is the property. + """Defines properties as the result of an observation process. Observation is a semiotic process that stimulate an interpretant within the interpreter who communicates the perception result to other interpreters through a sign, which is the property. Hence, properties creates a link between the holistic and the perceptual perspectives. Subclasses of property are subclasses that spesialise the type of observation process."""@en , - """Defines the formal language of metrology, including theoretical and practical aspects of measurements. + """Defines the formal language of metrology, including theoretical and practical aspects of measurements. This module is based on the International vocabulary of metrology (VIM) as well as the ISO/IEC 80000 standard."""@en , - """Defines the holistic perspective which include process and the role of its participants. + """Defines the holistic perspective which include process and the role of its participants. Processes are 4D object's that unfolds in time in a way that has a meaning to the ontologist with participants who's role is assigned by the ontologist."""@en , - """Defines the perceptual perspective, which categorises real world objects according to how they are percieved by an user as a recognisable pattern in space or time. + """Defines the perceptual perspective, which categorises real world objects according to how they are percieved by an user as a recognisable pattern in space or time. The perceptual module includes formal languages, pictures, geometry, mathematics and sounds. Phenomenic objects can be used in a semiotic process as signs."""@en , - """Defines the reductionistic perspective, which uses the fundamental non-transitive parthood relation, called direct parthood, to provide a powerful granularity description of multiscale real world objects. EMMO can in principle represents the Universe with direct parthood relations as a direct rooted tree up to its elementary constituents. + """Defines the reductionistic perspective, which uses the fundamental non-transitive parthood relation, called direct parthood, to provide a powerful granularity description of multiscale real world objects. EMMO can in principle represents the Universe with direct parthood relations as a direct rooted tree up to its elementary constituents. In addition to direct parthood, the reductionistic module defines 'State' as a tesselation of spatial direct parts with no change of granularity or cardinality and 'Existent' as a tesselation of temporal direct parts."""@en , - "Defines the root of the physicalistic perspective that introduces the concept of real world objects that have a meaning for the ontologist under an applied physics perspective."@en , - "Describes manufacturing processes with engineered participants. The module also provides a root for engineered materials."@en , - """Elementary Multiperspective Material Ontology (EMMO) + "Defines the root of the physicalistic perspective that introduces the concept of real world objects that have a meaning for the ontologist under an applied physics perspective."@en , + "Describes manufacturing processes with engineered participants. The module also provides a root for engineered materials."@en , + """Elementary Multiperspective Material Ontology (EMMO) EMMO is a multidisciplinary effort to develop a standard representational framework (the ontology) based on current materials modelling knowledge, including physical sciences, analytical philosophy and information and communication technologies. It provides the connection between the physical world, materials characterisation world and materials modelling world. EMMO is released under a Creative Commons license Attribution 4.0 International (CC BY 4.0)."""@en , - """Introduces the fundamental mereocausal (and mereotopological) concepts of EMMO and their relations with the real world entities that they represent. EMMO uses mereocausality as the ground for all the subsequent ontology modules. + """Introduces the fundamental mereocausal (and mereotopological) concepts of EMMO and their relations with the real world entities that they represent. EMMO uses mereocausality as the ground for all the subsequent ontology modules. The concept of causal connection is used to define the first distinction between ontology entities namely the item and collections. Items are causally self-connected objects, while collections are causally disconnected. Quantum mereology is based on the concept of quantum entity. This module introduces also the fundamental mereotopological relations used to distinguish between space and time dimensions, making spacetime emerge from underlying network of causal relations between quantum entities."""@en , - "Key concepts from the domain of computer science."@en , - "The 'noncoherentsiunits' module contains non-coherent SI derived units. This include ."@en , - """The EMMO perspectives level ontology is a container for the EMMO perspectives level ontologies. + "Key concepts from the domain of computer science."@en , + "The 'noncoherentsiunits' module contains non-coherent SI derived units. This include ."@en , + """The EMMO perspectives level ontology is a container for the EMMO perspectives level ontologies. The perspectives level ontologies act as roots for extending the EMMO towards specific application domains. They describe the world from different perspectives, including - physicalistic @@ -58,161 +58,163 @@ The perspectives level ontologies act as roots for extending the EMMO towards sp - data - semiotic - persistence"""@en , - "The Electrochemistry Domain Ontology, a specialized domain within the Elementary Multiperspective Materials Ontology (EMMO), encompasses essential terms and relationships for electrochemical systems, materials, methods, and data. Its primary objective is to enable the creation of linked and FAIR (Findable, Accessible, Interoperable, and Reusable) data, thereby fostering advancements in research and innovation within the realm of electrochemistry. This ontology serves as a foundational resource for harmonizing electrochemical knowledge representation, enhancing data interoperability, and accelerating progress in electrochemical research and development."@en , - "The chemistry module populates the physicalistic perspective with materials subclasses categorised according to modern applied chemistry."@en , - "The materials module populates the physicalistic perspective with materials subclasses categorised according to modern applied physical sciences."@en , - "The math module defines the formal language of mathematics. Mathematical objects represents graphical objects based on graphical symbols arranged according the rules of math."@en , - "The models module defines models as semiotic signs that stands for an object by resembling or imitating it, in shape or by sharing a similar logical structure."@en , - "The module 'coherentsiunits' contain coherent derived SI units. For each physical dimensionality there exists one and only one coherent derived SI unit. Examples of such units are m/s, Pa·m, etc..."@en , - "The module 'prefixedsiunits' contains prefixed SI units, like km, ms, MPa, etc..."@en , - "The module 'siacceptedunits' include non-SI units that are accepted for use with the SI units as well as derived units constructed from SI and SI-accepted units."@en , - """The module 'sidimensionalunits' defines SI dimensional unit classes. These classes provide a categorisation of all units according to their SI physical dimensions. + "The Electrochemistry Domain Ontology, a specialized domain within the Elementary Multiperspective Materials Ontology (EMMO), encompasses essential terms and relationships for electrochemical systems, materials, methods, and data. Its primary objective is to enable the creation of linked and FAIR (Findable, Accessible, Interoperable, and Reusable) data, thereby fostering advancements in research and innovation within the realm of electrochemistry. This ontology serves as a foundational resource for harmonizing electrochemical knowledge representation, enhancing data interoperability, and accelerating progress in electrochemical research and development."@en , + "The chemistry module populates the physicalistic perspective with materials subclasses categorised according to modern applied chemistry."@en , + "The materials module populates the physicalistic perspective with materials subclasses categorised according to modern applied physical sciences."@en , + "The math module defines the formal language of mathematics. Mathematical objects represents graphical objects based on graphical symbols arranged according the rules of math."@en , + "The models module defines models as semiotic signs that stands for an object by resembling or imitating it, in shape or by sharing a similar logical structure."@en , + "The module 'coherentsiunits' contain coherent derived SI units. For each physical dimensionality there exists one and only one coherent derived SI unit. Examples of such units are m/s, Pa·m, etc..."@en , + "The module 'prefixedsiunits' contains prefixed SI units, like km, ms, MPa, etc..."@en , + "The module 'siacceptedunits' include non-SI units that are accepted for use with the SI units as well as derived units constructed from SI and SI-accepted units."@en , + """The module 'sidimensionalunits' defines SI dimensional unit classes. These classes provide a categorisation of all units according to their SI physical dimensions. This module provides a connection between physical quantities defined in the 'isq' modules and the units defined in the 'siunits' and 'unitsextension' modules."""@en , - """The module 'siunits' defines the 7 base units and 22 derived units as well as the metric prefixes specified in the SI system. + """The module 'siunits' defines the 7 base units and 22 derived units as well as the metric prefixes specified in the SI system. All additional derived units, SI-based or not, goes into the 'units-extension' module."""@en , - "The periodic table domain ontology provide a simple reference implementation of all atoms in the periodic table with a few selected conventional properties. It is ment as both an example for other domain ontologies as well as a useful assert by itself. Periodic table is released under the Creative Commons Attribution 4.0 International license (CC BY 4.0)."@en , - """The perspective module provides the practical implementation of the EMMO pluralistic approach for which the only objective categorization is provided by the Universe individual and all the Quantum individuals. + "The periodic table domain ontology provide a simple reference implementation of all atoms in the periodic table with a few selected conventional properties. It is ment as both an example for other domain ontologies as well as a useful assert by itself. Periodic table is released under the Creative Commons Attribution 4.0 International license (CC BY 4.0)."@en , + """The perspective module provides the practical implementation of the EMMO pluralistic approach for which the only objective categorization is provided by the Universe individual and all the Quantum individuals. Between these two extremes, there are several subjective ways to categorize real world objects, each one provide under a 'Perspective' subclass."""@en , - """The semiotics module is based on the semiotic theory by Charles S. Peirce. It introduces the triadic semiotic process, called semiosis, with its participants an 'object' that is represented by a 'sign' producing another sign, the 'interpretant' and finally the 'interpreter' who connects the 'object', 'sign' and 'interpretant'. + """The semiotics module is based on the semiotic theory by Charles S. Peirce. It introduces the triadic semiotic process, called semiosis, with its participants an 'object' that is represented by a 'sign' producing another sign, the 'interpretant' and finally the 'interpreter' who connects the 'object', 'sign' and 'interpretant'. The role of abstract objects are in EMMO fulfilled by semiotic objects, i.e. real world objects (e.g. symbol or sign) that stand for other real world objects that are to be interpreted by an agent. These symbols appear in actions (semiotic processes) meant to communicate meaning by establishing relationships between symbols (signs)."""@en , - """The symbolic multi-perspective combines the data and reductionistic perspectives to describe symbolic entities. + """The symbolic multi-perspective combines the data and reductionistic perspectives to describe symbolic entities. A symbolic entity is a descrite data that pocess a reductionistic structure, who's elements can be decoded to tokens from one or more alphabets. The symbolic module includes symbols, symbolic constructs and formal languages."""@en , - "This electrochemical quantities ontology is a domain of the Elementary Multiperspective Materials Ontology (EMMO). It is a specialized framework designed to represent and organize knowledge about electrochemical quantities. It is designed to integrate with the electrochemistry domain ontology or other ontologies from the EMMO ecosystem. The main focus of this ontology is to provide machine-readable descriptions of common electrochemical quantities, linking both to the larger descriptions of physical quantities in EMMO as well as other sources of information like the IEC, QUDT, Wikidata, etc. It should be used to support linked data generation in the electrochemistry domain."@en , - "This ontology provides terms for chemical substances that can be referenced and re-used other resources."@en ; - "CHAMEO" ; - "Del Nostro, P., Goldbeck, G., Toti, D., 2022. CHAMEO: An ontology for the harmonisation of materials characterisation methodologies. Applied Ontology 17, 401–421. doi:10.3233/AO-220271." , - "https://doi.org/10.5281/zenodo.7693664" , - "https://zenodo.org/doi/10.5281/zenodo.10254978" ; - , - , - , - , - , - , - "Access, DE" , - "Adham Hashibon, University College of London, UK" , - "Adham Hashibon, University College of London, UK"@en , - "Anne de Baas, Goldbeck Consulting Ltd, UK"@en , - "Francesca L. Bleken, SINTEF, NO" , - "Francesca Lønstad Bleken, SINTEF, NO"@en , - "Francesco A. Zaccarini, University of Bologna, IT" , - "Francesco Zaccarini, University of Bologna, IT"@en , - "Fraunhofer IWM, DE" , - "Georg Schmitz, Access, DE" , - "Georg Schmitz, Access, DE"@en , - "Gerhard Goldbeck, Goldbeck Consulting Ltd, UK" , - "Gerhard Goldbeck, Goldbeck Consulting Ltd, UK"@en , - "Goldbeck Consulting Ltd (UK)" , - "Goldbeck Consulting Ltd, UK" , - "Ilaria Maria Paponetti, University of Bologna, IT" , - "Jesper Friis, SINTEF, NO" , - "Jesper Friis, SINTEF, NO"@en , - "Michael Noeske, FRAUNHOFER IFAM, DE"@en , - "SINTEF, NO" , - "Sebastiano Moruzzi, University of Bologna, IT"@en , - "Simon Clark, SINTEF, NO" , - "University of Bologna, IT" ; - "2021-12-20" , - "2022-11-25"^^xsd:date , - "2023-09-28"^^xsd:date ; - , - , - , - , - , - "Adham Hashibon" , - "Emanuele Ghedini" , - "Emanuele Ghedini, University of Bologna, IT" , - "Emanuele Ghedini, University of Bologna, IT"@en , - "Francesca L. Bleken, SINTEF, NO" , - "Francesca Lønstad Bleken, SINTEF, NO"@en , - "Georg Schmitz" , - "Gerhard Goldbeck" , - "Gerhard Goldbeck, Goldbeck Consulting Ltd, UK" , - "Jesper Friis" , - "Jesper Friis (SINTEF, NO)" , - "Jesper Friis, SINTEF, NO" , - "Jesper Friis, SINTEF, NO"@en , - "Otello M. Roscioni, Goldbeck Consulting Ltd, UK" ; - "Characterisation Methodology Ontology"@en ; - ; - "https://w3id.org/emmo/domain/characterisation-methodology/chameo" ; - "2024-04-12" , - "2024-08-14"^^xsd:date ; - "https://creativecommons.org/licenses/by/4.0/legalcode" , - "https://creativecommons.org/licenses/by/4.0/legalcode"@en ; - "2024-04-12" , - "2024-08-14"^^xsd:date ; - "EMMC ASBL" , - "EMMC ASBL"@en , - """EMMC ASBL + "This electrochemical quantities ontology is a domain of the Elementary Multiperspective Materials Ontology (EMMO). It is a specialized framework designed to represent and organize knowledge about electrochemical quantities. It is designed to integrate with the electrochemistry domain ontology or other ontologies from the EMMO ecosystem. The main focus of this ontology is to provide machine-readable descriptions of common electrochemical quantities, linking both to the larger descriptions of physical quantities in EMMO as well as other sources of information like the IEC, QUDT, Wikidata, etc. It should be used to support linked data generation in the electrochemistry domain."@en , + "This ontology provides terms for chemical substances that can be referenced and re-used other resources."@en ; + "CHAMEO" ; + "Del Nostro, P., Goldbeck, G., Toti, D., 2022. CHAMEO: An ontology for the harmonisation of materials characterisation methodologies. Applied Ontology 17, 401–421. doi:10.3233/AO-220271." , + "https://doi.org/10.5281/zenodo.7693664" , + "https://zenodo.org/doi/10.5281/zenodo.10254978" ; + , + , + , + , + , + , + "Access, DE" , + "Adham Hashibon, University College of London, UK" , + "Adham Hashibon, University College of London, UK"@en , + "Anne de Baas, Goldbeck Consulting Ltd, UK"@en , + "Francesca L. Bleken, SINTEF, NO" , + "Francesca Lønstad Bleken, SINTEF, NO"@en , + "Francesco A. Zaccarini, University of Bologna, IT" , + "Francesco Zaccarini, University of Bologna, IT"@en , + "Fraunhofer IWM, DE" , + "Georg Schmitz, Access, DE" , + "Georg Schmitz, Access, DE"@en , + "Gerhard Goldbeck, Goldbeck Consulting Ltd, UK" , + "Gerhard Goldbeck, Goldbeck Consulting Ltd, UK"@en , + "Goldbeck Consulting Ltd (UK)" , + "Goldbeck Consulting Ltd, UK" , + "Ilaria Maria Paponetti, University of Bologna, IT" , + "Jesper Friis, SINTEF, NO" , + "Jesper Friis, SINTEF, NO"@en , + "Michael Noeske, FRAUNHOFER IFAM, DE"@en , + "SINTEF, NO" , + "Sebastiano Moruzzi, University of Bologna, IT"@en , + "Simon Clark, SINTEF, NO" , + "University of Bologna, IT" ; + "2021-12-20" , + "2022-11-25"^^xsd:date , + "2023-09-28"^^xsd:date ; + , + , + , + , + , + "Adham Hashibon" , + "Emanuele Ghedini" , + "Emanuele Ghedini, University of Bologna, IT" , + "Emanuele Ghedini, University of Bologna, IT"@en , + "Francesca L. Bleken, SINTEF, NO" , + "Francesca Lønstad Bleken, SINTEF, NO"@en , + "Georg Schmitz" , + "Gerhard Goldbeck" , + "Gerhard Goldbeck, Goldbeck Consulting Ltd, UK" , + "Jesper Friis" , + "Jesper Friis (SINTEF, NO)" , + "Jesper Friis, SINTEF, NO" , + "Jesper Friis, SINTEF, NO"@en , + "Otello M. Roscioni, Goldbeck Consulting Ltd, UK" ; + "Characterisation Methodology Ontology"@en ; + ; + "https://w3id.org/emmo/domain/characterisation-methodology/chameo" ; + "2024-04-12" , + "2024-08-14"^^xsd:date , + "2024-08-29"^^xsd:date ; + "https://creativecommons.org/licenses/by/4.0/legalcode" , + "https://creativecommons.org/licenses/by/4.0/legalcode"@en ; + "2024-04-12" , + "2024-08-14"^^xsd:date , + "2024-08-29"^^xsd:date ; + "EMMC ASBL" , + "EMMC ASBL"@en , + """EMMC ASBL European Materials Modelling Council Silversquare Stéphanie Avenue Louise 54 1050 Brussels CBE no: 0731 621 312 contact@emmc.eu"""@en , - "EMMO" ; - , - , - , - , - "" , - " " ; - "CHAracterisation MEthodology Ontology"@en , - "Chemical Substance Domain Ontology"@en , - "Chemistry"@en , - "Computer science"@en , - "Distinctional"@en , - "EMMO perspectives-level ontology"@en , - "Electrochemistry Domain Ontology"@en , - "Elementary Multiperspective Material Ontology"@en , - "Elementary Multiperspective Material Ontology (EMMO)"@en , - "Holistic"@en , - "Information"@en , - "International System of Quantities (ISQ)"@en , - "Manufacturing"@en , - "Materials"@en , - "Math"@en , - "Mereocausality"@en , - "Metrology"@en , - "Models"@en , - "Perceptual"@en , - "Periodic table"@en , - "Persholistic"@en , - "Persistence"@en , - "Perspective"@en , - "Physicalistic"@en , - "Properties"@en , - "Reductionistic"@en , - "SI dimensional units"@en , - "SI units"@en , - "Semiotics"@en , - "Symbolic"@en , - "Units extension"@en ; - "" , - "10.5281/zenodo.10254978" , - "10.5281/zenodo.7693664" ; - "" , - "unstable" ; - "chameo"@en , - "chems" , - "echem" ; - "https://w3id.org/emmo/domain/characterisation-methodology/chameo" , - "https://w3id.org/emmo/domain/chemical-substance" , - "https://w3id.org/emmo/domain/electrochemistry" ; - rdfs:comment """Contacts: + "EMMO" ; + , + , + , + , + "" , + " " ; + "CHAracterisation MEthodology Ontology"@en , + "Chemical Substance Domain Ontology"@en , + "Chemistry"@en , + "Computer science"@en , + "Distinctional"@en , + "EMMO perspectives-level ontology"@en , + "Electrochemistry Domain Ontology"@en , + "Elementary Multiperspective Material Ontology"@en , + "Elementary Multiperspective Material Ontology (EMMO)"@en , + "Holistic"@en , + "Information"@en , + "International System of Quantities (ISQ)"@en , + "Manufacturing"@en , + "Materials"@en , + "Math"@en , + "Mereocausality"@en , + "Metrology"@en , + "Models"@en , + "Perceptual"@en , + "Periodic table"@en , + "Persholistic"@en , + "Persistence"@en , + "Perspective"@en , + "Physicalistic"@en , + "Properties"@en , + "Reductionistic"@en , + "SI dimensional units"@en , + "SI units"@en , + "Semiotics"@en , + "Symbolic"@en , + "Units extension"@en ; + "" , + "10.5281/zenodo.10254978" , + "10.5281/zenodo.7693664" ; + "" , + "unstable" ; + "chameo"@en , + "chems" , + "echem" ; + "https://w3id.org/emmo/domain/characterisation-methodology/chameo" , + "https://w3id.org/emmo/domain/chemical-substance" , + "https://w3id.org/emmo/domain/electrochemistry" ; + rdfs:comment """Contacts: Gerhard Goldbeck Goldbeck Consulting Ltd (UK) email: gerhard@goldbeck-consulting.com"""@en , - """Contacts: + """Contacts: Gerhard Goldbeck Goldbeck Consulting Ltd (UK) email: gerhard@goldbeck-consulting.com @@ -220,48 +222,48 @@ email: gerhard@goldbeck-consulting.com Emanuele Ghedini University of Bologna (IT) email: emanuele.ghedini@unibo.it"""@en , - "Contacts: emmo@emmc.eu" , - "Contacts: emmo@emmc.eu"@en , - """Note: this file has automatically been populated with dimensional units from QUDT. + "Contacts: emmo@emmc.eu" , + "Contacts: emmo@emmc.eu"@en , + """Note: this file has automatically been populated with dimensional units from QUDT. We kindly acknowledge NIST for reusing their content, including the physical dimensionality of units."""@en , - """Note: this file has automatically been populated with dimensional units from QUDT. + """Note: this file has automatically been populated with dimensional units from QUDT. We kindly acknowledge NIST for reusing their content, including the selection of units, their elucidations and conversion multiplier."""@en , - """Note: this file has automatically been populated with units from QUDT. + """Note: this file has automatically been populated with units from QUDT. We kindly acknowledge NIST for reusing their content, including the selection of units, their elucidations and conversion multiplier."""@en , - "The EMMO requires FacT++ reasoner plugin in order to visualize all inferences and class hierarchy (ctrl+R hotkey in Protege)."@en , - "The EMMO requires HermiT reasoner plugin in order to visualize all inferences and class hierarchy (ctrl+R hotkey in Protege)."@en , - "The EMMO should be reasoned in order to visualize all inferences and class hierarchy in Protege (ctrl+R hotkey). It is tested with both the HermiT (preferred) and HermiT reasoners."@en , - "The EMMO should be reasoned with HermiT to visualize all inferences and class hierarchy (ctrl+R hotkey in Protege)."@en , - "This ontology is generated with EMMOntoPy using data from the ASE Python package."@en , - "You can contact EMMO Authors via emmo@emmc.eu"@en ; - owl:backwardCompatibleWith "" , - " " , - "0.20.0-beta" ; - owl:priorVersion "0.20.0-beta" , - "0.7.0-beta" , - "1.0.0-beta2" ; - owl:versionInfo "0.21.0-beta" , - "0.8.0-beta" , - "1.0.0-beta3" , - "1.0.0-beta7" ; - "CHAMEO" ; - ; - " " , - "https://github.com/emmo-repo/EMMO/raw/master/doc/emmo-logo.png" , - "https://raw.githubusercontent.com/emmo-repo/domain-characterisation-methodology/main/images/chameo_logo_small.png" , - "https://raw.githubusercontent.com/emmo-repo/domain-electrochemistry/gh-pages/assets/img/fig/png/domain-electrochemistry-logo.png" ; - ; - """Emanuele Ghedini + "The EMMO requires FacT++ reasoner plugin in order to visualize all inferences and class hierarchy (ctrl+R hotkey in Protege)."@en , + "The EMMO requires HermiT reasoner plugin in order to visualize all inferences and class hierarchy (ctrl+R hotkey in Protege)."@en , + "The EMMO should be reasoned in order to visualize all inferences and class hierarchy in Protege (ctrl+R hotkey). It is tested with both the HermiT (preferred) and HermiT reasoners."@en , + "The EMMO should be reasoned with HermiT to visualize all inferences and class hierarchy (ctrl+R hotkey in Protege)."@en , + "This ontology is generated with EMMOntoPy using data from the ASE Python package."@en , + "You can contact EMMO Authors via emmo@emmc.eu"@en ; + owl:backwardCompatibleWith "" , + " " , + "0.21.0-beta" ; + owl:priorVersion "0.21.0-beta" , + "0.7.0-beta" , + "1.0.0-beta2" ; + owl:versionInfo "0.22.0-beta" , + "0.8.0-beta" , + "1.0.0-beta3" , + "1.0.0-beta7" ; + "CHAMEO" ; + ; + " " , + "https://github.com/emmo-repo/EMMO/raw/master/doc/emmo-logo.png" , + "https://raw.githubusercontent.com/emmo-repo/domain-characterisation-methodology/main/images/chameo_logo_small.png" , + "https://raw.githubusercontent.com/emmo-repo/domain-electrochemistry/gh-pages/assets/img/fig/png/domain-electrochemistry-logo.png" ; + ; + """Emanuele Ghedini University of Bologna (IT) email: emanuele.ghedini@unibo.it"""@en , - """Gerhard Goldbeck + """Gerhard Goldbeck Goldbeck Consulting Ltd (UK) email: gerhard@goldbeck-consulting.com"""@en , - "emmo@emmc.eu" , - "emmo@emmc.info"^^xsd:anyURI . + "emmo@emmc.eu" , + "emmo@emmc.info"^^xsd:anyURI . ################################################################# # Annotation properties @@ -615,12 +617,22 @@ owl:qualifiedCardinality rdf:type owl:AnnotationProperty . "the label of a term used in resources from Maccor"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 + rdf:type owl:AnnotationProperty ; + "bpxKey"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_1b717a20_17e3_4480_8c60_c4ae94058f05 rdf:type owl:AnnotationProperty ; "batteryArchiveLabel"@en ; "the label of a term used in resources from Battery Archive"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 + rdf:type owl:AnnotationProperty ; + "cidemodKey"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_69022178_77b8_4669_97e2_351d45356e5a rdf:type owl:AnnotationProperty ; "biologicLabel"@en ; @@ -7015,7 +7027,7 @@ Unit of degeneracy in quantum mechanics"""@en . ### https://w3id.org/emmo#EMMO_1744d51d_0dac_4f48_8b50_fde6c7c2ab39 rdf:type owl:Class ; rdfs:subClassOf , - ; + ; "EffectiveDiffusionCoefficient"@en ; "https://www.wikidata.org/wiki/Q258852" ; "Diffusion coefficient through the pore space of a porous media."@en . @@ -24476,12 +24488,15 @@ sin(x) = y"""@en . ### https://w3id.org/emmo#EMMO_e6e7277a_1d40_4be5_a3a9_afd3da53d937 rdf:type owl:Class ; rdfs:subClassOf , - ; + , + ; "ElectrolyticConductivity"@en ; "https://qudt.org/vocab/quantitykind/ElectrolyticConductivity" ; "https://www.wikidata.org/wiki/Q907564" ; "https://www.electropedia.org/iev/iev.nsf/display?openform&ievref=114-01-03" ; - "9-44"@en . + "9-44"@en ; + "['Parameterisation','Electrolyte','Conductivity [S.m-1]']"@en ; + "['electrolyte','ionic_conductivity','value']"@en . ### https://w3id.org/emmo#EMMO_e6efd70d_87b4_4e18_a471_9b29c7a1fe16 @@ -34526,83 +34541,6 @@ Wikipedia"""@en ; "tris(trimethylsilyl) phosphite" . -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_0ed0362e_b7ae_482c_a7d0_2ca2eebda648 - rdf:type owl:Class ; - rdfs:subClassOf ; - "D30ParticleSize"@en ; - "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 30% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_14d93129_d94d_42ff_a6f2_e8fca36ffec4 - rdf:type owl:Class ; - rdfs:subClassOf ; - "EffectivePorousMediaQuantity"@en ; - "a physical quantity that is adjusted to consider the effects of porous media structure"@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_2e2d92f4_9fd5_4965_b15a_30b43c68e3e5 - rdf:type owl:Class ; - rdfs:subClassOf ; - "D5ParticleSize"@en ; - "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 5% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_62e03250_8987_497b_85d5_1399aca9a0aa - rdf:type owl:Class ; - rdfs:subClassOf ; - "D20ParticleSize"@en ; - "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 20% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_7f17f6bb_c1f9_4f4a_bfdf_d8974443d07b - rdf:type owl:Class ; - rdfs:subClassOf ; - "D25ParticleSize"@en ; - "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 25% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_8768c8f4_eaa8_4670_a3a0_91524e59a7f6 - rdf:type owl:Class ; - rdfs:subClassOf ; - "D60ParticleSize"@en ; - "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 60% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_92fc0dba_6f11_4019_a8cb_db2a5b1634f5 - rdf:type owl:Class ; - rdfs:subClassOf ; - "D15ParticleSize"@en ; - "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 15% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_9d60c4ab_d9ac_4dda_af0c_c64059326916 - rdf:type owl:Class ; - rdfs:subClassOf ; - "D45ParticleSize"@en ; - "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 45% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_b095e977_dbc2_4a9e_9930_6af0dab089f1 - rdf:type owl:Class ; - rdfs:subClassOf ; - "D55ParticleSize"@en ; - "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 55% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_c1c1288c_97c1_4f1f_8f42_6dfd34d028fd - rdf:type owl:Class ; - rdfs:subClassOf ; - "D35ParticleSize"@en ; - "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 35% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_c8abaf09_300a_4008_a42a_2f4a3953ca7a - rdf:type owl:Class ; - rdfs:subClassOf ; - "D40ParticleSize"@en ; - "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 40% of the sample's particles fall."@en . - - ### https://w3id.org/emmo/domain/characterisation-methodology/chameo#ACVoltammetry rdf:type owl:Class ; rdfs:subClassOf ; @@ -44785,6 +44723,16 @@ Wear is defined as the progressive removal of the material from a solid surface "an electrode with blended lithium nickel manganese cobalt oxide (NMC) and lithium cobalt oxide (LCO) active materials"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_098f98dc_e015_4dbd_b358_a7ac3b3ecff3 + rdf:type owl:Class ; + rdfs:subClassOf ; + "InitialChargeCarrierConcentrationInElectrolyte"@en ; + "the initial amount concentration of lithium in an electrolyte"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Electrolyte','Initial concentration [mol.m-3]']"@en ; + "['electrolyte','initial_concentration','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_09a7f560_9ddf_4c32_b067_b213eca5b0a1 rdf:type owl:Class ; rdfs:subClassOf ; @@ -44833,6 +44781,14 @@ Wear is defined as the progressive removal of the material from a solid surface "A phenomenon that causes an electrochemical device to deviate from its ideal behaviour."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0a1e73c5_e91b_4365_88d4_1e1f476bf776 + rdf:type owl:Class ; + rdfs:subClassOf ; + "PositiveElectrodeActiveMaterialVolumetricSurfaceArea"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Surface area per unit volume [m-1]']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0a399f3f_b873_41f5_be1f_9b6df75cc30a rdf:type owl:Class ; rdfs:subClassOf ; @@ -44960,6 +44916,16 @@ Wear is defined as the progressive removal of the material from a solid surface "the miniumum temperature at which an electrochemical device shall be stored"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0e2f4fe6_570a_4d13_81e9_de1d4f9987af + rdf:type owl:Class ; + rdfs:subClassOf , + ; + "NegativeElectrodeActiveMaterialOpenCircuitVoltage"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','OCP [V]']"@en ; + "['negative_electrode','active_materials',0,'OCP','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0e33278b_639f_412d_9abd_64c3790026ef rdf:type owl:Class ; rdfs:subClassOf ; @@ -44983,6 +44949,15 @@ Wear is defined as the progressive removal of the material from a solid surface "a prismatic case with a nominal length of 21 mm, width of 148 mm, and height of 128 mm"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0ea21f71_d1bd_4714_a260_b991e6d4bcf7 + rdf:type owl:Class ; + rdfs:subClassOf ; + "DeviceDensity"@en ; + "the overall density of an electrochemical device, calculated as the quotient of the total mass and the total volume"@en ; + "['Parameterisation','Cell','Density [kg.m-3]']"@en ; + "['properties','density','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0ea4d188_9701_4699_a5ca_812a98a9afa7 rdf:type owl:Class ; rdfs:subClassOf ; @@ -44990,6 +44965,13 @@ Wear is defined as the progressive removal of the material from a solid surface "the maximum temperature at which an electrochemical device shall be stored"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0ed0362e_b7ae_482c_a7d0_2ca2eebda648 + rdf:type owl:Class ; + rdfs:subClassOf ; + "D30ParticleSize"@en ; + "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 30% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0ee59786_b090_444d_a46d_505797d07ca4 rdf:type owl:Class ; rdfs:subClassOf ; @@ -45284,6 +45266,13 @@ Wear is defined as the progressive removal of the material from a solid surface ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_14d93129_d94d_42ff_a6f2_e8fca36ffec4 + rdf:type owl:Class ; + rdfs:subClassOf ; + "EffectivePorousMediaQuantity"@en ; + "a physical quantity that is adjusted to consider the effects of porous media structure"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_15325775_6d4c_4192_82f1_e4feca9de426 rdf:type owl:Class ; rdfs:subClassOf ; @@ -45750,6 +45739,15 @@ Aluminum foil"""@en . "a quantity that relates to the kinetics of a reaction."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_21da0fe9_9fb6_4840_a12f_fbcc1ba84fb3 + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeActiveMaterialGuestStoichiometricCoefficientAtSOC0"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Minimum stoichiometry']"@en ; + "['negative_electrode','active_materials',0,'stoichiometry0','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_21eef598_0799_4cb1_b2d5_6e072a8579a3 rdf:type owl:Class ; rdfs:subClassOf ; @@ -46202,6 +46200,13 @@ Aluminum foil"""@en . "WeightPercent"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_2c4c2626_7db5_440c_a65e_95ed2986ee01 + rdf:type owl:Class ; + rdfs:subClassOf ; + "InitialCondition"@en ; + "the initial value of a property at the start of a simulation or experiment"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_2c63d7f4_09ba_4ca9_baa2_a1da899bf477 rdf:type owl:Class ; rdfs:subClassOf ; @@ -46271,6 +46276,13 @@ Aluminum foil"""@en . "a measurement of the value of the temperature in units of degree Celsius"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_2e2d92f4_9fd5_4965_b15a_30b43c68e3e5 + rdf:type owl:Class ; + rdfs:subClassOf ; + "D5ParticleSize"@en ; + "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 5% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_2e3e14f9_4cb8_45b2_908e_47eec893dec8 rdf:type owl:Class ; rdfs:subClassOf ; @@ -46958,6 +46970,15 @@ Aluminum foil"""@en . "an electrode which is coated onto a substrate, typically a metallic foil current collector."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_404126e0_cb1b_44e4_98dc_2474185767a1 + rdf:type owl:Class ; + rdfs:subClassOf ; + "PositiveElectrodeReactionRateConstant"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Reaction rate constant [mol.m-2.s-1]']"@en ; + "['positive_electrode','active_materials',0,'kinetic_constant','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_40ca9548_910a_48b6_9a26_f94095d349cd rdf:type owl:Class ; rdfs:subClassOf ; @@ -47063,6 +47084,15 @@ Aluminum foil"""@en . "often represented in cell designations by the letter P"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_43f77743_1af6_4a0f_9cc6_285c2a450549 + rdf:type owl:Class ; + rdfs:subClassOf ; + "PositiveElectrodeElectronicConductivity"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Conductivity [S.m-1]']"@en ; + "['positive_electrode','electronic_conductivity','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_444992e5_43f8_44a1_9767_b408dbe54330 rdf:type owl:Class ; rdfs:subClassOf ; @@ -47184,6 +47214,14 @@ Aluminum foil"""@en . "the maximum amount concentration of a species in a phase, either imposed or naturally occurring"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_47288277_4aed_447e_b659_0c975d031406 + rdf:type owl:Class ; + rdfs:subClassOf ; + "SeparatorThickness"@en ; + "['Parameterisation','Separator','Thickness [m]']"@en ; + "['separator','thickness','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_47346d85_b9be_4480_8993_6307b1c58fcd rdf:type owl:Class ; rdfs:subClassOf ; @@ -47440,6 +47478,16 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa "proposed by John Bockris, M. A. V. Devanathan, and Klaus Mueller in 1963"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_4c274506_af5b_4ef1_8217_829ffd459f28 + rdf:type owl:Class ; + rdfs:subClassOf ; + "ChargeCarrierDiffusivityInElectrolyte"@en ; + "the diffusivity of lithium in an electrolyte"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Electrolyte','Diffusivity [m2.s-1]']"@en ; + "['electrolyte','diffusion_constant','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_4c3ee364_829b_41a4_b895_ca4a041efb2a rdf:type owl:Class ; rdfs:subClassOf ; @@ -47478,6 +47526,16 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa "The magnitude of a voltage pulse applied to an electrochemical cell during pulsed amperometry and related techniques."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_4d69edda_d2fa_40b0_9c1e_52e08debf578 + rdf:type owl:Class ; + rdfs:subClassOf ; + "ActivationEnergyOfGuestDiffusivityInPositiveElectrodeActiveMaterial"@en ; + "the activation energy barrier in an Arrhenius expression for the diffusivity of lithium in the positive electrode"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Diffusivity activation energy [J.mol-1]']"@en ; + "['positive_electrode','active_materials',0,'diffusion_constant','arrhenius','activation_energy']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_4d6f7f50_b343_4bd6_8612_2b8521a99c9b rdf:type owl:Class ; rdfs:subClassOf , @@ -47597,6 +47655,16 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa "The area where electrochemical reactions normally take place."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_50247e71_75fe_4986_959e_fd06c6be98db + rdf:type owl:Class ; + rdfs:subClassOf ; + "GuestDiffusivityInNegativeElectrodeActiveMaterial"@en ; + "the diffusivity of lithium in the negative electrode"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Diffusivity [m2.s-1]']"@en ; + "['negative_electrode','active_materials',0,'diffusion_constant','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_502a98a3_ce47_421f_8e0a_016ed171c900 rdf:type owl:Class ; rdfs:subClassOf , @@ -47709,6 +47777,16 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_52ab4fdd_f945_4541_9ce6_cd6fd3a05861 + rdf:type owl:Class ; + rdfs:subClassOf , + ; + "PositiveElectrodeActiveMaterialOpenCircuitVoltage"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','OCP [V]']"@en ; + "['positive_electrode','active_materials',0,'OCP','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_52ac73c7_763c_4fda_93cd_a2db9dfc2dab rdf:type owl:Class ; rdfs:subClassOf , @@ -47879,6 +47957,23 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_56b9cd1f_5397_4385_9292_30d93d9e7a05 + rdf:type owl:Class ; + rdfs:subClassOf ; + "PostiveElectrodeActivationEnergyOfReaction"@en ; + "['Parameterisation','Positive electrode','Reaction rate constant activation energy [J.mol-1]']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_56de36fe_e8e1_486c_8d29_061ac8d28c13 + rdf:type owl:Class ; + rdfs:subClassOf ; + "ActivationEnergyOfChargeCarrierDiffusivityInElectrolyte"@en ; + "the activation energy barrier in an Arrhenius expression for the diffusivity of lithium in an electrolyte"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Electrolyte','Diffusivity activation energy [J.mol-1]']"@en ; + "['electrolyte','diffusion_constant','arrhenius','activation_energy']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_56def0d5_fe57_40d7_85e3_97872fa2a3e1 rdf:type owl:Class ; rdfs:subClassOf ; @@ -47928,6 +48023,15 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa "Cycle Number"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_58400817_3282_46e5_942e_3a1538631403 + rdf:type owl:Class ; + rdfs:subClassOf ; + "PositiveElectrodeActiveMaterialParticleRadius"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Particle radius [m]']"@en ; + "['positive_electrode','active_materials',0,'particle_radius','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_58413d4e_2885_459e_ac06_8d45e661cf91 rdf:type owl:Class ; rdfs:subClassOf ; @@ -48045,6 +48149,15 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_5cb403c4_4f28_46cb_81c4_21c5c47ef14a + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeCoatingPorosity"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Porosity']"@en ; + "['negative_electrode','porosity','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_5cb5548f_f774_4668_ad02_f0742581f2f1 rdf:type owl:Class ; rdfs:subClassOf ; @@ -48263,6 +48376,23 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa "Successive current steps that form a signal with a staircase waveform."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_62e03250_8987_497b_85d5_1399aca9a0aa + rdf:type owl:Class ; + rdfs:subClassOf ; + "D20ParticleSize"@en ; + "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 20% of the sample's particles fall."@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_62f5beeb_6d1e_442a_8048_3ebe08882964 + rdf:type owl:Class ; + rdfs:subClassOf ; + "PositiveElectrodeCoatingThickness"@en ; + "thickness of the positive electrode coating"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Thickness [m]']"@en ; + "['positive_electrode','thickness','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_634467ad_feed_4979_adb2_877d98fe1768 rdf:type owl:Class ; rdfs:subClassOf ; @@ -48711,6 +48841,15 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa "often represented in cell designations by the letter P"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_7481c4c9_c247_4248_a045_a1077230acba + rdf:type owl:Class ; + rdfs:subClassOf ; + "PositiveElectrodeCoatingPorosity"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Porosity']"@en ; + "['positive_electrode','porosity','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_74861991_7da2_4e0f_b6c1_b16713f538bf rdf:type owl:Class ; rdfs:subClassOf ; @@ -49106,6 +49245,13 @@ Cl2, Hg | Hg2SO4, and Hg | HgO, can be used as reference electrodes in aqueous s "proposed by D. C. Grahame in 1947"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_7f17f6bb_c1f9_4f4a_bfdf_d8974443d07b + rdf:type owl:Class ; + rdfs:subClassOf ; + "D25ParticleSize"@en ; + "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 25% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_7f381c19_cf07_47a8_ab10_0b14d46901e8 rdf:type owl:Class ; rdfs:subClassOf ; @@ -49227,6 +49373,15 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog "an electrode in which the primary active material consists of ruthenium or ruthenium compounds"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_80920875_62ac_4e29_b970_ec4316e76aa5 + rdf:type owl:Class ; + rdfs:subClassOf ; + "PositiveElectrodeActiveMaterialGuestStoichiometricCoefficientAtSOC0"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Minimum stoichiometry']"@en ; + "['positive_electrode','active_materials',0,'stoichiometry0','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_80ca00f8_c891_4493_87a2_7d39b9d1e098 rdf:type owl:Class ; rdfs:subClassOf , @@ -49533,6 +49688,16 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_86af4487_33c1_4562_a00b_3a8252ffe378 + rdf:type owl:Class ; + rdfs:subClassOf ; + "ActivationEnergyOfGuestDiffusivityInNegativeElectrodeActiveMaterial"@en ; + "the activation energy barrier in an Arrhenius expression for the diffusivity of lithium in the negative electrode"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Diffusivity activation energy [J.mol-1]']"@en ; + "['negative_electrode','active_materials',0,'diffusion_constant','arrhenius','activation_energy']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_86be0987_5e21_43ec_b975_8f679999d328 rdf:type owl:Class ; rdfs:subClassOf , @@ -49587,6 +49752,13 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog "a process in which the electric power is kept constant"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_8768c8f4_eaa8_4670_a3a0_91524e59a7f6 + rdf:type owl:Class ; + rdfs:subClassOf ; + "D60ParticleSize"@en ; + "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 60% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_88100e2c_0f6e_4483_afbf_30029a6702c6 rdf:type owl:Class ; rdfs:subClassOf ; @@ -49734,6 +49906,24 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog "The reaction occuring in an air electrode is typically the oxygen reduction reaction (ORR)."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_8c16cb12_41c1_43bd_9e7c_2eea7b06a1f0 + rdf:type owl:Class ; + rdfs:subClassOf ; + "ActivationEnergyOfElectrolyteConductivity"@en ; + "the activation energy barrier in an Arrhenius expression for the ionic conductivity of an electrolyte"@en ; + "['Parameterisation','Electrolyte','Conductivity activation energy [J.mol-1]']"@en ; + "['electrolyte','ionic_conductivity','arrhenius','activation_energy']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_8c336ae9_1818_4b08_a660_4bb83b28351f + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeActiveMaterialGuestStoichiometricCoefficientAtSOC100"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Maximum stoichiometry']"@en ; + "['negative_electrode','active_materials',0,'stoichiometry1','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_8c71739c_27c1_4d19_a0ff_02545296af43 rdf:type owl:Class ; rdfs:subClassOf ; @@ -49944,6 +50134,13 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_92fc0dba_6f11_4019_a8cb_db2a5b1634f5 + rdf:type owl:Class ; + rdfs:subClassOf ; + "D15ParticleSize"@en ; + "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 15% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_93358d9b_8976_42d0_84ae_e5a2400c3ea7 rdf:type owl:Class ; rdfs:subClassOf ; @@ -50093,6 +50290,15 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog "a type of spring, in the form of a conical washer"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_99041897_5c08_40ed_9118_3e77e9b0e191 + rdf:type owl:Class ; + rdfs:subClassOf ; + "PositiveElectrodeActiveMaterialGuestStoichiometricCoefficientAtSOC100"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Maximum stoichiometry']"@en ; + "['positive_electrode','active_materials',0,'stoichiometry1','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_990d19b8_672a_4219_a2b3_0a25bfa13f69 rdf:type owl:Class ; rdfs:subClassOf ; @@ -50274,6 +50480,15 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog "InititalThermodynamicTemperature"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9cba2158_26ba_4dd7_b082_ba66dbb960c7 + rdf:type owl:Class ; + rdfs:subClassOf ; + "DeviceLumpedSpecificHeatCapacity"@en ; + "the lumped specific heat capacity of an electrochemical device"@en ; + "['Parameterisation','Cell','Specific heat capacity [J.K-1.kg-1]']"@en ; + "['properties','specific_heat','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9ceffffd_b918_48c2_aad9_5db16fa6149d rdf:type owl:Class ; rdfs:subClassOf ; @@ -50289,6 +50504,15 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 10% of the sample's particles fall."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9d558b56_d3b8_429a_a4e2_d2ffab895e42 + rdf:type owl:Class ; + rdfs:subClassOf ; + "PositiveElectrodeEntropicChangeCoefficient"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Entropic change coefficient [V.K-1]']"@en ; + "['positive_electrode','active_materials',0,'entropy_coefficient','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9d57962c_e150_4e64_962b_8fd6a92c9234 rdf:type owl:Class ; rdfs:subClassOf ; @@ -50299,6 +50523,13 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog "the specific energy of an electrochemical device obtained during a discharge process"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9d60c4ab_d9ac_4dda_af0c_c64059326916 + rdf:type owl:Class ; + rdfs:subClassOf ; + "D45ParticleSize"@en ; + "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 45% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9d6a52ed_a53d_4327_a391_f173677a4b1d rdf:type owl:Class ; rdfs:subClassOf , @@ -50710,6 +50941,14 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_a4858e4d_dd3b_48ce_97ba_3eeb8571b633 + rdf:type owl:Class ; + rdfs:subClassOf ; + "SeparatorPorosity"@en ; + "['Parameterisation','Separator','Porosity']"@en ; + "['separator','porosity','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_a49d9cd1_bec8_4d1d_9657_d47983e9135d rdf:type owl:Class ; rdfs:subClassOf ; @@ -51272,6 +51511,13 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b095e977_dbc2_4a9e_9930_6af0dab089f1 + rdf:type owl:Class ; + rdfs:subClassOf ; + "D55ParticleSize"@en ; + "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 55% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b0a0dddb_d942_4af2_b6a7_d7165f4253f1 rdf:type owl:Class ; rdfs:subClassOf ; @@ -51379,6 +51625,15 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog "electrode in which the active material is lithium nickel manganese cobalt"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b4184e46_c53c_47cc_9bfc_186fd77836a5 + rdf:type owl:Class ; + rdfs:subClassOf ; + "DeviceVolume"@en ; + "the total volume of an electrochemical device, determined by its external dimensions"@en ; + "['Parameterisation','Cell','Volume [m3]']"@en ; + "['properties','volume','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b442217f_02f6_4991_aadf_22d81369223c rdf:type owl:Class ; rdfs:subClassOf ; @@ -51839,6 +52094,16 @@ of other configurations are used."""@en . "https://en.wikipedia.org/wiki/Fuel_cell"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_be3da3e2_58a9_4e58_adc2_7336d312717c + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeElectronicConductivity"@en ; + "the electronic conductivity of the negative electrode"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Conductivity [S.m-1]']"@en ; + "['negative_electrode','electronic_conductivity','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_bea04148_10d9_4eda_9cd5_8f609d7e9ff8 rdf:type owl:Class ; rdfs:subClassOf , @@ -51879,6 +52144,15 @@ of other configurations are used."""@en . "an electroanalytical technique that involves applying a constant current to a working electrode to strip previously deposited analyte from the electrode surface while measuring the potential change over time"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_bfe553c2_a63e_49b6_a209_0855dfc39724 + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeActiveMaterialParticleRadius"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Particle radius [m]']"@en ; + "['negative_electrode','active_materials',0,'particle_radius','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c052cab7_46eb_4a87_b7a4_05be2572db22 rdf:type owl:Class ; rdfs:subClassOf ; @@ -51933,6 +52207,13 @@ of other configurations are used."""@en . "an insertion electrode in which the guest molecule is potassium"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c1c1288c_97c1_4f1f_8f42_6dfd34d028fd + rdf:type owl:Class ; + rdfs:subClassOf ; + "D35ParticleSize"@en ; + "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 35% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c2024587_3237_474e_8df9_91d10db2df47 rdf:type owl:Class ; rdfs:subClassOf ; @@ -52100,6 +52381,15 @@ In either case, the magnitude of the catalytic current depends on the applied po ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c5dcb1a2_f2cf_421a_b8ae_47a88a61fce3 + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeReactionRateConstant"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Reaction rate constant [mol.m-2.s-1]']"@en ; + "['negative_electrode','active_materials',0,'kinetic_constant','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c5f51531_1452_4654_82e5_0505491c2c7d rdf:type owl:Class ; rdfs:subClassOf , @@ -52109,6 +52399,14 @@ In either case, the magnitude of the catalytic current depends on the applied po "electrode in which the active material is sodium titanium oxide"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c5f9b91e_a770_4e9b_837e_fa2a76019111 + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeActiveMaterialVolumetricSurfaceArea"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Surface area per unit volume [m-1]']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c5fd7b61_40f1_4225_a173_5caa3c5f4773 rdf:type owl:Class ; rdfs:subClassOf ; @@ -52156,6 +52454,16 @@ In either case, the magnitude of the catalytic current depends on the applied po "electrode in which the active material is indium tin oxide"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c69a9d55_823f_4113_a305_ebc89dde7de3 + rdf:type owl:Class ; + rdfs:subClassOf ; + "PositiveElectrodeActiveMaterialMaximumGuestConcentration"@en ; + "maximum concentration of lithium in the positive electrode"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Maximum concentration [mol.m-3]']"@en ; + "['positive_electrode','active_materials',0,'maximum_concentration','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c6d6c0a1_a06b_437a_978f_a469d3071ca9 rdf:type owl:Class ; rdfs:subClassOf ; @@ -52223,6 +52531,13 @@ In either case, the magnitude of the catalytic current depends on the applied po "a thin sheet that has been punched with a pattern of holes, offering controlled porosity and strength for uses in filtration, sound suppression, and structural components"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c8abaf09_300a_4008_a42a_2f4a3953ca7a + rdf:type owl:Class ; + rdfs:subClassOf ; + "D40ParticleSize"@en ; + "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 40% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c91164b8_5e56_4c94_bad1_d7ada576b0e7 rdf:type owl:Class ; rdfs:subClassOf , @@ -52464,6 +52779,15 @@ In either case, the magnitude of the catalytic current depends on the applied po "https://goldbook.iupac.org/terms/view/E02238" . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_ccde4e5f_ace4_41d1_b4d8_cbd63e6376e6 + rdf:type owl:Class ; + rdfs:subClassOf ; + "DeviceSurfaceArea"@en ; + "the external surface area of an electrochemical device"@en ; + "['Parameterisation','Parameterisation','Cell','External surface area [m2]']"@en ; + "['properties','external_surface_area','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_cd1b7943_42ce_46bd_8588_1c3161268270 rdf:type owl:Class ; rdfs:subClassOf ; @@ -52488,6 +52812,16 @@ In either case, the magnitude of the catalytic current depends on the applied po "plot of the time-dependence of instantaneous electric potential following a change in applied current"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_cdc91ec0_9fc5_4551_bbd9_6824c2920124 + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeCoatingThickness"@en ; + "thickness of the negative electrode coating"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Thickness [m]']"@en ; + "['negative_electrode','thickness','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_ce4352a7_f0b1_4f27_9184_6deebf8bbe96 rdf:type owl:Class ; rdfs:subClassOf ; @@ -53170,6 +53504,16 @@ In either case, the magnitude of the catalytic current depends on the applied po "https://en.wikipedia.org/wiki/Capacity_loss"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e3e78df2_d568_4ab7_8c0d_d3a2ee3ae282 + rdf:type owl:Class ; + rdfs:subClassOf ; + "ChargeCarrierTransportNumber"@en ; + "transport number of lithium ion in electrolyte"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Electrolyte','Cation transference number']"@en ; + "['electrolyte','transference_number','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e3f6eacc_f661_404e_ac16_45d2fa1f5d89 rdf:type owl:Class ; rdfs:subClassOf ; @@ -53228,6 +53572,16 @@ In either case, the magnitude of the catalytic current depends on the applied po ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e59188bb_ce66_49f6_84aa_ecb98e76941e + rdf:type owl:Class ; + rdfs:subClassOf ; + "GuestDiffusivityInPositiveElectrodeActiveMaterial"@en ; + "the diffusivity of lithium in the positive electrode"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Positive electrode','Diffusivity [m2.s-1]']"@en ; + "['positive_electrode','active_materials',0,'diffusion_constant','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e6b63190_acac_4e78_9cba_fb2b10bbe910 rdf:type owl:Class ; rdfs:subClassOf ; @@ -53259,6 +53613,16 @@ In either case, the magnitude of the catalytic current depends on the applied po "a coin case with a nominal diameter of 10.0 mm and a height of 2.5 mm"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e808a26a_5812_49e9_894c_b793c7fe0c38 + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeActiveMaterialMaximumGuestConcentration"@en ; + "maximum concentration of lithium in the negative electrode"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Maximum concentration [mol.m-3]']"@en ; + "['negative_electrode','active_materials',0,'maximum_concentration','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e84e691a_df58_465c_9771_7a7fe2212ed5 rdf:type owl:Class ; rdfs:subClassOf ; @@ -53374,6 +53738,15 @@ In either case, the magnitude of the catalytic current depends on the applied po "https://goldbook.iupac.org/terms/view/M03777" . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_eac57b09_5cc9_41d7_b2c8_40218d7fd47c + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeEntropicChangeCoefficient"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Entropic change coefficient [V.K-1]']"@en ; + "['negative_electrode','active_materials',0,'entropy_coefficient','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_eacb141f_6ab4_491f_8603_a3e025cefc82 rdf:type owl:Class ; rdfs:subClassOf , @@ -53633,6 +54006,13 @@ In either case, the magnitude of the catalytic current depends on the applied po "a coin case with a nominal diameter of 16.0 mm and a height of 3.2 mm"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_f2f36f22_3738_49dd_b43b_7469db6675df + rdf:type owl:Class ; + rdfs:subClassOf ; + "BoundaryCondition"@en ; + "a property whose value is controlled on some surface or domain"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_f330680b_347e_45b3_9113_5ce09d18d60b rdf:type owl:Class ; rdfs:subClassOf ; @@ -54170,6 +54550,14 @@ In either case, the magnitude of the catalytic current depends on the applied po "electrode in which the active material is lithium cobalt oxide"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_fda9539d_5232_471c_8945_b9a8ec7247fe + rdf:type owl:Class ; + rdfs:subClassOf ; + "NegativeElectrodeActivationEnergyOfReaction"@en ; + "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + "['Parameterisation','Negative electrode','Reaction rate constant activation energy [J.mol-1]']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_fe054d02_41c7_40e9_8206_3440ab6a67b2 rdf:type owl:Class ; rdfs:subClassOf ; @@ -54380,9 +54768,6 @@ In either case, the magnitude of the catalytic current depends on the applied po [ owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ] . -[ owl:minQualifiedCardinality "2"^^xsd:nonNegativeInteger - ] . - [ owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ] . @@ -54392,6 +54777,9 @@ In either case, the magnitude of the catalytic current depends on the applied po [ owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ] . +[ owl:minQualifiedCardinality "2"^^xsd:nonNegativeInteger + ] . + [ owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ] . @@ -54420,6 +54808,9 @@ In either case, the magnitude of the catalytic current depends on the applied po "hasIECCode"@en . + "battmoKey"@en . + + "hasANSICode"@en . diff --git a/electrochemistry.ttl b/electrochemistry.ttl index bd862a5..aecebeb 100644 --- a/electrochemistry.ttl +++ b/electrochemistry.ttl @@ -16,10 +16,10 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports , , - ; + ; dcterms:abstract "The Electrochemistry Domain Ontology, a specialized domain within the Elementary Multiperspective Materials Ontology (EMMO), encompasses essential terms and relationships for electrochemical systems, materials, methods, and data. Its primary objective is to enable the creation of linked and FAIR (Findable, Accessible, Interoperable, and Reusable) data, thereby fostering advancements in research and innovation within the realm of electrochemistry. This ontology serves as a foundational resource for harmonizing electrochemical knowledge representation, enhancing data interoperability, and accelerating progress in electrochemical research and development."@en ; dcterms:bibliographicCitation "https://doi.org/10.5281/zenodo.7693664" ; dcterms:contributor , @@ -28,9 +28,9 @@ dcterms:created "2022-11-25"^^xsd:date ; dcterms:creator , ; - dcterms:issued "2024-08-14"^^xsd:date ; + dcterms:issued "2024-08-29"^^xsd:date ; dcterms:license "https://creativecommons.org/licenses/by/4.0/legalcode" ; - dcterms:modified "2024-08-14"^^xsd:date ; + dcterms:modified "2024-08-29"^^xsd:date ; dcterms:publisher "EMMO" ; dcterms:source , , @@ -41,9 +41,9 @@ bibo:status "unstable" ; vann:preferredNamespacePrefix "echem" ; vann:preferredNamespaceUri "https://w3id.org/emmo/domain/electrochemistry" ; - owl:backwardCompatibleWith "0.20.0-beta" ; - owl:priorVersion "0.20.0-beta" ; - owl:versionInfo "0.21.0-beta" ; + owl:backwardCompatibleWith "0.21.0-beta" ; + owl:priorVersion "0.21.0-beta" ; + owl:versionInfo "0.22.0-beta" ; foaf:logo "https://raw.githubusercontent.com/emmo-repo/domain-electrochemistry/gh-pages/assets/img/fig/png/domain-electrochemistry-logo.png" . ################################################################# diff --git a/modules/catalog-v001.xml b/modules/catalog-v001.xml new file mode 100644 index 0000000..3fe2868 --- /dev/null +++ b/modules/catalog-v001.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/electrochemicalquantities.ttl b/modules/quantities.ttl similarity index 85% rename from electrochemicalquantities.ttl rename to modules/quantities.ttl index d124182..ae7ccd8 100644 --- a/electrochemicalquantities.ttl +++ b/modules/quantities.ttl @@ -9,10 +9,10 @@ @prefix skos: . @prefix dcterms: . @prefix annotations: . -@base . +@base . - rdf:type owl:Ontology ; - owl:versionIRI ; + rdf:type owl:Ontology ; + owl:versionIRI ; owl:imports ; dcterms:abstract "This electrochemical quantities ontology is a domain of the Elementary Multiperspective Materials Ontology (EMMO). It is a specialized framework designed to represent and organize knowledge about electrochemical quantities. It is designed to integrate with the electrochemistry domain ontology or other ontologies from the EMMO ecosystem. The main focus of this ontology is to provide machine-readable descriptions of common electrochemical quantities, linking both to the larger descriptions of physical quantities in EMMO as well as other sources of information like the IEC, QUDT, Wikidata, etc. It should be used to support linked data generation in the electrochemistry domain."@en ; dcterms:contributor , @@ -21,7 +21,7 @@ dcterms:creator , ; dcterms:license "https://creativecommons.org/licenses/by/4.0/legalcode" ; - owl:versionInfo "0.21.0-beta" . + owl:versionInfo "0.22.0-beta" . ################################################################# # Annotation properties @@ -62,6 +62,12 @@ emmo:EMMO_50c298c2_55a2_4068_b3ac_4e948c33181f rdf:type owl:AnnotationProperty . rdfs:subPropertyOf skos:hiddenLabel . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 +:electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 rdf:type owl:AnnotationProperty ; + skos:prefLabel "bpxKey"@en ; + rdfs:subPropertyOf rdfs:label . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_1b717a20_17e3_4480_8c60_c4ae94058f05 :electrochemistry_1b717a20_17e3_4480_8c60_c4ae94058f05 rdf:type owl:AnnotationProperty ; skos:prefLabel "batteryArchiveLabel"@en ; @@ -69,6 +75,12 @@ emmo:EMMO_50c298c2_55a2_4068_b3ac_4e948c33181f rdf:type owl:AnnotationProperty . rdfs:subPropertyOf skos:hiddenLabel . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 +:electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 rdf:type owl:AnnotationProperty ; + skos:prefLabel "cidemodKey"@en ; + rdfs:subPropertyOf rdfs:label . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_69022178_77b8_4669_97e2_351d45356e5a :electrochemistry_69022178_77b8_4669_97e2_351d45356e5a rdf:type owl:AnnotationProperty ; skos:prefLabel "biologicLabel"@en ; @@ -97,6 +109,12 @@ emmo:EMMO_50c298c2_55a2_4068_b3ac_4e948c33181f rdf:type owl:AnnotationProperty . rdfs:subPropertyOf skos:hiddenLabel . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e5e86474_8623_48ea_a1cf_502bdb10aa14 +:electrochemistry_e5e86474_8623_48ea_a1cf_502bdb10aa14 rdf:type owl:AnnotationProperty ; + skos:prefLabel "battmoKey"@en ; + rdfs:subPropertyOf rdfs:label . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_ea9f4dba_8ca2_419e_9cdf_ce54e9ebbd46 :electrochemistry_ea9f4dba_8ca2_419e_9cdf_ce54e9ebbd46 rdf:type owl:AnnotationProperty ; skos:prefLabel "novonixLabel"@en ; @@ -114,7 +132,7 @@ foaf:Person rdf:type owl:Class ; ### https://w3id.org/emmo#EMMO_1744d51d_0dac_4f48_8b50_fde6c7c2ab39 -emmo:EMMO_1744d51d_0dac_4f48_8b50_fde6c7c2ab39 rdfs:subClassOf . +emmo:EMMO_1744d51d_0dac_4f48_8b50_fde6c7c2ab39 rdfs:subClassOf :electrochemistry_14d93129_d94d_42ff_a6f2_e8fca36ffec4 . ### https://w3id.org/emmo#EMMO_5c78b424_087b_4e31_8c91_6422f1be1e86 @@ -138,81 +156,10 @@ emmo:EMMO_e218c625_6a39_47a9_8d08_a2ef41c152a9 rdfs:subClassOf :electrochemistry :electrochemistry_811aafc3_0c6d_470e_b67e_ff5c82992609 "CmpEng(mWh/g)"@en . -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_0ed0362e_b7ae_482c_a7d0_2ca2eebda648 - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; - skos:prefLabel "D30ParticleSize"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 30% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_14d93129_d94d_42ff_a6f2_e8fca36ffec4 - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_79751276_b2d0_4e2f_bbd4_99d412f43d55 ; - skos:prefLabel "EffectivePorousMediaQuantity"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a physical quantity that is adjusted to consider the effects of porous media structure"@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_2e2d92f4_9fd5_4965_b15a_30b43c68e3e5 - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; - skos:prefLabel "D5ParticleSize"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 5% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_62e03250_8987_497b_85d5_1399aca9a0aa - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; - skos:prefLabel "D20ParticleSize"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 20% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_7f17f6bb_c1f9_4f4a_bfdf_d8974443d07b - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; - skos:prefLabel "D25ParticleSize"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 25% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_8768c8f4_eaa8_4670_a3a0_91524e59a7f6 - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; - skos:prefLabel "D60ParticleSize"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 60% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_92fc0dba_6f11_4019_a8cb_db2a5b1634f5 - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; - skos:prefLabel "D15ParticleSize"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 15% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_9d60c4ab_d9ac_4dda_af0c_c64059326916 - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; - skos:prefLabel "D45ParticleSize"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 45% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_b095e977_dbc2_4a9e_9930_6af0dab089f1 - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; - skos:prefLabel "D55ParticleSize"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 55% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_c1c1288c_97c1_4f1f_8f42_6dfd34d028fd - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; - skos:prefLabel "D35ParticleSize"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 35% of the sample's particles fall."@en . - - -### https://w3id.org/emmo/domain//electrochemistry#electrochemistry_c8abaf09_300a_4008_a42a_2f4a3953ca7a - rdf:type owl:Class ; - rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; - skos:prefLabel "D40ParticleSize"@en ; - emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 40% of the sample's particles fall."@en . +### https://w3id.org/emmo#EMMO_e6e7277a_1d40_4be5_a3a9_afd3da53d937 +emmo:EMMO_e6e7277a_1d40_4be5_a3a9_afd3da53d937 rdfs:subClassOf :electrochemistry_25dabdc2_68bf_4a38_8cbe_11be017358bc ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Electrolyte','Conductivity [S.m-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['electrolyte','ionic_conductivity','value']"@en . ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0089729b_5890_4c15_aa09_1244d41f8626 @@ -356,6 +303,16 @@ emmo:EMMO_e218c625_6a39_47a9_8d08_a2ef41c152a9 rdfs:subClassOf :electrochemistry emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the lower value for C-Rate that is used to indicate a change in an electrochemical measurement process"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_098f98dc_e015_4dbd_b358_a7ac3b3ecff3 +:electrochemistry_098f98dc_e015_4dbd_b358_a7ac3b3ecff3 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_d5be1faf_0c56_4f5a_9b78_581e6dee949f ; + skos:prefLabel "InitialChargeCarrierConcentrationInElectrolyte"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the initial amount concentration of lithium in an electrolyte"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Electrolyte','Initial concentration [mol.m-3]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['electrolyte','initial_concentration','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_09e64707_a17d_4405_84cc_ee9d91ed32ef :electrochemistry_09e64707_a17d_4405_84cc_ee9d91ed32ef rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_c5047d29_4e68_43ee_8355_3e8f05dc70a5 , @@ -369,6 +326,14 @@ emmo:EMMO_e218c625_6a39_47a9_8d08_a2ef41c152a9 rdfs:subClassOf :electrochemistry emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a control limit placed on the rate of change of the cell voltage, dV/dt."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0a1e73c5_e91b_4365_88d4_1e1f476bf776 +:electrochemistry_0a1e73c5_e91b_4365_88d4_1e1f476bf776 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_a5571263_f153_448f_84a3_cd18092cf8fa ; + skos:prefLabel "PositiveElectrodeActiveMaterialVolumetricSurfaceArea"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Surface area per unit volume [m-1]']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0bf1ed19_2fc9_4e6d_87ec_62015985a9a6 :electrochemistry_0bf1ed19_2fc9_4e6d_87ec_62015985a9a6 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_c5047d29_4e68_43ee_8355_3e8f05dc70a5 , @@ -395,6 +360,24 @@ emmo:EMMO_e218c625_6a39_47a9_8d08_a2ef41c152a9 rdfs:subClassOf :electrochemistry emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the miniumum temperature at which an electrochemical device shall be stored"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0e2f4fe6_570a_4d13_81e9_de1d4f9987af +:electrochemistry_0e2f4fe6_570a_4d13_81e9_de1d4f9987af rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_9c657fdc_b9d3_4964_907c_f9a6e8c5f52b ; + skos:prefLabel "NegativeElectrodeActiveMaterialOpenCircuitVoltage"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','OCP [V]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','active_materials',0,'OCP','value']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0ea21f71_d1bd_4714_a260_b991e6d4bcf7 +:electrochemistry_0ea21f71_d1bd_4714_a260_b991e6d4bcf7 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_06448f64_8db6_4304_8b2c_e785dba82044 ; + skos:prefLabel "DeviceDensity"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the overall density of an electrochemical device, calculated as the quotient of the total mass and the total volume"@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Cell','Density [kg.m-3]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['properties','density','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0ea4d188_9701_4699_a5ca_812a98a9afa7 :electrochemistry_0ea4d188_9701_4699_a5ca_812a98a9afa7 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_cc519a19_b8d5_4e3f_b893_3a884888ad79 ; @@ -402,6 +385,13 @@ emmo:EMMO_e218c625_6a39_47a9_8d08_a2ef41c152a9 rdfs:subClassOf :electrochemistry emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the maximum temperature at which an electrochemical device shall be stored"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0ed0362e_b7ae_482c_a7d0_2ca2eebda648 +:electrochemistry_0ed0362e_b7ae_482c_a7d0_2ca2eebda648 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; + skos:prefLabel "D30ParticleSize"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 30% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0f986d97_445f_4075_a5ce_ddde598a47a9 :electrochemistry_0f986d97_445f_4075_a5ce_ddde598a47a9 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_46376e5d_9627_4514_9881_9e62083625c3 ; @@ -519,6 +509,13 @@ emmo:EMMO_e218c625_6a39_47a9_8d08_a2ef41c152a9 rdfs:subClassOf :electrochemistry ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_14d93129_d94d_42ff_a6f2_e8fca36ffec4 +:electrochemistry_14d93129_d94d_42ff_a6f2_e8fca36ffec4 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_79751276_b2d0_4e2f_bbd4_99d412f43d55 ; + skos:prefLabel "EffectivePorousMediaQuantity"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a physical quantity that is adjusted to consider the effects of porous media structure"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_16a5de33_a2ca_4563_80d4_6caeb08d97ca :electrochemistry_16a5de33_a2ca_4563_80d4_6caeb08d97ca rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_900e357f_2ee3_425a_a0b6_322661117787 ; @@ -716,6 +713,15 @@ and t* through mathematical models, provided that the long-time potential- deter emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a quantity that relates to the kinetics of a reaction."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_21da0fe9_9fb6_4840_a12f_fbcc1ba84fb3 +:electrochemistry_21da0fe9_9fb6_4840_a12f_fbcc1ba84fb3 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_f22bd1ec_faca_4335_92a5_a1687154c622 ; + skos:prefLabel "NegativeElectrodeActiveMaterialGuestStoichiometricCoefficientAtSOC0"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Minimum stoichiometry']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','active_materials',0,'stoichiometry0','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_22cec04f_c7f3_4ff8_a34b_e512379c9dcb :electrochemistry_22cec04f_c7f3_4ff8_a34b_e512379c9dcb rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_c995ae70_3b84_4ebb_bcfc_69e6a281bb88 , @@ -944,6 +950,13 @@ and t* through mathematical models, provided that the long-time potential- deter skos:prefLabel "WeightPercent"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_2c4c2626_7db5_440c_a65e_95ed2986ee01 +:electrochemistry_2c4c2626_7db5_440c_a65e_95ed2986ee01 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_33e6986c_b35a_4cae_9a94_acb23248065c ; + skos:prefLabel "InitialCondition"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the initial value of a property at the start of a simulation or experiment"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_2cfea66b_756d_4642_986f_9a41abbd7034 :electrochemistry_2cfea66b_756d_4642_986f_9a41abbd7034 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_c955c089_6ee1_41a2_95fc_d534c5cfd3d5 ; @@ -968,6 +981,13 @@ and t* through mathematical models, provided that the long-time potential- deter emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "an electrochemical quantity describing concepts from thermodynamics"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_2e2d92f4_9fd5_4965_b15a_30b43c68e3e5 +:electrochemistry_2e2d92f4_9fd5_4965_b15a_30b43c68e3e5 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; + skos:prefLabel "D5ParticleSize"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 5% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_31a74e23_bb07_41d0_bb8f_1d8cca157503 :electrochemistry_31a74e23_bb07_41d0_bb8f_1d8cca157503 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_4aa1b96e_44a0_4b1a_a0ac_723d0223d80b ; @@ -1136,6 +1156,24 @@ and t* through mathematical models, provided that the long-time potential- deter emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the maximum current approved for pulse discharge of an electrochemical device"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_404126e0_cb1b_44e4_98dc_2474185767a1 +:electrochemistry_404126e0_cb1b_44e4_98dc_2474185767a1 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_0335e3f6_d1d8_4daa_8376_a9285f1bc9f1 ; + skos:prefLabel "PositiveElectrodeReactionRateConstant"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Reaction rate constant [mol.m-2.s-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','active_materials',0,'kinetic_constant','value']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_43f77743_1af6_4a0f_9cc6_285c2a450549 +:electrochemistry_43f77743_1af6_4a0f_9cc6_285c2a450549 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_ce74d2dc_d496_4116_b2fb_3e83d88bc744 ; + skos:prefLabel "PositiveElectrodeElectronicConductivity"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Conductivity [S.m-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','electronic_conductivity','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_44a67eb4_52e8_433c_aef7_a928c2b9906c :electrochemistry_44a67eb4_52e8_433c_aef7_a928c2b9906c rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_c5047d29_4e68_43ee_8355_3e8f05dc70a5 ; @@ -1186,6 +1224,14 @@ and t* through mathematical models, provided that the long-time potential- deter emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the maximum amount concentration of a species in a phase, either imposed or naturally occurring"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_47288277_4aed_447e_b659_0c975d031406 +:electrochemistry_47288277_4aed_447e_b659_0c975d031406 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_43003c86_9d15_433b_9789_ee2940920656 ; + skos:prefLabel "SeparatorThickness"@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Separator','Thickness [m]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['separator','thickness','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_4747c51d_86ab_4684_a4fb_b05f5c405ea3 :electrochemistry_4747c51d_86ab_4684_a4fb_b05f5c405ea3 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_82fce40c_434d_4640_a3d2_e26379b6acae ; @@ -1299,6 +1345,16 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa emmo:EMMO_fe015383_afb3_44a6_ae86_043628697aa2 "https://doi.org/10.1351/goldbook.D01862"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_4c274506_af5b_4ef1_8217_829ffd459f28 +:electrochemistry_4c274506_af5b_4ef1_8217_829ffd459f28 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_37b24a94_cae0_4d7a_9519_9f7692dec607 ; + skos:prefLabel "ChargeCarrierDiffusivityInElectrolyte"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the diffusivity of lithium in an electrolyte"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Electrolyte','Diffusivity [m2.s-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['electrolyte','diffusion_constant','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_4d2b102b_3515_4591_b079_69232c44f9dc :electrochemistry_4d2b102b_3515_4591_b079_69232c44f9dc rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_4ebe2ef1_eea8_4b10_822d_7a68215bd24d , @@ -1309,6 +1365,16 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The magnitude of a voltage pulse applied to an electrochemical cell during pulsed amperometry and related techniques."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_4d69edda_d2fa_40b0_9c1e_52e08debf578 +:electrochemistry_4d69edda_d2fa_40b0_9c1e_52e08debf578 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_d7f8cab9_b035_4ecd_be63_292672572526 ; + skos:prefLabel "ActivationEnergyOfGuestDiffusivityInPositiveElectrodeActiveMaterial"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the activation energy barrier in an Arrhenius expression for the diffusivity of lithium in the positive electrode"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Diffusivity activation energy [J.mol-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','active_materials',0,'diffusion_constant','arrhenius','activation_energy']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_4ebe2ef1_eea8_4b10_822d_7a68215bd24d :electrochemistry_4ebe2ef1_eea8_4b10_822d_7a68215bd24d rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_17b031fb_4695_49b6_bb69_189ec63df3ee , @@ -1352,6 +1418,16 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the energy density of a device obtained during a discharging process."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_50247e71_75fe_4986_959e_fd06c6be98db +:electrochemistry_50247e71_75fe_4986_959e_fd06c6be98db rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_37b24a94_cae0_4d7a_9519_9f7692dec607 ; + skos:prefLabel "GuestDiffusivityInNegativeElectrodeActiveMaterial"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the diffusivity of lithium in the negative electrode"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Diffusivity [m2.s-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','active_materials',0,'diffusion_constant','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_50674621_09ae_4f03_8ee9_3997b88c8b2a :electrochemistry_50674621_09ae_4f03_8ee9_3997b88c8b2a rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_e1fd84eb_acdb_4b2c_b90c_e899d552a3ee ; @@ -1396,6 +1472,15 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_52ab4fdd_f945_4541_9ce6_cd6fd3a05861 +:electrochemistry_52ab4fdd_f945_4541_9ce6_cd6fd3a05861 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_9c657fdc_b9d3_4964_907c_f9a6e8c5f52b ; + skos:prefLabel "PositiveElectrodeActiveMaterialOpenCircuitVoltage"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','OCP [V]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','active_materials',0,'OCP','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_52ac73c7_763c_4fda_93cd_a2db9dfc2dab :electrochemistry_52ac73c7_763c_4fda_93cd_a2db9dfc2dab rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_0adabf6f_7404_44cb_9f65_32d83d8101a3 , @@ -1471,6 +1556,23 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_56b9cd1f_5397_4385_9292_30d93d9e7a05 +:electrochemistry_56b9cd1f_5397_4385_9292_30d93d9e7a05 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_d7f8cab9_b035_4ecd_be63_292672572526 ; + skos:prefLabel "PostiveElectrodeActivationEnergyOfReaction"@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Reaction rate constant activation energy [J.mol-1]']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_56de36fe_e8e1_486c_8d29_061ac8d28c13 +:electrochemistry_56de36fe_e8e1_486c_8d29_061ac8d28c13 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_d7f8cab9_b035_4ecd_be63_292672572526 ; + skos:prefLabel "ActivationEnergyOfChargeCarrierDiffusivityInElectrolyte"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the activation energy barrier in an Arrhenius expression for the diffusivity of lithium in an electrolyte"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Electrolyte','Diffusivity activation energy [J.mol-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['electrolyte','diffusion_constant','arrhenius','activation_energy']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_5766a819_c319_48ba_ab9a_ce3bd8fedee8 :electrochemistry_5766a819_c319_48ba_ab9a_ce3bd8fedee8 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_ba882f34_0d71_4e4f_9d92_0c076c633a2c , @@ -1490,6 +1592,15 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa :electrochemistry_ea9f4dba_8ca2_419e_9cdf_ce54e9ebbd46 "Cycle Number"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_58400817_3282_46e5_942e_3a1538631403 +:electrochemistry_58400817_3282_46e5_942e_3a1538631403 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_b92e382f_5109_4f60_ab5e_c89d340419a9 ; + skos:prefLabel "PositiveElectrodeActiveMaterialParticleRadius"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Particle radius [m]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','active_materials',0,'particle_radius','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_5973f91a_fa6b_49c9_ba46_3ecc1c2253d2 :electrochemistry_5973f91a_fa6b_49c9_ba46_3ecc1c2253d2 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_09b9021b_f97b_43eb_b83d_0a764b472bc2 ; @@ -1515,6 +1626,15 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_5cb403c4_4f28_46cb_81c4_21c5c47ef14a +:electrochemistry_5cb403c4_4f28_46cb_81c4_21c5c47ef14a rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_3a6578ac_aee0_43b9_9bc6_1eb208c8c9a9 ; + skos:prefLabel "NegativeElectrodeCoatingPorosity"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Porosity']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','porosity','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_5ce6a328_713c_4383_ad63_26c902c30e34 :electrochemistry_5ce6a328_713c_4383_ad63_26c902c30e34 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_06448f64_8db6_4304_8b2c_e785dba82044 ; @@ -1606,6 +1726,23 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_62e03250_8987_497b_85d5_1399aca9a0aa +:electrochemistry_62e03250_8987_497b_85d5_1399aca9a0aa rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; + skos:prefLabel "D20ParticleSize"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 20% of the sample's particles fall."@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_62f5beeb_6d1e_442a_8048_3ebe08882964 +:electrochemistry_62f5beeb_6d1e_442a_8048_3ebe08882964 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_3b938708_e7e4_4ac0_a959_9c04306302e7 ; + skos:prefLabel "PositiveElectrodeCoatingThickness"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "thickness of the positive electrode coating"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Thickness [m]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','thickness','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_637ee9c4_4b3f_4d3a_975b_c0572dfe53ce :electrochemistry_637ee9c4_4b3f_4d3a_975b_c0572dfe53ce rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_a24f8581_a5a4_41a4_bb45_d0fdd5c0d810 ; @@ -1737,6 +1874,15 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the capacity that can be obtained from an electrochemical device after it has been subjected to some specified conditions, then recharged and discharged according to a recommended protocol"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_7481c4c9_c247_4248_a045_a1077230acba +:electrochemistry_7481c4c9_c247_4248_a045_a1077230acba rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_3a6578ac_aee0_43b9_9bc6_1eb208c8c9a9 ; + skos:prefLabel "PositiveElectrodeCoatingPorosity"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Porosity']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','porosity','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_74861991_7da2_4e0f_b6c1_b16713f538bf :electrochemistry_74861991_7da2_4e0f_b6c1_b16713f538bf rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_c7b26177_21bf_4787_b656_8e78edf27f88 ; @@ -1899,6 +2045,13 @@ The real (true) area, A_{real}, takes into account non-idealities of the interfa emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the percentage of the total charge capacity that is obtained during a constant current charge process"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_7f17f6bb_c1f9_4f4a_bfdf_d8974443d07b +:electrochemistry_7f17f6bb_c1f9_4f4a_bfdf_d8974443d07b rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; + skos:prefLabel "D25ParticleSize"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 25% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_7f381c19_cf07_47a8_ab10_0b14d46901e8 :electrochemistry_7f381c19_cf07_47a8_ab10_0b14d46901e8 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_2946d40b_24a1_47fa_8176_e3f79bb45064 ; @@ -1964,6 +2117,15 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog emmo:EMMO_fe015383_afb3_44a6_ae86_043628697aa2 "https://goldbook.iupac.org/terms/view/E01945" . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_80920875_62ac_4e29_b970_ec4316e76aa5 +:electrochemistry_80920875_62ac_4e29_b970_ec4316e76aa5 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_f22bd1ec_faca_4335_92a5_a1687154c622 ; + skos:prefLabel "PositiveElectrodeActiveMaterialGuestStoichiometricCoefficientAtSOC0"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Minimum stoichiometry']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','active_materials',0,'stoichiometry0','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_80ca00f8_c891_4493_87a2_7d39b9d1e098 :electrochemistry_80ca00f8_c891_4493_87a2_7d39b9d1e098 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_d4f7d378_5e3b_468a_baa1_a7e98358cda7 , @@ -2060,6 +2222,23 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The minimum allowed value for stoichiometric coefficient for an entity in a chemical substance"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_86af4487_33c1_4562_a00b_3a8252ffe378 +:electrochemistry_86af4487_33c1_4562_a00b_3a8252ffe378 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_d7f8cab9_b035_4ecd_be63_292672572526 ; + skos:prefLabel "ActivationEnergyOfGuestDiffusivityInNegativeElectrodeActiveMaterial"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the activation energy barrier in an Arrhenius expression for the diffusivity of lithium in the negative electrode"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Diffusivity activation energy [J.mol-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','active_materials',0,'diffusion_constant','arrhenius','activation_energy']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_8768c8f4_eaa8_4670_a3a0_91524e59a7f6 +:electrochemistry_8768c8f4_eaa8_4670_a3a0_91524e59a7f6 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; + skos:prefLabel "D60ParticleSize"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 60% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_884650fd_6cc6_4ec6_8264_c18fbe6b90ee :electrochemistry_884650fd_6cc6_4ec6_8264_c18fbe6b90ee rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_1e3dc60d_dd6b_47d6_8161_70004fc5ee30 ; @@ -2094,6 +2273,24 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog emmo:EMMO_c84c6752_6d64_48cc_9500_e54a3c34898d "https://en.wikipedia.org/wiki/State_of_charge" . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_8c16cb12_41c1_43bd_9e7c_2eea7b06a1f0 +:electrochemistry_8c16cb12_41c1_43bd_9e7c_2eea7b06a1f0 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_d7f8cab9_b035_4ecd_be63_292672572526 ; + skos:prefLabel "ActivationEnergyOfElectrolyteConductivity"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the activation energy barrier in an Arrhenius expression for the ionic conductivity of an electrolyte"@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Electrolyte','Conductivity activation energy [J.mol-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['electrolyte','ionic_conductivity','arrhenius','activation_energy']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_8c336ae9_1818_4b08_a660_4bb83b28351f +:electrochemistry_8c336ae9_1818_4b08_a660_4bb83b28351f rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_38ab058e_3912_48c2_a7eb_76d25d000820 ; + skos:prefLabel "NegativeElectrodeActiveMaterialGuestStoichiometricCoefficientAtSOC100"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Maximum stoichiometry']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','active_materials',0,'stoichiometry1','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_8de9735b_374a_4a0f_b29f_71a50794cf94 :electrochemistry_8de9735b_374a_4a0f_b29f_71a50794cf94 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_f4fadc4e_ca7d_4e4e_89cf_eacf45b4041e ; @@ -2146,6 +2343,13 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog skos:prefLabel "ElectrochemicalProperty"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_92fc0dba_6f11_4019_a8cb_db2a5b1634f5 +:electrochemistry_92fc0dba_6f11_4019_a8cb_db2a5b1634f5 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; + skos:prefLabel "D15ParticleSize"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 15% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_93f000d8_efc1_4364_896c_c9ebc4c7ce3a :electrochemistry_93f000d8_efc1_4364_896c_c9ebc4c7ce3a rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_c4120ce7_f1ff_4917_b59e_002454a65040 ; @@ -2183,6 +2387,15 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_99041897_5c08_40ed_9118_3e77e9b0e191 +:electrochemistry_99041897_5c08_40ed_9118_3e77e9b0e191 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_38ab058e_3912_48c2_a7eb_76d25d000820 ; + skos:prefLabel "PositiveElectrodeActiveMaterialGuestStoichiometricCoefficientAtSOC100"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Maximum stoichiometry']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','active_materials',0,'stoichiometry1','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9b3b4668_0795_4a35_9965_2af383497a26 :electrochemistry_9b3b4668_0795_4a35_9965_2af383497a26 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_791c1915_a791_4450_acd8_7f94764743b5 ; @@ -2257,6 +2470,15 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog skos:prefLabel "InititalThermodynamicTemperature"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9cba2158_26ba_4dd7_b082_ba66dbb960c7 +:electrochemistry_9cba2158_26ba_4dd7_b082_ba66dbb960c7 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_b4f4ed28_d24c_4a00_9583_62ab839abeca ; + skos:prefLabel "DeviceLumpedSpecificHeatCapacity"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the lumped specific heat capacity of an electrochemical device"@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Cell','Specific heat capacity [J.K-1.kg-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['properties','specific_heat','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9cf8e627_a3d2_4f86_9bdc_e0e77996acde :electrochemistry_9cf8e627_a3d2_4f86_9bdc_e0e77996acde rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; @@ -2264,6 +2486,15 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 10% of the sample's particles fall."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9d558b56_d3b8_429a_a4e2_d2ffab895e42 +:electrochemistry_9d558b56_d3b8_429a_a4e2_d2ffab895e42 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_3bb5ae23_59fa_4bc7_9495_803eb6719f28 ; + skos:prefLabel "PositiveElectrodeEntropicChangeCoefficient"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Entropic change coefficient [V.K-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','active_materials',0,'entropy_coefficient','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9d57962c_e150_4e64_962b_8fd6a92c9234 :electrochemistry_9d57962c_e150_4e64_962b_8fd6a92c9234 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_e218c625_6a39_47a9_8d08_a2ef41c152a9 ; @@ -2274,6 +2505,13 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the specific energy of an electrochemical device obtained during a discharge process"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9d60c4ab_d9ac_4dda_af0c_c64059326916 +:electrochemistry_9d60c4ab_d9ac_4dda_af0c_c64059326916 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; + skos:prefLabel "D45ParticleSize"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 45% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9d6a52ed_a53d_4327_a391_f173677a4b1d :electrochemistry_9d6a52ed_a53d_4327_a391_f173677a4b1d rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_41efdf5d_0c9c_4ea0_bb65_f8236e663be5 , @@ -2339,6 +2577,14 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_a4858e4d_dd3b_48ce_97ba_3eeb8571b633 +:electrochemistry_a4858e4d_dd3b_48ce_97ba_3eeb8571b633 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_3a6578ac_aee0_43b9_9bc6_1eb208c8c9a9 ; + skos:prefLabel "SeparatorPorosity"@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Separator','Porosity']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['separator','porosity','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_a4dfa5c1_55a9_4285_b71d_90cf6613ca31 :electrochemistry_a4dfa5c1_55a9_4285_b71d_90cf6613ca31 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_faab3f84_e475_4a46_af9c_7d249f0b9aef , @@ -2543,6 +2789,13 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Physical quantities defined within the domain of electrochemistry."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b095e977_dbc2_4a9e_9930_6af0dab089f1 +:electrochemistry_b095e977_dbc2_4a9e_9930_6af0dab089f1 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; + skos:prefLabel "D55ParticleSize"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 55% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b21de1ef_6c15_4d63_b320_c9b96fbf186f :electrochemistry_b21de1ef_6c15_4d63_b320_c9b96fbf186f rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_d91940f0_c8b6_4505_9b68_6bf6cfc5c544 ; @@ -2568,6 +2821,15 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a limit quantity in a control system"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b4184e46_c53c_47cc_9bfc_186fd77836a5 +:electrochemistry_b4184e46_c53c_47cc_9bfc_186fd77836a5 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_f1a51559_aa3d_43a0_9327_918039f0dfed ; + skos:prefLabel "DeviceVolume"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the total volume of an electrochemical device, determined by its external dimensions"@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Cell','Volume [m3]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['properties','volume','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b66d6553_6136_4754_902a_707e414210c2 :electrochemistry_b66d6553_6136_4754_902a_707e414210c2 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_852b4ab8_fc29_4749_a8c7_b92d4fca7d5a , @@ -2665,6 +2927,32 @@ G° or ΔrG , written as a reduction with respect to that of the standard hydrog ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_be3da3e2_58a9_4e58_adc2_7336d312717c +:electrochemistry_be3da3e2_58a9_4e58_adc2_7336d312717c rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_ce74d2dc_d496_4116_b2fb_3e83d88bc744 ; + skos:prefLabel "NegativeElectrodeElectronicConductivity"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the electronic conductivity of the negative electrode"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Conductivity [S.m-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','electronic_conductivity','value']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_bfe553c2_a63e_49b6_a209_0855dfc39724 +:electrochemistry_bfe553c2_a63e_49b6_a209_0855dfc39724 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_b92e382f_5109_4f60_ab5e_c89d340419a9 ; + skos:prefLabel "NegativeElectrodeActiveMaterialParticleRadius"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Particle radius [m]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','active_materials',0,'particle_radius','value']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c1c1288c_97c1_4f1f_8f42_6dfd34d028fd +:electrochemistry_c1c1288c_97c1_4f1f_8f42_6dfd34d028fd rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; + skos:prefLabel "D35ParticleSize"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 35% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c2a85d02_c6b4_42df_b5ed_a9904ec34a5c :electrochemistry_c2a85d02_c6b4_42df_b5ed_a9904ec34a5c rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_47608fd0_cc0d_457e_9141_051935029e3a ; @@ -2748,6 +3036,33 @@ In either case, the magnitude of the catalytic current depends on the applied po ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c5dcb1a2_f2cf_421a_b8ae_47a88a61fce3 +:electrochemistry_c5dcb1a2_f2cf_421a_b8ae_47a88a61fce3 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_0335e3f6_d1d8_4daa_8376_a9285f1bc9f1 ; + skos:prefLabel "NegativeElectrodeReactionRateConstant"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Reaction rate constant [mol.m-2.s-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','active_materials',0,'kinetic_constant','value']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c5f9b91e_a770_4e9b_837e_fa2a76019111 +:electrochemistry_c5f9b91e_a770_4e9b_837e_fa2a76019111 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_a5571263_f153_448f_84a3_cd18092cf8fa ; + skos:prefLabel "NegativeElectrodeActiveMaterialVolumetricSurfaceArea"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Surface area per unit volume [m-1]']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c69a9d55_823f_4113_a305_ebc89dde7de3 +:electrochemistry_c69a9d55_823f_4113_a305_ebc89dde7de3 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_47287d09_6108_45ca_ac65_8b9451b1065e ; + skos:prefLabel "PositiveElectrodeActiveMaterialMaximumGuestConcentration"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "maximum concentration of lithium in the positive electrode"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Maximum concentration [mol.m-3]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','active_materials',0,'maximum_concentration','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c762a928_5a74_46fd_9929_4ac2d7a3a8d7 :electrochemistry_c762a928_5a74_46fd_9929_4ac2d7a3a8d7 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_02eb0465_4f94_453c_8c1f_5ddf80134634 ; @@ -2772,6 +3087,13 @@ In either case, the magnitude of the catalytic current depends on the applied po ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c8abaf09_300a_4008_a42a_2f4a3953ca7a +:electrochemistry_c8abaf09_300a_4008_a42a_2f4a3953ca7a rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_c1c8ac3c_8a1c_4777_8e0b_14c1f9f9b0c6 ; + skos:prefLabel "D40ParticleSize"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 40% of the sample's particles fall."@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c955c089_6ee1_41a2_95fc_d534c5cfd3d5 :electrochemistry_c955c089_6ee1_41a2_95fc_d534c5cfd3d5 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_afea89af_ef16_4bdb_99d5_f3b2f4c85a6c , @@ -2816,6 +3138,25 @@ In either case, the magnitude of the catalytic current depends on the applied po emmo:EMMO_fe015383_afb3_44a6_ae86_043628697aa2 "https://goldbook.iupac.org/terms/view/E02238" . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_ccde4e5f_ace4_41d1_b4d8_cbd63e6376e6 +:electrochemistry_ccde4e5f_ace4_41d1_b4d8_cbd63e6376e6 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_05cf26ef_782a_4f66_a196_7004dd973f8e ; + skos:prefLabel "DeviceSurfaceArea"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the external surface area of an electrochemical device"@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Parameterisation','Cell','External surface area [m2]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['properties','external_surface_area','value']"@en . + + +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_cdc91ec0_9fc5_4551_bbd9_6824c2920124 +:electrochemistry_cdc91ec0_9fc5_4551_bbd9_6824c2920124 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_3b938708_e7e4_4ac0_a959_9c04306302e7 ; + skos:prefLabel "NegativeElectrodeCoatingThickness"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "thickness of the negative electrode coating"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Thickness [m]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','thickness','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_ce74d2dc_d496_4116_b2fb_3e83d88bc744 :electrochemistry_ce74d2dc_d496_4116_b2fb_3e83d88bc744 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_cde4368c_1d4d_4c94_8548_604749523c6d , @@ -3030,6 +3371,16 @@ In either case, the magnitude of the catalytic current depends on the applied po ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e3e78df2_d568_4ab7_8c0d_d3a2ee3ae282 +:electrochemistry_e3e78df2_d568_4ab7_8c0d_d3a2ee3ae282 rdf:type owl:Class ; + rdfs:subClassOf emmo:EMMO_d97b27cb_61a4_4568_a38b_4edd4f224acc ; + skos:prefLabel "ChargeCarrierTransportNumber"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "transport number of lithium ion in electrolyte"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Electrolyte','Cation transference number']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['electrolyte','transference_number','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e4a221e0_afc9_4464_91d4_e0c8ecdf79e8 :electrochemistry_e4a221e0_afc9_4464_91d4_e0c8ecdf79e8 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_aecc6094_c6a5_4a36_a825_8a497a2ae112 , @@ -3066,6 +3417,16 @@ In either case, the magnitude of the catalytic current depends on the applied po ] . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e59188bb_ce66_49f6_84aa_ecb98e76941e +:electrochemistry_e59188bb_ce66_49f6_84aa_ecb98e76941e rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_37b24a94_cae0_4d7a_9519_9f7692dec607 ; + skos:prefLabel "GuestDiffusivityInPositiveElectrodeActiveMaterial"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the diffusivity of lithium in the positive electrode"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Positive electrode','Diffusivity [m2.s-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['positive_electrode','active_materials',0,'diffusion_constant','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e6b63190_acac_4e78_9cba_fb2b10bbe910 :electrochemistry_e6b63190_acac_4e78_9cba_fb2b10bbe910 rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_aecc6094_c6a5_4a36_a825_8a497a2ae112 ; @@ -3090,6 +3451,16 @@ In either case, the magnitude of the catalytic current depends on the applied po emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "number of discrete finite volume cells in a grid or sub-grid in the X-direction"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e808a26a_5812_49e9_894c_b793c7fe0c38 +:electrochemistry_e808a26a_5812_49e9_894c_b793c7fe0c38 rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_47287d09_6108_45ca_ac65_8b9451b1065e ; + skos:prefLabel "NegativeElectrodeActiveMaterialMaximumGuestConcentration"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "maximum concentration of lithium in the negative electrode"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Maximum concentration [mol.m-3]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','active_materials',0,'maximum_concentration','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_e8ec76bf_2a60_4982_8cde_02dfbd2e626f :electrochemistry_e8ec76bf_2a60_4982_8cde_02dfbd2e626f rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_02eb0465_4f94_453c_8c1f_5ddf80134634 ; @@ -3117,6 +3488,15 @@ In either case, the magnitude of the catalytic current depends on the applied po emmo:EMMO_fe015383_afb3_44a6_ae86_043628697aa2 "https://goldbook.iupac.org/terms/view/M03777" . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_eac57b09_5cc9_41d7_b2c8_40218d7fd47c +:electrochemistry_eac57b09_5cc9_41d7_b2c8_40218d7fd47c rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_3bb5ae23_59fa_4bc7_9495_803eb6719f28 ; + skos:prefLabel "NegativeElectrodeEntropicChangeCoefficient"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Entropic change coefficient [V.K-1]']"@en ; + :electrochemistry_1b718841_5d72_4071_bb71_fc4a754f5e30 "['negative_electrode','active_materials',0,'entropy_coefficient','value']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_ecb6dfdf_bd3d_4339_8a1c_d32abbef30ba :electrochemistry_ecb6dfdf_bd3d_4339_8a1c_d32abbef30ba rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_0adabf6f_7404_44cb_9f65_32d83d8101a3 , @@ -3158,6 +3538,13 @@ In either case, the magnitude of the catalytic current depends on the applied po emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "the stoichiometric coefficient for a reactive entity in a chemical substance that corresponds to a cell-level state-of-charge of 0%"@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_f2f36f22_3738_49dd_b43b_7469db6675df +:electrochemistry_f2f36f22_3738_49dd_b43b_7469db6675df rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_33e6986c_b35a_4cae_9a94_acb23248065c ; + skos:prefLabel "BoundaryCondition"@en ; + emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a property whose value is controlled on some surface or domain"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_f4fadc4e_ca7d_4e4e_89cf_eacf45b4041e :electrochemistry_f4fadc4e_ca7d_4e4e_89cf_eacf45b4041e rdf:type owl:Class ; rdfs:subClassOf :electrochemistry_1cd1d777_e67b_47eb_81f1_edac35d9f2c6 ; @@ -3287,6 +3674,14 @@ In either case, the magnitude of the catalytic current depends on the applied po emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "a statistical measure used in particle size distribution analysis, indicating the particle diameter below which 10% of the sample's particles fall."@en . +### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_fda9539d_5232_471c_8945_b9a8ec7247fe +:electrochemistry_fda9539d_5232_471c_8945_b9a8ec7247fe rdf:type owl:Class ; + rdfs:subClassOf :electrochemistry_d7f8cab9_b035_4ecd_be63_292672572526 ; + skos:prefLabel "NegativeElectrodeActivationEnergyOfReaction"@en ; + emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "this is a very specific term with a narrow conceptualization, used mostly as an anchor term for supporting interoperability; a more general term is suitable in most cases."@en ; + :electrochemistry_0a5b99ee_995b_4899_a79b_925a4086da37 "['Parameterisation','Negative electrode','Reaction rate constant activation energy [J.mol-1]']"@en . + + ### https://w3id.org/emmo/domain/electrochemistry#electrochemistry_ff7797ed_9ef7_40d0_872b_2c215cd54578 :electrochemistry_ff7797ed_9ef7_40d0_872b_2c215cd54578 rdf:type owl:Class ; rdfs:subClassOf emmo:EMMO_4f2d3939_91b1_4001_b8ab_7d19074bf845 ,