.. sidebar:: .. list-table:: **Ontology Card** :header-rows: 0 * - **Domain** - Materials Science and Engineering * - **Category** - Materials Science * - **Current Version** - 1.0.0 * - **Last Updated** - 2022-12-12 * - **Creator** - Tatyana Sheveleva, Javad Chamanara * - **License** - MIT License * - **Format** - rdf * - **Download** - `Download Materials Vocabulary (MatVoc) `_ Materials Vocabulary (MatVoc) ======================================================================================================== The Materials Vocabulary (MatVoc) is an ontology developed within the STREAM project to provide a structured vocabulary for representing materials and their properties. It aims to facilitate the integration and retrieval of materials data across various domains, supporting applications in materials science, engineering, and related fields. MatVoc encompasses key entities such as materials, properties, and processes, and models relationships to capture the complexity of materials data. The ontology employs a class-based modeling approach, defining classes for different types of materials and properties, along with properties to describe their characteristics and interactions. Hierarchies are used to organize classes into categories, enabling efficient data retrieval and analysis. MatVoc supports the integration of data from experimental studies, computational simulations, and industrial applications, promoting interoperability and data-driven research in materials science. Typical applications of MatVoc include the development of new materials with specific properties, the optimization of materials for industrial applications, and the integration of diverse datasets to support advanced analytics and knowledge discovery. By providing a standardized vocabulary and framework, MatVoc enhances collaboration and innovation in the field of materials science. **Example Usage**: Annotate a materials database with MatVoc terms to specify material types, properties, and processes, enabling semantic search and integration with materials informatics platforms. Metrics & Statistics -------------------------- .. tab:: Graph .. list-table:: Graph Statistics :widths: 50 50 :header-rows: 0 * - **Total Nodes** - 94 * - **Total Edges** - 161 * - **Root Nodes** - 16 * - **Leaf Nodes** - 44 :: .. tab:: Coverage .. list-table:: Knowledge Coverage Statistics :widths: 50 50 :header-rows: 0 * - **Classes** - 28 * - **Individuals** - 0 * - **Properties** - 15 :: .. tab:: Hierarchy .. list-table:: Hierarchical Metrics :widths: 50 50 :header-rows: 0 * - **Maximum Depth** - 2 * - **Minimum Depth** - 0 * - **Average Depth** - 0.62 * - **Depth Variance** - 0.48 :: .. tab:: Breadth .. list-table:: Breadth Metrics :widths: 50 50 :header-rows: 0 * - **Maximum Breadth** - 16 * - **Minimum Breadth** - 4 * - **Average Breadth** - 10.67 * - **Breadth Variance** - 24.89 :: .. tab:: LLMs4OL .. list-table:: LLMs4OL Dataset Statistics :widths: 50 50 :header-rows: 0 * - **Term Types** - 0 * - **Taxonomic Relations** - 6 * - **Non-taxonomic Relations** - 7 * - **Average Terms per Type** - 0.00 :: Usage Example ---------------- Use the following code to import this ontology programmatically: .. code-block:: python from ontolearner.ontology import MatVoc ontology = MatVoc() ontology.load("path/to/MatVoc-ontology.rdf") # Extract datasets data = ontology.extract() # Access specific relations term_types = data.term_typings taxonomic_relations = data.type_taxonomies non_taxonomic_relations = data.type_non_taxonomic_relations