Collective atomic modulation analysis with irreducible space-group representation
Project description
spgrep-modulation
Collective atomic modulation analysis with irreducible space-group representation
- Github: https://github.com/phonopy/spgrep-modulation
- Document: https://phonopy.github.io/spgrep-modulation
- Document (develop): https://phonopy.github.io/spgrep-modulation/develop/
Features
- Calculate representation matrices and irreps formed by phonon eigenmodes
- Calculate isotropy subgroups of irreps of space groups on the fly
- Generate modulated structures in selected order-parameter directions of isotropy subgroups
Usage
from pathlib import Path
import phonopy
from phonopy.structure.symmetry import Symmetry
from spgrep_modulation.modulation import Modulation
# Load Phonopy object
path = Path(__file__).resolve().parent.parent / "tests" / "phonopy_mp-2998.yaml.xz"
ph = phonopy.load(path)
# Prepare Modulation class
qpoint = [0.5, 0, 0] # X point
md = Modulation.with_supercell_and_symmetry_search(
dynamical_matrix=ph.dynamical_matrix,
supercell_matrix=[2, 2, 2],
qpoint=qpoint,
factor=ph.unit_conversion_factor,
)
# Degenerated imaginary mode
frequency_index = 0
print(f"Frequency (THz): {md.eigvals_to_frequencies(md.eigenspaces[frequency_index][0]):.2f}")
# -> Frequency (THz): -4.88
print(f"Irrep shape: {md.eigenspaces[frequency_index][2].shape}")
# -> Irrep shape: (16, 2, 2)
# Modulated cells corresponding to one-dimensional order-parameter directions of isotropy subgroup
cells = md.get_high_symmetry_modulated_supercells(frequency_index)
for cell in cells:
symmetry = Symmetry(cell)
print(f"{symmetry.dataset['international']} (No. {symmetry.dataset['number']})")
# -> Pmma (No. 51) and Cmcm (No. 63)
Installation
conda create -n spgrep python=3.10 pip
conda activate spgrep
git clone git@github.com:lan496/spgrep-modulation.git
cd spgrep-modulation
pip install -e .
# pip install -e ".[dev,docs]"
# pre-commit install
License
spgrep-modulation is released under a BSD 3-clause license.
Development
Document
sphinx-autobuild docs docs_build
# open localhost:8000 in your browser
Acknowledgements
Some test files tests/phonopy_mp-*.yaml.xz
are adapted from phonondb under CC BY 4.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
spgrep_modulation-0.2.3.tar.gz
(105.3 kB
view details)
Built Distribution
File details
Details for the file spgrep_modulation-0.2.3.tar.gz
.
File metadata
- Download URL: spgrep_modulation-0.2.3.tar.gz
- Upload date:
- Size: 105.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33194f2c9f7ab736c0f20a20ebeab4f303051b3fa7a0194c22cb6b0ce2de67b3 |
|
MD5 | a4dee9cf1228168b039980fd97f8c2c2 |
|
BLAKE2b-256 | 0fcc9f8ab7145783a9387c88f18b0cb58f66787cfd6a56b1609edb4252f84c40 |
File details
Details for the file spgrep_modulation-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: spgrep_modulation-0.2.3-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d165cfb5d3abf27fed7ea91e9fc7d8523e3d31a19d540542a063179e35237678 |
|
MD5 | 401b84276518c6b412e5ef7d2f22c2e4 |
|
BLAKE2b-256 | 174dafb4520f50a03bc82aacb31abe90405a4c37647f67ed63b9803a4b62a8da |