mat3ra-esse 2025.5.17.post0__py3-none-any.whl → 2025.5.17.post1__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.
Potentially problematic release.
This version of mat3ra-esse might be problematic. Click here for more details.
- mat3ra/esse/data/examples.py +1 -1
- mat3ra/esse/data/schemas.py +1 -1
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py +6 -6
- mat3ra/esse/models/core/reusable/energy.py +2 -2
- mat3ra/esse/models/element.py +6 -6
- mat3ra/esse/models/material/__init__.py +14 -14
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/configuration.py +14 -14
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/configuration.py +4 -0
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/__init__.py +3 -0
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/configuration.py +549 -0
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/__init__.py +3 -0
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/configuration.py +550 -0
- mat3ra/esse/models/materials_category/defects/configuration.py +4 -0
- mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py +157 -19
- mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/__init__.py +3 -0
- mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/configuration.py +1538 -0
- mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py +14 -14
- mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py +14 -14
- mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py +14 -14
- mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py +14 -14
- mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py +14 -14
- mat3ra/esse/models/properties_directory/derived_properties.py +11 -11
- mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/formation_energy.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
- mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
- mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +2 -2
- {mat3ra_esse-2025.5.17.post0.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/METADATA +1 -1
- {mat3ra_esse-2025.5.17.post0.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/RECORD +43 -37
- {mat3ra_esse-2025.5.17.post0.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/WHEEL +0 -0
- {mat3ra_esse-2025.5.17.post0.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/licenses/LICENSE.md +0 -0
- {mat3ra_esse-2025.5.17.post0.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/top_level.txt +0 -0
|
@@ -19,115 +19,115 @@ class ScalarSchema(BaseModel):
|
|
|
19
19
|
value: float
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
class
|
|
22
|
+
class Name178(Enum):
|
|
23
23
|
harris_foulkes = "harris_foulkes"
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
class
|
|
27
|
-
name: Optional[
|
|
26
|
+
class ScalarSchema19(BaseModel):
|
|
27
|
+
name: Optional[Name178] = None
|
|
28
28
|
value: float
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
class
|
|
31
|
+
class Name179(Enum):
|
|
32
32
|
one_electron = "one_electron"
|
|
33
33
|
|
|
34
34
|
|
|
35
|
-
class
|
|
36
|
-
name: Optional[
|
|
35
|
+
class ScalarSchema20(BaseModel):
|
|
36
|
+
name: Optional[Name179] = None
|
|
37
37
|
value: float
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
class
|
|
40
|
+
class Name180(Enum):
|
|
41
41
|
hartree = "hartree"
|
|
42
42
|
|
|
43
43
|
|
|
44
|
-
class
|
|
45
|
-
name: Optional[
|
|
44
|
+
class ScalarSchema21(BaseModel):
|
|
45
|
+
name: Optional[Name180] = None
|
|
46
46
|
value: float
|
|
47
47
|
|
|
48
48
|
|
|
49
|
-
class
|
|
49
|
+
class Name181(Enum):
|
|
50
50
|
exchange = "exchange"
|
|
51
51
|
|
|
52
52
|
|
|
53
|
-
class
|
|
54
|
-
name: Optional[
|
|
53
|
+
class ScalarSchema22(BaseModel):
|
|
54
|
+
name: Optional[Name181] = None
|
|
55
55
|
value: float
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
class
|
|
58
|
+
class Name182(Enum):
|
|
59
59
|
exchange_correlation = "exchange_correlation"
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
class
|
|
63
|
-
name: Optional[
|
|
62
|
+
class ScalarSchema23(BaseModel):
|
|
63
|
+
name: Optional[Name182] = None
|
|
64
64
|
value: float
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
class
|
|
67
|
+
class Name183(Enum):
|
|
68
68
|
ewald = "ewald"
|
|
69
69
|
|
|
70
70
|
|
|
71
|
-
class
|
|
72
|
-
name: Optional[
|
|
71
|
+
class ScalarSchema24(BaseModel):
|
|
72
|
+
name: Optional[Name183] = None
|
|
73
73
|
value: float
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
class
|
|
76
|
+
class Name184(Enum):
|
|
77
77
|
alphaZ = "alphaZ"
|
|
78
78
|
|
|
79
79
|
|
|
80
|
-
class
|
|
81
|
-
name: Optional[
|
|
80
|
+
class ScalarSchema25(BaseModel):
|
|
81
|
+
name: Optional[Name184] = None
|
|
82
82
|
value: float
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
class
|
|
85
|
+
class Name185(Enum):
|
|
86
86
|
atomic_energy = "atomic_energy"
|
|
87
87
|
|
|
88
88
|
|
|
89
|
-
class
|
|
90
|
-
name: Optional[
|
|
89
|
+
class ScalarSchema26(BaseModel):
|
|
90
|
+
name: Optional[Name185] = None
|
|
91
91
|
value: float
|
|
92
92
|
|
|
93
93
|
|
|
94
|
-
class
|
|
94
|
+
class Name186(Enum):
|
|
95
95
|
eigenvalues = "eigenvalues"
|
|
96
96
|
|
|
97
97
|
|
|
98
|
-
class
|
|
99
|
-
name: Optional[
|
|
98
|
+
class ScalarSchema27(BaseModel):
|
|
99
|
+
name: Optional[Name186] = None
|
|
100
100
|
value: float
|
|
101
101
|
|
|
102
102
|
|
|
103
|
-
class
|
|
103
|
+
class Name187(Enum):
|
|
104
104
|
PAW_double_counting_correction_2 = "PAW_double-counting_correction_2"
|
|
105
105
|
|
|
106
106
|
|
|
107
|
-
class
|
|
108
|
-
name: Optional[
|
|
107
|
+
class ScalarSchema28(BaseModel):
|
|
108
|
+
name: Optional[Name187] = None
|
|
109
109
|
value: float
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
class
|
|
112
|
+
class Name188(Enum):
|
|
113
113
|
PAW_double_counting_correction_3 = "PAW_double-counting_correction_3"
|
|
114
114
|
|
|
115
115
|
|
|
116
|
-
class
|
|
117
|
-
name: Optional[
|
|
116
|
+
class ScalarSchema29(BaseModel):
|
|
117
|
+
name: Optional[Name188] = None
|
|
118
118
|
value: float
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
class
|
|
121
|
+
class Name189(Enum):
|
|
122
122
|
hartree_fock = "hartree_fock"
|
|
123
123
|
|
|
124
124
|
|
|
125
|
-
class
|
|
126
|
-
name: Optional[
|
|
125
|
+
class ScalarSchema30(BaseModel):
|
|
126
|
+
name: Optional[Name189] = None
|
|
127
127
|
value: float
|
|
128
128
|
|
|
129
129
|
|
|
130
|
-
class
|
|
130
|
+
class Name190(Enum):
|
|
131
131
|
total_energy_contributions = "total_energy_contributions"
|
|
132
132
|
|
|
133
133
|
|
|
@@ -146,53 +146,53 @@ class TotalEnergyContributionsSchema(BaseModel):
|
|
|
146
146
|
"""
|
|
147
147
|
product of temperature and configurational entropy
|
|
148
148
|
"""
|
|
149
|
-
harrisFoulkes: Optional[
|
|
149
|
+
harrisFoulkes: Optional[ScalarSchema19] = Field(None, title="scalar schema")
|
|
150
150
|
"""
|
|
151
151
|
non self-consitent energy based on an input charge density
|
|
152
152
|
"""
|
|
153
|
-
oneElectron: Optional[
|
|
153
|
+
oneElectron: Optional[ScalarSchema20] = Field(None, title="scalar schema")
|
|
154
154
|
"""
|
|
155
155
|
kinetic + pseudopotential energy
|
|
156
156
|
"""
|
|
157
|
-
hartree: Optional[
|
|
157
|
+
hartree: Optional[ScalarSchema21] = Field(None, title="scalar schema")
|
|
158
158
|
"""
|
|
159
159
|
energy due to coulomb potential
|
|
160
160
|
"""
|
|
161
|
-
exchange: Optional[
|
|
161
|
+
exchange: Optional[ScalarSchema22] = Field(None, title="scalar schema")
|
|
162
162
|
"""
|
|
163
163
|
exchange energy
|
|
164
164
|
"""
|
|
165
|
-
exchangeCorrelation: Optional[
|
|
165
|
+
exchangeCorrelation: Optional[ScalarSchema23] = Field(None, title="scalar schema")
|
|
166
166
|
"""
|
|
167
167
|
exchange and correlation energy per particle
|
|
168
168
|
"""
|
|
169
|
-
ewald: Optional[
|
|
169
|
+
ewald: Optional[ScalarSchema24] = Field(None, title="scalar schema")
|
|
170
170
|
"""
|
|
171
171
|
summation of interaction energies at long length scales due to coloumbic interactions
|
|
172
172
|
"""
|
|
173
|
-
alphaZ: Optional[
|
|
173
|
+
alphaZ: Optional[ScalarSchema25] = Field(None, title="scalar schema")
|
|
174
174
|
"""
|
|
175
175
|
divergent electrostatic ion interaction in compensating electron gas
|
|
176
176
|
"""
|
|
177
|
-
atomicEnergy: Optional[
|
|
177
|
+
atomicEnergy: Optional[ScalarSchema26] = Field(None, title="scalar schema")
|
|
178
178
|
"""
|
|
179
179
|
kinetic energy of wavefunctions in the atomic limit
|
|
180
180
|
"""
|
|
181
|
-
eigenvalues: Optional[
|
|
181
|
+
eigenvalues: Optional[ScalarSchema27] = Field(None, title="scalar schema")
|
|
182
182
|
"""
|
|
183
183
|
sum of one electron energies of kinetic, electrostatic, and exchange correlation
|
|
184
184
|
"""
|
|
185
|
-
PAWDoubleCounting2: Optional[
|
|
185
|
+
PAWDoubleCounting2: Optional[ScalarSchema28] = Field(None, title="scalar schema")
|
|
186
186
|
"""
|
|
187
187
|
double counting correction 2
|
|
188
188
|
"""
|
|
189
|
-
PAWDoubleCounting3: Optional[
|
|
189
|
+
PAWDoubleCounting3: Optional[ScalarSchema29] = Field(None, title="scalar schema")
|
|
190
190
|
"""
|
|
191
191
|
double counting correction 3
|
|
192
192
|
"""
|
|
193
|
-
hartreeFock: Optional[
|
|
193
|
+
hartreeFock: Optional[ScalarSchema30] = Field(None, title="scalar schema")
|
|
194
194
|
"""
|
|
195
195
|
hartree-fock contribution
|
|
196
196
|
"""
|
|
197
|
-
name: Optional[
|
|
197
|
+
name: Optional[Name190] = None
|
|
198
198
|
units: Optional[Units] = None
|
|
@@ -38,7 +38,7 @@ class Label17(Enum):
|
|
|
38
38
|
Absorption_coefficient = "Absorption coefficient"
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
class
|
|
41
|
+
class Units97(Enum):
|
|
42
42
|
field_debye_angstrom__2 = "(debye/angstrom)^2"
|
|
43
43
|
km_mol = "km/mol"
|
|
44
44
|
m_mol = "m/mol"
|
|
@@ -50,7 +50,7 @@ class AxisSchema20(BaseModel):
|
|
|
50
50
|
"""
|
|
51
51
|
label of an axis object
|
|
52
52
|
"""
|
|
53
|
-
units: Optional[
|
|
53
|
+
units: Optional[Units97] = None
|
|
54
54
|
"""
|
|
55
55
|
units for an axis
|
|
56
56
|
"""
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units55(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class ElectronAffinitySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units55]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units62(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class FermiEnergySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units62]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units64(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class FormationEnergySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units64]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units72(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class IonizationPotentialSchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units72]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units84(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class ReactionEnergyBarrierSchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units84]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units88(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class SurfaceEnergySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units88]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units91(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class TotalEnergySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units91]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units95(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class ValenceBandOffsetSchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units95]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units100(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class ZeroPointEnergySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units100]
|
|
34
34
|
value: float
|
|
@@ -37,12 +37,12 @@ class FunctionalGroupPatternSchema(BaseModel):
|
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
class
|
|
40
|
+
class Name158(Enum):
|
|
41
41
|
ring = "ring"
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
class RingPatternSchema(BaseModel):
|
|
45
|
-
name: Optional[
|
|
45
|
+
name: Optional[Name158] = None
|
|
46
46
|
atoms: Optional[List[ObjectWithId]] = Field(None, title="array of ids")
|
|
47
47
|
"""
|
|
48
48
|
array of objects containing integer id each
|
|
@@ -50,12 +50,12 @@ class RingPatternSchema(BaseModel):
|
|
|
50
50
|
isAromatic: Optional[bool] = None
|
|
51
51
|
|
|
52
52
|
|
|
53
|
-
class
|
|
53
|
+
class Name159(Enum):
|
|
54
54
|
special_bond = "special_bond"
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
class SpecialBondPatternSchema(BaseModel):
|
|
58
|
-
name: Optional[
|
|
58
|
+
name: Optional[Name159] = None
|
|
59
59
|
atoms: Optional[List[ObjectWithId]] = Field(None, title="array of ids")
|
|
60
60
|
"""
|
|
61
61
|
array of objects containing integer id each
|
|
@@ -18,14 +18,14 @@ class Units(Enum):
|
|
|
18
18
|
eV = "eV"
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
class
|
|
21
|
+
class Units69(Enum):
|
|
22
22
|
eV = "eV"
|
|
23
23
|
Ry = "Ry"
|
|
24
24
|
hartree = "hartree"
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
class Electronic(BaseModel):
|
|
28
|
-
units: Optional[
|
|
28
|
+
units: Optional[Units69] = None
|
|
29
29
|
"""
|
|
30
30
|
units for force tolerance
|
|
31
31
|
"""
|
|
@@ -2,17 +2,17 @@ mat3ra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
2
2
|
mat3ra/esse/__init__.py,sha256=nN0dOkxbOK6sWOTNr8aBGi9bQsI9sy6B2nn0UP29-sI,1244
|
|
3
3
|
mat3ra/esse/utils.py,sha256=-FexdtkOYGEWmwJUwWDuJferibc7M1YzUH738Bffuxo,1727
|
|
4
4
|
mat3ra/esse/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
mat3ra/esse/data/examples.py,sha256=
|
|
5
|
+
mat3ra/esse/data/examples.py,sha256=Xrc5rv2MmkX-pJnUGs-go_WdFNQAcjgfpubdvszADv0,65467
|
|
6
6
|
mat3ra/esse/data/properties.py,sha256=geWFIVIJbdn2Q_JG3Mz36oQ_dXeZZwnmlS_NgszvHUY,6099
|
|
7
|
-
mat3ra/esse/data/schemas.py,sha256=
|
|
7
|
+
mat3ra/esse/data/schemas.py,sha256=IaDggGQIugdoSwGXOQlIxdzJTmuIZc7CZqZUT8Y1J-s,1813142
|
|
8
8
|
mat3ra/esse/models/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
9
|
-
mat3ra/esse/models/element.py,sha256=
|
|
9
|
+
mat3ra/esse/models/element.py,sha256=Hms1a2wxd4AOI3b6ht2bjl5KLRZR9W_lk_vaUWhdcv0,2948
|
|
10
10
|
mat3ra/esse/models/project.py,sha256=fqUckRBLyCzVc_77-EtQUg_zFDV_zTYfnLmOoE77zPE,1148
|
|
11
11
|
mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
12
12
|
mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/atoms.py,sha256=KJoqkT9hV3J_xJmaHCLx7bAEBxvGxz0_ZC76b9Auu2k,1451
|
|
13
13
|
mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/db_entry.py,sha256=U1u7lcPwZCymrEfiOrkjT0nbvDDaiz83LiVUGKtx18s,1909
|
|
14
14
|
mat3ra/esse/models/apse/file/applications/espresso/7.2/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
15
|
-
mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py,sha256=
|
|
15
|
+
mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py,sha256=fxXOA1ddYqYwOJIZxYUjIJVgSH8FGlllqsyvi5qYrh8,74723
|
|
16
16
|
mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
17
17
|
mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/atomic_positions.py,sha256=mnHklX-WdQl7yHBykTvnpid3zOzOVv6fr9kLCIhK85c,1271
|
|
18
18
|
mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/atomic_species.py,sha256=DEYl0xPnsY2XIyRIJhvny8BmaKLASkdBbIN1Xc-o--c,1180
|
|
@@ -94,7 +94,7 @@ mat3ra/esse/models/core/reusable/band_gap.py,sha256=_L79BKX80sAH7ZuyxFSdomJLS2dq
|
|
|
94
94
|
mat3ra/esse/models/core/reusable/categories.py,sha256=Z90c6gdSMUdEYwoThEyusMXb5ufqoQh-tISYafPWwME,1350
|
|
95
95
|
mat3ra/esse/models/core/reusable/category_path.py,sha256=SFyMHOXwrIewKkr4lCZRfSO-oszEx29XEK6TuLJrBtQ,359
|
|
96
96
|
mat3ra/esse/models/core/reusable/dielectric_tensor_component.py,sha256=_rr6oeTSxUp9iIwaDNt84oeu32_EMXB2vb-MeuxosjY,623
|
|
97
|
-
mat3ra/esse/models/core/reusable/energy.py,sha256=
|
|
97
|
+
mat3ra/esse/models/core/reusable/energy.py,sha256=DFRgaD8fgL5g47nsFpr2dInji_VKkFEQXlYAGiH-_xk,512
|
|
98
98
|
mat3ra/esse/models/core/reusable/energy_accuracy_levels.py,sha256=ndCRZOzYZZ-Ok-mjANEKtvOuMSQvE2WzCXqXvrJrNtA,655
|
|
99
99
|
mat3ra/esse/models/core/reusable/file_metadata.py,sha256=DyPL1zQJR3HTyOGgvQzE7BxasTCkVRffeG_4WKfxf-8,520
|
|
100
100
|
mat3ra/esse/models/core/reusable/frequency_function_matrix.py,sha256=I4B-ukMJ_aGpP_PHDd63bW8Jav1mreGeMiLqtrElIno,429
|
|
@@ -126,7 +126,7 @@ mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7
|
|
|
126
126
|
mat3ra/esse/models/job/__init__.py,sha256=tQXT9GQRHDoVyW9AmI_Sjkqg78fkKSb4tL6TmWn--m4,64815
|
|
127
127
|
mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
|
|
128
128
|
mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
|
|
129
|
-
mat3ra/esse/models/material/__init__.py,sha256=
|
|
129
|
+
mat3ra/esse/models/material/__init__.py,sha256=sghqE-Le2uLd6CMHeQs3Yyh-aqnab61msLCxCT0Vprw,11681
|
|
130
130
|
mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
|
|
131
131
|
mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
|
|
132
132
|
mat3ra/esse/models/material/builders/base/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
@@ -147,12 +147,16 @@ mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=GlJFBUUYc8JP-zqdLXaUf
|
|
|
147
147
|
mat3ra/esse/models/material/reusable/slab/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
148
148
|
mat3ra/esse/models/material/reusable/slab/enums/exposed_face.py,sha256=-MUlEELT-ec-0XtmZrsrs2HVviP-ITmhxJYiR_1ab5M,268
|
|
149
149
|
mat3ra/esse/models/materials_category/defects/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
150
|
-
mat3ra/esse/models/materials_category/defects/configuration.py,sha256=
|
|
150
|
+
mat3ra/esse/models/materials_category/defects/configuration.py,sha256=_tkMnpsyQ1YggJXHIXUiNGRO8bUzIu0E8Ff5S72eFp8,12064
|
|
151
151
|
mat3ra/esse/models/materials_category/defects/enums.py,sha256=mRxMaTANr1UiHyO2zBN2j5OchPCCf8FGOTKV1Ja6cSQ,245
|
|
152
152
|
mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
153
|
-
mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/configuration.py,sha256=
|
|
153
|
+
mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/configuration.py,sha256=e2ktSVdRIeVqA0t1qn2OPR60DUvvtTOeCUvrvJ0Tgjw,12302
|
|
154
154
|
mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
155
|
-
mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/configuration.py,sha256=
|
|
155
|
+
mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/configuration.py,sha256=wo9ul3W33KXnPFaC7jCrXZ8C6ZqBR5FawAiNeq7J2Sc,14018
|
|
156
|
+
mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
157
|
+
mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/configuration.py,sha256=3tnsqhI-MkC6rtLgmAWlZJCTMFVUgU1z-vkRokFaB2M,12282
|
|
158
|
+
mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
159
|
+
mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/configuration.py,sha256=aHvKbUTrwCBx4wPsqjcwygwLtt-EiiaF1HT-pKPCe2Y,12308
|
|
156
160
|
mat3ra/esse/models/materials_category/defects/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
157
161
|
mat3ra/esse/models/materials_category/defects/enums/atom_placement_method.py,sha256=r2_0uqfUU5oq8EYwX9DJ387FkliyMI7g3ys1DmvdxKs,555
|
|
158
162
|
mat3ra/esse/models/materials_category/defects/enums/complex_defect_type.py,sha256=v9IU5XENca1s9-dezzmRxAQT-rtcUdBnHAU0DBkQJAY,399
|
|
@@ -160,7 +164,7 @@ mat3ra/esse/models/materials_category/defects/enums/coordinates_shape.py,sha256=
|
|
|
160
164
|
mat3ra/esse/models/materials_category/defects/enums/point_defect_type.py,sha256=Wsg5UOsO9cvpuATN0RMPIwuo8DsEBCQDa2X4pez22Ho,313
|
|
161
165
|
mat3ra/esse/models/materials_category/defects/enums/slab_defect_type.py,sha256=zbxuqPNU-KCFelxM1iLHNvKGpq0Dhb9fKxfIbf85lvc,412
|
|
162
166
|
mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
163
|
-
mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py,sha256=
|
|
167
|
+
mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py,sha256=U4faSoWiNE22Dh11pRUdbVsyebPOqbreclG0QzhHXmc,12794
|
|
164
168
|
mat3ra/esse/models/materials_category/defects/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
165
169
|
mat3ra/esse/models/materials_category/defects/slab/configuration.py,sha256=6yZFhYuWyfuYj8Y-VpDf0o52MMbzbf-o_gVrEIZXZhQ,10258
|
|
166
170
|
mat3ra/esse/models/materials_category/defects/two_dimensional/island/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
@@ -172,21 +176,23 @@ mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/base_confi
|
|
|
172
176
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/configuration.py,sha256=gr70EtIa9rnmFuoEh2mmm6m_Jj3o1QTExS8u2pu9rOU,10431
|
|
173
177
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
174
178
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair.py,sha256=FqxYnlPdufEQPg4wnMKgZKBCX8pc660uffyu0OF0JKo,33469
|
|
179
|
+
mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
180
|
+
mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/configuration.py,sha256=nqk56wI5KdWhLOTchXqYSjDLC4QvjJcZo4ch4Ijteds,33488
|
|
175
181
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
176
182
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/configuration.py,sha256=P1pZbjMW3spvK0YHUrl3IJP_VojjHYmtgSUTiU7Mzhc,26775
|
|
177
183
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
178
184
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/base_configuration.py,sha256=v9wGMjyrHcAl1TVuDl-aMWP-QIsfzM1lczo-dE8MeaY,870
|
|
179
|
-
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py,sha256=
|
|
185
|
+
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py,sha256=DVj-c-pjGHC0IHeJV_LtDr6DY2KDwju82YSHPy7gNjw,13995
|
|
180
186
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
181
|
-
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py,sha256=
|
|
187
|
+
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py,sha256=wVZXQ95fl1SqGdG8IZ_XsapK0F_stpisAHsE1xIwvd8,14040
|
|
182
188
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
183
|
-
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py,sha256=
|
|
189
|
+
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py,sha256=b9wb3ItMViWAOtJfzjgyXNIOo6uejjzDdMO2II-rqCA,14040
|
|
184
190
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
185
|
-
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py,sha256=
|
|
191
|
+
mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py,sha256=D59m3KrC70p3fsGfs4aptWlGakwkwdqb-Fhrpw3tiBc,14025
|
|
186
192
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
187
193
|
mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/configuration.py,sha256=a-ib5sO9Sjn1PlbK0_kYBBonzJtbfnK6aaCeh0jOWlE,11018
|
|
188
194
|
mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
189
|
-
mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=
|
|
195
|
+
mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=0QVJSyJiOQ7q2s3K5xpySZixALHonNIcqEPsyGMWVNw,13169
|
|
190
196
|
mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
|
|
191
197
|
mat3ra/esse/models/method/categorized_method.py,sha256=f2dQIPERDoY61WL-KR_6dmAftRyPv_d_J6XSaV5yjqE,2479
|
|
192
198
|
mat3ra/esse/models/method/method_parameters.py,sha256=CH4qkchLAsq_L0iaet5dESnbTePbQYfXK47U8MemrxQ,1086
|
|
@@ -366,7 +372,7 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
|
|
|
366
372
|
mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
|
|
367
373
|
mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
|
|
368
374
|
mat3ra/esse/models/properties_directory/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
369
|
-
mat3ra/esse/models/properties_directory/derived_properties.py,sha256=
|
|
375
|
+
mat3ra/esse/models/properties_directory/derived_properties.py,sha256=h0ciA1j-gYv5NmMgkS_jUPwWEjP2aGTWaAUCKxZ8YxY,3017
|
|
370
376
|
mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
|
|
371
377
|
mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
372
378
|
mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=VsSKIbLYl9GseztXyzggDAMyMH0qJ3s_9IS8lxYKz88,591
|
|
@@ -377,31 +383,31 @@ mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,
|
|
|
377
383
|
mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=7ypgPAH8RgGlntishJctQeAFDsjBUbSoZ0GfRwue85I,1817
|
|
378
384
|
mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=W7-ZbbqDqEC42glSrpzvR__UvKeEA7rWEM5kDrp97BY,1588
|
|
379
385
|
mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py,sha256=PSA9V0WCP0Zur_OmzFPLD_3X8Ovttl1z4yzMeWBDOy8,1295
|
|
380
|
-
mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=
|
|
386
|
+
mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=lIhWo5nqYhFC0UPUJiZAgibJd7til8Pnkg-458EnB_I,2010
|
|
381
387
|
mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_1KlHVqxzjgh9Z36kpsjeHRi-SsjxhmLWt8wMYi_6rc,807
|
|
382
388
|
mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkzH_EQ-aViO7aCxhPgNDXIAr2MqfF6vQfZaC6pc,1429
|
|
383
389
|
mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
|
|
384
390
|
mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
|
|
385
391
|
mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py,sha256=xDW1U9JsHKdoPZlTPmm-mDepEqHoOEomQNFDc1pPtbk,1278
|
|
386
|
-
mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=
|
|
387
|
-
mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=
|
|
392
|
+
mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=rHBAGj-_5A9_J6vQtVTWz52iC-A26yxHPfqLYsX97cA,1382
|
|
393
|
+
mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=lY4ZBIIsT9S2b1ZN1WrHDjwghlOEA4hchFyG94zWOIY,1403
|
|
388
394
|
mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
|
|
389
395
|
mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
|
|
390
396
|
mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py,sha256=dFsa5qUQo8PDiZG_tZ-DQX7YiXflvb_gcGQHm9NXmMc,758
|
|
391
|
-
mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=
|
|
392
|
-
mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=
|
|
397
|
+
mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=DbXdDplNDkUphZRCtdaiW3RCFzqOqEMmFsmUJ24gbP4,4464
|
|
398
|
+
mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=hqavnipM00I40hCxjKcm4JvwKJcrNcjx2dYrS38ZDiY,1562
|
|
393
399
|
mat3ra/esse/models/properties_directory/scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
394
|
-
mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=
|
|
395
|
-
mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=
|
|
396
|
-
mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=
|
|
397
|
-
mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=
|
|
400
|
+
mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=I7B0fOArCkB-ow4zQ1CsirDmi_CNcb18bgjacHGcylQ,612
|
|
401
|
+
mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=fB3LGSf4YkQFi5vuJIUxvH2plvB19tpr2gL6fG3KwV0,592
|
|
402
|
+
mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=0nRb240Ql1936Es_Nh5X3WEq96U8yiN9SGrE6OGrOJ4,608
|
|
403
|
+
mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=DvvOduED9zGYBq3UPA1tUjcXPVbN4VpjAnKIKo5H6V8,624
|
|
398
404
|
mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=I6OrUOgvCUmXr1dD7Gfn17wAObEWVJW5vy6bdHf5qYE,443
|
|
399
|
-
mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=
|
|
400
|
-
mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=
|
|
401
|
-
mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=
|
|
405
|
+
mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=4vtnFkt7Jp5skNV7PmHUgZyhQqukfYyVsVabYEwFs-U,635
|
|
406
|
+
mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=D9lj_htWJ3rWRtSYwWbtr4NFzDt-XiHkJvagovKaj1U,600
|
|
407
|
+
mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=8LK6JUM2cyDWywworErNIruRdzCnt8wltF0LzhpNdbM,592
|
|
402
408
|
mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=l8X_eaNZNgm5rT_vEsNm5uaxBhAs3zGAcY-3MQHKLss,581
|
|
403
|
-
mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256
|
|
404
|
-
mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=
|
|
409
|
+
mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=-qmHf70tn52t9YFTRaUxUYj1ZQbmBCxuN8-14VZPFps,619
|
|
410
|
+
mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=67Sykp-GWQ7BqzBM-eAIWI8OEww71hx6Iy-yw-pDjmg,613
|
|
405
411
|
mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
406
412
|
mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
|
|
407
413
|
mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
|
|
@@ -409,7 +415,7 @@ mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP
|
|
|
409
415
|
mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
|
|
410
416
|
mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
|
|
411
417
|
mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=sgvKUcrr5iVhWTbalWt_-aGxUo9MFU9qLivCfmbr-nI,774
|
|
412
|
-
mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=
|
|
418
|
+
mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=PMD6kvbyBnmulByWpV-CnpjUZaAadAhVqbEFST_97Eo,1793
|
|
413
419
|
mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
|
|
414
420
|
mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
|
|
415
421
|
mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
|
|
@@ -441,7 +447,7 @@ mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=vZ7ts
|
|
|
441
447
|
mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=KnVmYAti3CfLIds1wVM8qW_cN75VGGdWQ7Ew3VFPpSE,742
|
|
442
448
|
mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
443
449
|
mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=MuMgO1Gq1285cvnjASCcFsHOD2ArcSjrV2OOWISF-M4,558
|
|
444
|
-
mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=
|
|
450
|
+
mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=ZJB2Kf-3McB_u_4hktv0eIS-iWPnk8nP5K_fEXTcp7M,1306
|
|
445
451
|
mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
|
|
446
452
|
mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
447
453
|
mat3ra/esse/models/property/base.py,sha256=mb5Q1XgYt7WrFhUir0O99ufQNzhiJog0yfoqECokquA,5003
|
|
@@ -578,8 +584,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
|
|
|
578
584
|
mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
|
|
579
585
|
mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
|
|
580
586
|
mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
|
|
581
|
-
mat3ra_esse-2025.5.17.
|
|
582
|
-
mat3ra_esse-2025.5.17.
|
|
583
|
-
mat3ra_esse-2025.5.17.
|
|
584
|
-
mat3ra_esse-2025.5.17.
|
|
585
|
-
mat3ra_esse-2025.5.17.
|
|
587
|
+
mat3ra_esse-2025.5.17.post1.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
|
|
588
|
+
mat3ra_esse-2025.5.17.post1.dist-info/METADATA,sha256=PShK4ocKaiGbn56R2xgEC93aIbBFql8vMVveLV6Fs8M,9000
|
|
589
|
+
mat3ra_esse-2025.5.17.post1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
590
|
+
mat3ra_esse-2025.5.17.post1.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
|
|
591
|
+
mat3ra_esse-2025.5.17.post1.dist-info/RECORD,,
|
|
File without changes
|
{mat3ra_esse-2025.5.17.post0.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|
{mat3ra_esse-2025.5.17.post0.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/top_level.txt
RENAMED
|
File without changes
|