crossvib 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- crossvib/__init__.py +18 -0
- crossvib/__main__.py +9 -0
- crossvib/core.py +2383 -0
- crossvib/mapping.py +614 -0
- crossvib-0.1.0.dist-info/LICENSE +21 -0
- crossvib-0.1.0.dist-info/METADATA +115 -0
- crossvib-0.1.0.dist-info/RECORD +10 -0
- crossvib-0.1.0.dist-info/WHEEL +5 -0
- crossvib-0.1.0.dist-info/entry_points.txt +2 -0
- crossvib-0.1.0.dist-info/top_level.txt +1 -0
crossvib/__init__.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""CrossVib — cross-environment vibrational normal-mode correlation and classification.
|
|
2
|
+
|
|
3
|
+
Classifies vibrational modes from vibAnalysis (VMARD) ``.nma`` output — or directly
|
|
4
|
+
from ORCA ``.hess`` files — and correlates modes between two calculations of the same
|
|
5
|
+
chemical system in different environments (solvent, surface, method, oxidation state).
|
|
6
|
+
|
|
7
|
+
The comparison uses a common internal-coordinate projection with a phase-aware signed
|
|
8
|
+
overlap and a symmetrised Shannon mixing index, giving the identity-retention metric
|
|
9
|
+
``P_ret = 1 - H_bar`` in [0, 1]. Because the basis is the *intersection* of internal
|
|
10
|
+
coordinates after atom mapping, the analysis is independent of atom count — the
|
|
11
|
+
signature capability for free-molecule vs. interacting-system comparisons.
|
|
12
|
+
"""
|
|
13
|
+
from __future__ import annotations
|
|
14
|
+
|
|
15
|
+
from crossvib.core import main
|
|
16
|
+
|
|
17
|
+
__all__ = ["main", "__version__"]
|
|
18
|
+
__version__ = "0.1.0"
|