strainjedi 1.0.0__tar.gz
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.
- strainjedi-1.0.0/LICENSE +21 -0
- strainjedi-1.0.0/LICENSE_old +21 -0
- strainjedi-1.0.0/PKG-INFO +18 -0
- strainjedi-1.0.0/README.rst +34 -0
- strainjedi-1.0.0/setup.cfg +4 -0
- strainjedi-1.0.0/setup.py +25 -0
- strainjedi-1.0.0/strainjedi/__init__.py +9 -0
- strainjedi-1.0.0/strainjedi/colors.py +111 -0
- strainjedi-1.0.0/strainjedi/io/__init__.py +0 -0
- strainjedi-1.0.0/strainjedi/io/gaussian.py +438 -0
- strainjedi-1.0.0/strainjedi/io/orca.py +370 -0
- strainjedi-1.0.0/strainjedi/io/qchem.py +434 -0
- strainjedi-1.0.0/strainjedi/jedi.py +1965 -0
- strainjedi-1.0.0/strainjedi/quotes.py +9 -0
- strainjedi-1.0.0/strainjedi.egg-info/PKG-INFO +18 -0
- strainjedi-1.0.0/strainjedi.egg-info/SOURCES.txt +18 -0
- strainjedi-1.0.0/strainjedi.egg-info/dependency_links.txt +1 -0
- strainjedi-1.0.0/strainjedi.egg-info/requires.txt +4 -0
- strainjedi-1.0.0/strainjedi.egg-info/top_level.txt +2 -0
- strainjedi-1.0.0/tests/test_Jedi.py +39 -0
strainjedi-1.0.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Henry Wang, Sanna Benter, Wilke Dononelli, Tim Neudecker
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Henry Wang
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: strainjedi
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: The python distribution for the JEDI analysis
|
|
5
|
+
Home-page: https://github.com/neudecker-group/jedi
|
|
6
|
+
Author: Tim Neudecker, Sanna Benter, Henry Wang, Wilke Dononelli
|
|
7
|
+
Author-email: neudecker@uni-bremen.de
|
|
8
|
+
License: MIT
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
License-File: LICENSE_old
|
|
15
|
+
Requires-Dist: mpi4py>=2.0
|
|
16
|
+
Requires-Dist: numpy
|
|
17
|
+
Requires-Dist: ase
|
|
18
|
+
Requires-Dist: pytest
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Judgement of Energy DIstribution
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
JEDI is a quantum chemical strain analysis tool working with the Atomic Simulation Environment (ASE).
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Requirements
|
|
9
|
+
------------
|
|
10
|
+
|
|
11
|
+
* Python_ 3.8 or later
|
|
12
|
+
* NumPy_ (base N-dimensional array package)
|
|
13
|
+
* ase_ 3.23 (functions to determine atomic structures' geometries and quantum chemical calculators)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
Installation
|
|
19
|
+
------------
|
|
20
|
+
|
|
21
|
+
Add ``~/jedi`` to your $PYTHONPATH environment variable
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Tutorial
|
|
26
|
+
------------
|
|
27
|
+
|
|
28
|
+
A tutorial is available here: https://neudecker-group.github.io/jedi/
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
.. _Python: http://www.python.org/
|
|
33
|
+
.. _NumPy: http://docs.scipy.org/doc/numpy/reference/
|
|
34
|
+
.. _ase: https://wiki.fysik.dtu.dk/ase/
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from setuptools import setup
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='strainjedi',
|
|
5
|
+
version='1.0.0',
|
|
6
|
+
description='The python distribution for the JEDI analysis',
|
|
7
|
+
url='https://github.com/neudecker-group/jedi',
|
|
8
|
+
author='Tim Neudecker, Sanna Benter, Henry Wang, Wilke Dononelli',
|
|
9
|
+
author_email='neudecker@uni-bremen.de',
|
|
10
|
+
license='MIT',
|
|
11
|
+
packages=['strainjedi','strainjedi/io'],
|
|
12
|
+
install_requires=['mpi4py>=2.0',
|
|
13
|
+
'numpy',
|
|
14
|
+
'ase',
|
|
15
|
+
'pytest'
|
|
16
|
+
],
|
|
17
|
+
|
|
18
|
+
classifiers=[
|
|
19
|
+
'Development Status :: 5 - Production/Stable',
|
|
20
|
+
'Intended Audience :: Science/Research',
|
|
21
|
+
|
|
22
|
+
'Operating System :: POSIX :: Linux',
|
|
23
|
+
'Programming Language :: Python :: 3.8',
|
|
24
|
+
],
|
|
25
|
+
)
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
#####color code from Jmol https://jmol.sourceforge.net/jscolors/ #########
|
|
2
|
+
colors={
|
|
3
|
+
'H': [1.0, 1.0, 1.0],
|
|
4
|
+
'He': [0.8509803921568627, 1.0, 1.0],
|
|
5
|
+
'Li': [0.8, 0.5019607843137255, 1.0],
|
|
6
|
+
'Be': [0.7607843137254902, 1.0, 0.0],
|
|
7
|
+
'B': [1.0, 0.7098039215686275, 0.7098039215686275],
|
|
8
|
+
'C': [0.5647058823529412, 0.5647058823529412, 0.5647058823529412],
|
|
9
|
+
'N': [0.18823529411764706, 0.3137254901960784, 0.9725490196078431],
|
|
10
|
+
'O': [1.0, 0.050980392156862744, 0.050980392156862744],
|
|
11
|
+
'F': [0.5647058823529412, 0.8784313725490196, 0.3137254901960784],
|
|
12
|
+
'Ne': [0.7019607843137254, 0.8901960784313725, 0.9607843137254902],
|
|
13
|
+
'Na': [0.6705882352941176, 0.3607843137254902, 0.9490196078431372],
|
|
14
|
+
'Mg': [0.5411764705882353, 1.0, 0.0],
|
|
15
|
+
'Al': [0.7490196078431373, 0.6509803921568628, 0.6509803921568628],
|
|
16
|
+
'Si': [0.9411764705882353, 0.7843137254901961, 0.6274509803921569],
|
|
17
|
+
'P': [1.0, 0.5019607843137255, 0.0],
|
|
18
|
+
'S': [1.0, 1.0, 0.18823529411764706],
|
|
19
|
+
'Cl': [0.12156862745098039, 0.9411764705882353, 0.12156862745098039],
|
|
20
|
+
'Ar': [0.5019607843137255, 0.8196078431372549, 0.8901960784313725],
|
|
21
|
+
'K': [0.5607843137254902, 0.25098039215686274, 0.8313725490196079],
|
|
22
|
+
'Ca': [0.23921568627450981, 1.0, 0.0],
|
|
23
|
+
'Sc': [0.9019607843137255, 0.9019607843137255, 0.9019607843137255],
|
|
24
|
+
'Ti': [0.7490196078431373, 0.7607843137254902, 0.7803921568627451],
|
|
25
|
+
'V': [0.6509803921568628, 0.6509803921568628, 0.6705882352941176],
|
|
26
|
+
'Cr': [0.5411764705882353, 0.6, 0.7803921568627451],
|
|
27
|
+
'Mn': [0.611764705882353, 0.47843137254901963, 0.7803921568627451],
|
|
28
|
+
'Fe': [0.8784313725490196, 0.4, 0.2],
|
|
29
|
+
'Co': [0.9411764705882353, 0.5647058823529412, 0.6274509803921569],
|
|
30
|
+
'Ni': [0.3137254901960784, 0.8156862745098039, 0.3137254901960784],
|
|
31
|
+
'Cu': [0.7843137254901961, 0.5019607843137255, 0.2],
|
|
32
|
+
'Zn': [0.49019607843137253, 0.5019607843137255, 0.6901960784313725],
|
|
33
|
+
'Ga': [0.7607843137254902, 0.5607843137254902, 0.5607843137254902],
|
|
34
|
+
'Ge': [0.4, 0.5607843137254902, 0.5607843137254902],
|
|
35
|
+
'As': [0.7411764705882353, 0.5019607843137255, 0.8901960784313725],
|
|
36
|
+
'Se': [1.0, 0.6313725490196078, 0.0],
|
|
37
|
+
'Br': [0.6509803921568628, 0.1607843137254902, 0.1607843137254902],
|
|
38
|
+
'Kr': [0.3607843137254902, 0.7215686274509804, 0.8196078431372549],
|
|
39
|
+
'Rb': [0.4392156862745098, 0.1803921568627451, 0.6901960784313725],
|
|
40
|
+
'Sr': [0.0, 1.0, 0.0],
|
|
41
|
+
'Y': [0.5803921568627451, 1.0, 1.0],
|
|
42
|
+
'Zr': [0.5803921568627451, 0.8784313725490196, 0.8784313725490196],
|
|
43
|
+
'Nb': [0.45098039215686275, 0.7607843137254902, 0.788235294117647],
|
|
44
|
+
'Mo': [0.32941176470588235, 0.7098039215686275, 0.7098039215686275],
|
|
45
|
+
'Tc': [0.23137254901960785, 0.6196078431372549, 0.6196078431372549],
|
|
46
|
+
'Ru': [0.1411764705882353, 0.5607843137254902, 0.5607843137254902],
|
|
47
|
+
'Rh': [0.0392156862745098, 0.49019607843137253, 0.5490196078431373],
|
|
48
|
+
'Pd': [0.0, 0.4117647058823529, 0.5215686274509804],
|
|
49
|
+
'Ag': [0.7529411764705882, 0.7529411764705882, 0.7529411764705882],
|
|
50
|
+
'Cd': [1.0, 0.8509803921568627, 0.5607843137254902],
|
|
51
|
+
'In': [0.6509803921568628, 0.4588235294117647, 0.45098039215686275],
|
|
52
|
+
'Sn': [0.4, 0.5019607843137255, 0.5019607843137255],
|
|
53
|
+
'Sb': [0.6196078431372549, 0.38823529411764707, 0.7098039215686275],
|
|
54
|
+
'Te': [0.8313725490196079, 0.47843137254901963, 0.0],
|
|
55
|
+
'I': [0.5803921568627451, 0.0, 0.5803921568627451],
|
|
56
|
+
'Xe': [0.25882352941176473, 0.6196078431372549, 0.6901960784313725],
|
|
57
|
+
'Cs': [0.3411764705882353, 0.09019607843137255, 0.5607843137254902],
|
|
58
|
+
'Ba': [0.0, 0.788235294117647, 0.0],
|
|
59
|
+
'La': [0.4392156862745098, 0.8313725490196079, 1.0],
|
|
60
|
+
'Ce': [1.0, 1.0, 0.7803921568627451],
|
|
61
|
+
'Pr': [0.8509803921568627, 1.0, 0.7803921568627451],
|
|
62
|
+
'Nd': [0.7803921568627451, 1.0, 0.7803921568627451],
|
|
63
|
+
'Pm': [0.6392156862745098, 1.0, 0.7803921568627451],
|
|
64
|
+
'Sm': [0.5607843137254902, 1.0, 0.7803921568627451],
|
|
65
|
+
'Eu': [0.3803921568627451, 1.0, 0.7803921568627451],
|
|
66
|
+
'Gd': [0.27058823529411763, 1.0, 0.7803921568627451],
|
|
67
|
+
'Tb': [0.18823529411764706, 1.0, 0.7803921568627451],
|
|
68
|
+
'Dy': [0.12156862745098039, 1.0, 0.7803921568627451],
|
|
69
|
+
'Ho': [0.0, 1.0, 0.611764705882353],
|
|
70
|
+
'Er': [0.0, 0.9019607843137255, 0.4588235294117647],
|
|
71
|
+
'Tm': [0.0, 0.8313725490196079, 0.3215686274509804],
|
|
72
|
+
'Yb': [0.0, 0.7490196078431373, 0.2196078431372549],
|
|
73
|
+
'Lu': [0.0, 0.6705882352941176, 0.1411764705882353],
|
|
74
|
+
'Hf': [0.30196078431372547, 0.7607843137254902, 1.0],
|
|
75
|
+
'Ta': [0.30196078431372547, 0.6509803921568628, 1.0],
|
|
76
|
+
'W': [0.12941176470588237, 0.5803921568627451, 0.8392156862745098],
|
|
77
|
+
'Re': [0.14901960784313725, 0.49019607843137253, 0.6705882352941176],
|
|
78
|
+
'Os': [0.14901960784313725, 0.4, 0.5882352941176471],
|
|
79
|
+
'Ir': [0.09019607843137255, 0.32941176470588235, 0.5294117647058824],
|
|
80
|
+
'Pt': [0.8156862745098039, 0.8156862745098039, 0.8784313725490196],
|
|
81
|
+
'Au': [1.0, 0.8196078431372549, 0.13725490196078433],
|
|
82
|
+
'Hg': [0.7215686274509804, 0.7215686274509804, 0.8156862745098039],
|
|
83
|
+
'Tl': [0.6509803921568628, 0.32941176470588235, 0.30196078431372547],
|
|
84
|
+
'Pb': [0.3411764705882353, 0.34901960784313724, 0.3803921568627451],
|
|
85
|
+
'Bi': [0.6196078431372549, 0.30980392156862746, 0.7098039215686275],
|
|
86
|
+
'Po': [0.6705882352941176, 0.3607843137254902, 0.0],
|
|
87
|
+
'At': [0.4588235294117647, 0.30980392156862746, 0.27058823529411763],
|
|
88
|
+
'Rn': [0.25882352941176473, 0.5098039215686274, 0.5882352941176471],
|
|
89
|
+
'Fr': [0.25882352941176473, 0.0, 0.4],
|
|
90
|
+
'Ra': [0.0, 0.49019607843137253, 0.0],
|
|
91
|
+
'Ac': [0.4392156862745098, 0.6705882352941176, 0.9803921568627451],
|
|
92
|
+
'Th': [0.0, 0.7294117647058823, 1.0],
|
|
93
|
+
'Pa': [0.0, 0.6313725490196078, 1.0],
|
|
94
|
+
'U': [0.0, 0.5607843137254902, 1.0],
|
|
95
|
+
'Np': [0.0, 0.5019607843137255, 1.0],
|
|
96
|
+
'Pu': [0.0, 0.4196078431372549, 1.0],
|
|
97
|
+
'Am': [0.32941176470588235, 0.3607843137254902, 0.9490196078431372],
|
|
98
|
+
'Cm': [0.47058823529411764, 0.3607843137254902, 0.8901960784313725],
|
|
99
|
+
'Bk': [0.5411764705882353, 0.30980392156862746, 0.8901960784313725],
|
|
100
|
+
'Cf': [0.6313725490196078, 0.21176470588235294, 0.8313725490196079],
|
|
101
|
+
'Es': [0.7019607843137254, 0.12156862745098039, 0.8313725490196079],
|
|
102
|
+
'Fm': [0.7019607843137254, 0.12156862745098039, 0.7294117647058823],
|
|
103
|
+
'Md': [0.7019607843137254, 0.050980392156862744, 0.6509803921568628],
|
|
104
|
+
'No': [0.7411764705882353, 0.050980392156862744, 0.5294117647058824],
|
|
105
|
+
'Lr': [0.7803921568627451, 0.0, 0.4],
|
|
106
|
+
'Rf': [0.8, 0.0, 0.34901960784313724],
|
|
107
|
+
'Db': [0.8196078431372549, 0.0, 0.30980392156862746],
|
|
108
|
+
'Sg': [0.8509803921568627, 0.0, 0.27058823529411763],
|
|
109
|
+
'Bh': [0.8784313725490196, 0.0, 0.2196078431372549],
|
|
110
|
+
'Hs': [0.9019607843137255, 0.0, 0.1803921568627451],
|
|
111
|
+
'Mt': [0.9215686274509803, 0.0, 0.14901960784313725]}
|
|
File without changes
|