Metadata-Version: 2.4
Name: chmpy
Version: 1.1.11
Summary: Molecules, crystals, promolecule and Hirshfeld surfaces using python.
Author-email: Peter Spackman <peterspackman@fastmail.com>
License-Expression: GPL-3.0-or-later
Project-URL: homepage, https://github.com/peterspackman/chmpy
Project-URL: repository, https://github.com/peterspackman/chmpy
Project-URL: documentation, https://peterspackman.github.io/chmpy/
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy>=2.1.2
Requires-Dist: scipy>=1.14.1
Requires-Dist: trimesh>=4.5.0
Requires-Dist: matplotlib>=3.9.2
Requires-Dist: seaborn>=0.13.2
Requires-Dist: Jinja2>=3.1.2
Provides-Extra: graph
Requires-Dist: graph_tool; extra == "graph"
Provides-Extra: docs
Requires-Dist: mkdocs; extra == "docs"
Requires-Dist: mkdocs-material; extra == "docs"
Requires-Dist: mkdocstrings; extra == "docs"
Requires-Dist: mkdocstrings-python; extra == "docs"
Requires-Dist: mkdocs-gen-files; extra == "docs"
Requires-Dist: mkdocs-literate-nav; extra == "docs"
Dynamic: license-file

![CI](https://github.com/peterspackman/chmpy/workflows/CI/badge.svg)
[![DOI](https://zenodo.org/badge/211644812.svg)](https://zenodo.org/doi/10.5281/zenodo.10697512)


<!-- PROJECT LOGO -->
<br />
<div align="center">
  <a href="https://github.com/peterspackman/chmpy">
    <img src="docs/assets/chmpy_logo.png" alt="chmpy logo" height="128" width="128">
  </a>

  <h3 align="center">chmpy</h3>

  <p align="center">
    A library for computational chemistry in python.
    <br />
    <a href="https://peterspackman.github.io/chmpy"><strong>Documentation»</strong></a>
    <br />
    <a href="https://github.com/peterspackman/chmpy/issues">Report a bug</a>
    ·
    <a href="https://github.com/peterspackman/chmpy/issues">Request a new feature</a>
  </p>
</div>

chmpy supports handling molecules, crystals, Hirshfeld & promolecule 
density isosurfaces, spherical harmonic shape descriptors and much more...

# Installation

Basic installation can be done through the python package manager `pip`:

``` bash
pip install chmpy
# or to install directly from GitHub:
pip install git+https://github.com/peterspackman/chmpy.git
```

For development or modifications, install locally using pip:

``` bash
pip install -e .
```

# Features
While the library is intended to be flexible and make it easy to build
complex pipelines or properties, the following is a brief summary of
intended features:

- Load crystal structures from `.cif`, `.res`, `POSCAR` files.
- Evaluate promolecule and procrystal electron densities.
- Easily generate Hirshfeld or promolecule isosurfaces and associated properties.
- Easily generate spherical harmonic shape descriptors for atoms, molecules, or molecular fragments.
- Efficiently calculate crystal slabs, periodic connectivity and more...
- Automatic parallelization of some calculations using OpenMP (set the `OMP_NUM_THREADS` environment variable)

It should also serve as a simple, easy to read library for learning
how to represent crystal structures, molecules etc. and evaluate
scientifically relevant information quickly and efficiently using
python.

# Examples

## Crystal structures and molecules

Loading a crystal structure from a CIF (`.cif`) or SHELX (`.res`)
file, or a molecule from an XMOL (`.xyz`) file is straightforward:

``` python
from chmpy import Crystal, Molecule
c = Crystal.load("tests/acetic_acid.cif")
print(c)
# <Crystal C2H4O2 Pna2_1>
# Calculate the unique molecules in this crystal
c.symmetry_unique_molecules()
# [<Molecule: C2H4O2(2.12,1.15,0.97)>]
m = Molecule.load("tests/water.xyz")
print(m)
# <Molecule: H2O(-0.67,-0.00,0.01)>
```

## Hirshfeld and promolecule density isosurfaces

Hirshfeld and promolecule density isosurfaces

Generation of surfaces with the default settings can be done with
minimal hassle, simply by using the corresponding members of the Crystal
class:

``` python
c = Crystal.load("tests/test_files/acetic_acid.cif")
# This will generate a high resolution surface
# for each symmetry unique molecule in the crystal
surfaces = c.hirshfeld_surfaces()
print(surfaces)
# [<trimesh.Trimesh(vertices.shape=(3598, 3), faces.shape=(7192, 3))>]
# We can generate lower resolution surfaces with the separation parameter
surfaces = c.hirshfeld_surfaces(separation=0.5)
print(surfaces)
# [<trimesh.Trimesh(vertices.shape=(584, 3), faces.shape=(1164, 3))>]
# Surfaces can be saved via trimesh, or a utility function provided in chmpy
from chmpy.util.mesh import save_mesh
save_mesh(surfaces[0], "acetic_acid.ply")
```
    
The resulting surface should look something like this when visualized:

<br />
<div align="center">
    <img src="src/chmpy/tests/acetic_acid.png" alt="Acetic acid" height=200>
</div>




