FIX Ontology (FIX)

The FIX (Physico-Chemical Methods and Properties) Ontology provides a systematic vocabulary for describing and classifying physico-chemical methods and their associated properties. It represents analytical and experimental techniques used in chemistry and materials science, including measurement methods, analytical procedures, and the physical and chemical properties they determine. The ontology captures relationships between methods and properties, enabling precise description of experimental workflows and results in laboratory and industrial settings. It supports semantic interoperability in chemistry databases, laboratory information systems (LIMS), and scientific data repositories.

Example Usage: Represent a mass spectrometry measurement as an instance of FIX:AnalyticalMethod linked to FIX:ChemicalProperty instances such as molecular weight or compound identification.

Metrics & Statistics

Graph Statistics

Total Nodes

3402

Total Edges

7621

Root Nodes

22

Leaf Nodes

2147

Knowledge Coverage Statistics

Classes

1163

Individuals

0

Properties

5

Hierarchical Metrics

Maximum Depth

7

Minimum Depth

0

Average Depth

2.46

Depth Variance

2.32

Breadth Metrics

Maximum Breadth

75

Minimum Breadth

2

Average Breadth

36.25

Breadth Variance

666.69

LLMs4OL Dataset Statistics

Term Types

0

Taxonomic Relations

2751

Non-taxonomic Relations

0

Average Terms per Type

0.00

Usage Example

Use the following code to import this ontology programmatically:

from ontolearner.ontology import FIX

ontology = FIX()
ontology.load("path/to/FIX-ontology.owl")

# 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