Skip to main content

SITH: Splitting Intramolecular Tension due to StretcHing

PyPI version Python Version License: MIT

SITH is a quantum-chemical Python framework for strain energy decomposition and bond destabilization analysis under mechanical stress. It allows computational chemists and mechanochemists to quantify how external pulling forces distribute energy across individual internal coordinates (bonds, angles, dihedrals) of molecules.


📚 Reference

If you use SITH in your research, please cite the following paper:

SITH: A Quantum-Chemical Framework for Predicting Bond Destabilization in Stretched Molecules
Daniel Sucerquia, Mikaela Farrugia, Andreas Dreuw, Frauke Gräter
Submitted on 28 Jan 2026
arXiv:2601.20441 [physics.chem-ph]


🌟 Key Features

  • Anharmonic Accuracy: Unlike harmonic approximations (e.g. JEDI), SITH numerically integrates internal forces along the stretching pathway, accurately predicting energy accumulation up to bond rupture.
  • Internal Coordinate Decomposition: Transforms Cartesian gradients and forces into 3N-6 internal degrees of freedom (bonds, valence angles, and dihedrals).
  • COGEF & Stretching Simulations: Automated constrained geometry optimization (COGEF) pipeline for pulling molecules step-by-step.
  • Multi-Backend Quantum Chemistry Interfaces: Seamlessly integrates with Psi4, Gaussian, and cclib for parsing energies, forces, and geometries.
  • Ring Structure Support: Handles cyclic molecules (e.g. proline, cyclic polymers) with customizable reference coordinate sets.
  • Kinetic Barrier Estimation: Integrates with the Bell-Evans model to calculate force-dependent activation barriers and relative rupture rates.
  • Comprehensive Visualization: Built-in plotting tools for energy decomposition breakdown, bond-breaking rankings, and force-extension curves.

📖 Theoretical Background

When a molecule is stretched by external mechanical force:

  1. Energy is accumulated non-uniformly across internal degrees of freedom $q_i$ (bonds $r$, angles $\theta$, dihedrals $\phi$).
  2. SITH computes internal forces $F_i(q)$ at each stretching configuration step $k$ by transforming Cartesian forces using the pseudoinverse of Wilson's B-matrix: $$\mathbf{F}{\text{internal}} = (\mathbf{B}^+)^T \mathbf{F}{\text{Cartesian}}$$
  3. The total strain energy stored in degree of freedom $i$ is calculated via numerical integration (trapezoidal rule): $$E_i = \int_{q_{i,0}}^{q_{i,\text{final}}} F_i(q_i) , dq_i$$

Because SITH directly integrates forces rather than assuming quadratic potential energy wells ($E = \frac{1}{2} k \Delta q^2$), it avoids overestimating bond energies at large deformations near cleavage.


📦 Installation

From PyPI

pip install sith-chem

With Quantum Chemistry Extras

pip install sith-chem[qm]

From Source (Editable Mode)

git clone https://github.com/username/sith.git
cd sith
pip install -e .[dev]

🚀 Quick Start

1. Define a Molecule

import numpy as np
from sith.core.molecule import Molecule

# Water molecule Cartesian coordinates (Angstroms)
atoms = ["O", "H", "H"]
coords = np.array([
    [0.0000, 0.0000, 0.1173],
    [0.0000, 0.7572, -0.4692],
    [0.0000, -0.7572, -0.4692]
])

mol = Molecule(atoms=atoms, coordinates=coords)
print(f"Number of atoms: {len(mol)}")
print(f"Internal coordinates (3N-6): {len(mol.degrees_of_freedom)}")

2. Perform SITH Energy Decomposition

from sith.analysis.sith_decomposition import SITHAnalysis
from sith.core.trajectory import StretchingPath

# Initialize SITH analysis on a stretching path
# (StretchingPath contains sequence of molecular configurations & forces)
analysis = SITHAnalysis(trajectory=stretching_path)
decomposition = analysis.decompose()

# Display energy accumulated per internal coordinate
bond_energies = decomposition.get_bond_energies()
for bond, energy in bond_energies.items():
    print(f"Bond {bond}: {energy:.2f} kcal/mol")

# Identify the bond most prone to rupture
ranking = decomposition.get_energy_ranking()
print(f"Highest strain stored in: {ranking[0]}")

3. Estimate Force-Modified Reaction Barriers

from sith.analysis.barriers import BellEvansBarrier

# Calculate barrier reduction under 500 pN pulling force
bell_model = BellEvansBarrier(activation_barrier_0=35.0, transition_state_distance=0.15)
reduced_barrier = bell_model.compute_barrier(force=500.0) # pN
rate_acceleration = bell_model.compute_relative_rate(force=500.0, temperature=298.15)

print(f"Reduced barrier: {reduced_barrier:.2f} kcal/mol")
print(f"Rate acceleration factor: {rate_acceleration:.2e}")

4. Plot Energy Breakdown

from sith.visualization.plots import plot_energy_decomposition

# Generate breakdown bar plot
fig, ax = plot_energy_decomposition(decomposition, unit="kcal/mol")
fig.savefig("sith_energy_decomposition.png", dpi=300)

🛠️ Comparison: SITH vs. JEDI

Feature SITH (This Package) JEDI (Harmonic)
Deformation Limit Works up to bond rupture Valid only near equilibrium ($\Delta q \ll 1$)
Potential Model Anharmonic (numerical integration) Harmonic ($E = \frac{1}{2}k\Delta q^2$)
Accuracy at Large Deformations High (captures force saturation) Overestimates stored energy
QM Backends Psi4, Gaussian, cclib Gaussian

🧪 Development & Running Tests

Run the test suite using pytest:

pytest

To run with coverage report:

pytest --cov=sith --cov-report=term-missing

📄 License

Distributed under the MIT License. See LICENSE for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sith_chem-0.1.0.tar.gz (61.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sith_chem-0.1.0-py3-none-any.whl (76.4 kB view details)

Uploaded Python 3

File details

Details for the file sith_chem-0.1.0.tar.gz.

File metadata

  • Download URL: sith_chem-0.1.0.tar.gz
  • Upload date:
  • Size: 61.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for sith_chem-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a0290e1734c6ec519e79035a73eae255e275216f84382e7224c101dce7a77f1f
MD5 a2cadb2ec8e44c22a765c3eaa17c4989
BLAKE2b-256 627dd9260d19bc4691243265abcf0d003da814268ee401004f24f0d18d119004

See more details on using hashes here.

Provenance

The following attestation bundles were made for sith_chem-0.1.0.tar.gz:

Publisher: publish.yml on kuslavicek/sith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sith_chem-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: sith_chem-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 76.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for sith_chem-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8cbeb11563f8497348cd9fc64f2ee7345144fbb4d30027eaf81389f851f35c9f
MD5 6b3bf9c3802f09870287d4e80169d481
BLAKE2b-256 3555b43069d25fef85a89a7cf61963a484391e695e15ca95f1529221975dfa85

See more details on using hashes here.

Provenance

The following attestation bundles were made for sith_chem-0.1.0-py3-none-any.whl:

Publisher: publish.yml on kuslavicek/sith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page