Matid
MatID is a Python package for identifying and analyzing atomistic systems based on their structure.
Install / Use
/learn @nomad-coe/MatidREADME
MatID is a Python package for identifying and analyzing atomistic systems based on their structure.
Documentation
For more details and tutorials, visit the documentation at: https://nomad-coe.github.io/matid/
You can find even more details in the following open-access articles:
- Automated identification of bulk structures, two-dimensional materials, and interfaces using symmetry-based clustering
- Materials structure genealogy and high-throughput topological classification of surfaces and 2D materials
Example: Surface detection and analysis
import ase.io
from ase.visualize import view
from matid.clustering import SBC
from matid.symmetry import SymmetryAnalyzer
# Load structure from a file
system = ase.io.read('data/system.xyz')
# Find interesting substructures using Symmetry-based Clustering (SBC)
sbc = SBC()
clusters = sbc.get_clusters(system)
# Analyze each found cluster printing out the indices of the atoms belonging to
# this cluster and visualizing the conventional cell from which the cluster was
# built from.
for cluster in clusters:
# Get the indices of the atoms belonging to this cluster
indices = cluster.indices
print(indices)
# Get the dimensionality of the cluster
dimensionality = cluster.get_dimensionality()
print(dimensionality)
# Get the cell from which the cluster is constructed from. The periodicity
# of this cell indicates in which directions the unit cell has been found to
# be repeated in (at least once, possibly infinitely).
cell = cluster.get_cell()
n_repeated_directions = sum(cell.get_pbc())
print(n_repeated_directions)
# Analyze some symmetry properties of the underlying cell to better identify
# the material from which the cluster has been constructed from.
analyzer = SymmetryAnalyzer(cell, symmetry_tol=0.5)
conv_sys = analyzer.get_conventional_system()
view(conv_sys)
Installation
pip
pip install matid
From source
git clone https://github.com/nomad-coe/matid.git
cd matid
pip install .
Related Skills
node-connect
346.4kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
107.2kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
346.4kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
346.4kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
