mat3ra-esse 2025.4.22.post0__py3-none-any.whl → 2025.5.16.post0__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/materials/builders/slab/pymatgen/__init__.py +3 -0
- mat3ra/esse/models/apse/materials/builders/slab/pymatgen/parameters.py +28 -0
- mat3ra/esse/models/core/abstract/coordinate_2d.py +13 -0
- mat3ra/esse/models/core/reusable/energy.py +2 -2
- mat3ra/esse/models/element.py +6 -6
- mat3ra/esse/models/material/__init__.py +12 -12
- mat3ra/esse/models/material/builders/base/__init__.py +3 -0
- mat3ra/esse/models/material/builders/base/selector_parameters.py +16 -0
- mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/__init__.py +3 -0
- mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/builder_parameters.py +28 -0
- mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py +27 -0
- mat3ra/esse/models/material/reusable/__init__.py +3 -0
- mat3ra/esse/models/material/reusable/repetitions.py +25 -0
- mat3ra/esse/models/material/reusable/slab/__init__.py +3 -0
- mat3ra/esse/models/material/reusable/slab/enums.py +13 -0
- mat3ra/esse/models/material/reusable/slab/miller_indices.py +16 -0
- mat3ra/esse/models/material/reusable/slab/number_of_layers.py +16 -0
- mat3ra/esse/models/material/reusable/slab/termination.py +18 -0
- mat3ra/esse/models/material/reusable/slab/vacuum.py +16 -0
- mat3ra/esse/models/material/reusable/supercell_matrix_2d.py +25 -0
- mat3ra/esse/models/material/reusable/supercell_matrix_3d.py +27 -0
- mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py +3 -0
- mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py +445 -0
- mat3ra/esse/models/properties_directory/derived_properties.py +13 -13
- 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.4.22.post0.dist-info → mat3ra_esse-2025.5.16.post0.dist-info}/METADATA +1 -1
- {mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.16.post0.dist-info}/RECORD +47 -27
- {mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.16.post0.dist-info}/WHEEL +1 -1
- {mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.16.post0.dist-info}/licenses/LICENSE.md +0 -0
- {mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.16.post0.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 Name82(Enum):
|
|
23
23
|
harris_foulkes = "harris_foulkes"
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
class
|
|
27
|
-
name: Optional[
|
|
26
|
+
class ScalarSchema7(BaseModel):
|
|
27
|
+
name: Optional[Name82] = None
|
|
28
28
|
value: float
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
class
|
|
31
|
+
class Name83(Enum):
|
|
32
32
|
one_electron = "one_electron"
|
|
33
33
|
|
|
34
34
|
|
|
35
|
-
class
|
|
36
|
-
name: Optional[
|
|
35
|
+
class ScalarSchema8(BaseModel):
|
|
36
|
+
name: Optional[Name83] = None
|
|
37
37
|
value: float
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
class
|
|
40
|
+
class Name84(Enum):
|
|
41
41
|
hartree = "hartree"
|
|
42
42
|
|
|
43
43
|
|
|
44
|
-
class
|
|
45
|
-
name: Optional[
|
|
44
|
+
class ScalarSchema9(BaseModel):
|
|
45
|
+
name: Optional[Name84] = None
|
|
46
46
|
value: float
|
|
47
47
|
|
|
48
48
|
|
|
49
|
-
class
|
|
49
|
+
class Name85(Enum):
|
|
50
50
|
exchange = "exchange"
|
|
51
51
|
|
|
52
52
|
|
|
53
|
-
class
|
|
54
|
-
name: Optional[
|
|
53
|
+
class ScalarSchema10(BaseModel):
|
|
54
|
+
name: Optional[Name85] = None
|
|
55
55
|
value: float
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
class
|
|
58
|
+
class Name86(Enum):
|
|
59
59
|
exchange_correlation = "exchange_correlation"
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
class
|
|
63
|
-
name: Optional[
|
|
62
|
+
class ScalarSchema11(BaseModel):
|
|
63
|
+
name: Optional[Name86] = None
|
|
64
64
|
value: float
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
class
|
|
67
|
+
class Name87(Enum):
|
|
68
68
|
ewald = "ewald"
|
|
69
69
|
|
|
70
70
|
|
|
71
|
-
class
|
|
72
|
-
name: Optional[
|
|
71
|
+
class ScalarSchema12(BaseModel):
|
|
72
|
+
name: Optional[Name87] = None
|
|
73
73
|
value: float
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
class
|
|
76
|
+
class Name88(Enum):
|
|
77
77
|
alphaZ = "alphaZ"
|
|
78
78
|
|
|
79
79
|
|
|
80
|
-
class
|
|
81
|
-
name: Optional[
|
|
80
|
+
class ScalarSchema13(BaseModel):
|
|
81
|
+
name: Optional[Name88] = None
|
|
82
82
|
value: float
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
class
|
|
85
|
+
class Name89(Enum):
|
|
86
86
|
atomic_energy = "atomic_energy"
|
|
87
87
|
|
|
88
88
|
|
|
89
|
-
class
|
|
90
|
-
name: Optional[
|
|
89
|
+
class ScalarSchema14(BaseModel):
|
|
90
|
+
name: Optional[Name89] = None
|
|
91
91
|
value: float
|
|
92
92
|
|
|
93
93
|
|
|
94
|
-
class
|
|
94
|
+
class Name90(Enum):
|
|
95
95
|
eigenvalues = "eigenvalues"
|
|
96
96
|
|
|
97
97
|
|
|
98
|
-
class
|
|
99
|
-
name: Optional[
|
|
98
|
+
class ScalarSchema15(BaseModel):
|
|
99
|
+
name: Optional[Name90] = None
|
|
100
100
|
value: float
|
|
101
101
|
|
|
102
102
|
|
|
103
|
-
class
|
|
103
|
+
class Name91(Enum):
|
|
104
104
|
PAW_double_counting_correction_2 = "PAW_double-counting_correction_2"
|
|
105
105
|
|
|
106
106
|
|
|
107
|
-
class
|
|
108
|
-
name: Optional[
|
|
107
|
+
class ScalarSchema16(BaseModel):
|
|
108
|
+
name: Optional[Name91] = None
|
|
109
109
|
value: float
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
class
|
|
112
|
+
class Name92(Enum):
|
|
113
113
|
PAW_double_counting_correction_3 = "PAW_double-counting_correction_3"
|
|
114
114
|
|
|
115
115
|
|
|
116
|
-
class
|
|
117
|
-
name: Optional[
|
|
116
|
+
class ScalarSchema17(BaseModel):
|
|
117
|
+
name: Optional[Name92] = None
|
|
118
118
|
value: float
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
class
|
|
121
|
+
class Name93(Enum):
|
|
122
122
|
hartree_fock = "hartree_fock"
|
|
123
123
|
|
|
124
124
|
|
|
125
|
-
class
|
|
126
|
-
name: Optional[
|
|
125
|
+
class ScalarSchema18(BaseModel):
|
|
126
|
+
name: Optional[Name93] = None
|
|
127
127
|
value: float
|
|
128
128
|
|
|
129
129
|
|
|
130
|
-
class
|
|
130
|
+
class Name94(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[ScalarSchema7] = 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[ScalarSchema8] = Field(None, title="scalar schema")
|
|
154
154
|
"""
|
|
155
155
|
kinetic + pseudopotential energy
|
|
156
156
|
"""
|
|
157
|
-
hartree: Optional[
|
|
157
|
+
hartree: Optional[ScalarSchema9] = Field(None, title="scalar schema")
|
|
158
158
|
"""
|
|
159
159
|
energy due to coulomb potential
|
|
160
160
|
"""
|
|
161
|
-
exchange: Optional[
|
|
161
|
+
exchange: Optional[ScalarSchema10] = Field(None, title="scalar schema")
|
|
162
162
|
"""
|
|
163
163
|
exchange energy
|
|
164
164
|
"""
|
|
165
|
-
exchangeCorrelation: Optional[
|
|
165
|
+
exchangeCorrelation: Optional[ScalarSchema11] = Field(None, title="scalar schema")
|
|
166
166
|
"""
|
|
167
167
|
exchange and correlation energy per particle
|
|
168
168
|
"""
|
|
169
|
-
ewald: Optional[
|
|
169
|
+
ewald: Optional[ScalarSchema12] = 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[ScalarSchema13] = 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[ScalarSchema14] = 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[ScalarSchema15] = 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[ScalarSchema16] = Field(None, title="scalar schema")
|
|
186
186
|
"""
|
|
187
187
|
double counting correction 2
|
|
188
188
|
"""
|
|
189
|
-
PAWDoubleCounting3: Optional[
|
|
189
|
+
PAWDoubleCounting3: Optional[ScalarSchema17] = Field(None, title="scalar schema")
|
|
190
190
|
"""
|
|
191
191
|
double counting correction 3
|
|
192
192
|
"""
|
|
193
|
-
hartreeFock: Optional[
|
|
193
|
+
hartreeFock: Optional[ScalarSchema18] = Field(None, title="scalar schema")
|
|
194
194
|
"""
|
|
195
195
|
hartree-fock contribution
|
|
196
196
|
"""
|
|
197
|
-
name: Optional[
|
|
197
|
+
name: Optional[Name94] = 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 Units61(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[Units61] = 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 Units19(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, Units19]
|
|
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 Units26(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, Units26]
|
|
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 Units28(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, Units28]
|
|
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 Units36(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, Units36]
|
|
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 Units48(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, Units48]
|
|
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 Units52(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, Units52]
|
|
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 Units55(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, 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 Units59(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, Units59]
|
|
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 ZeroPointEnergySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units64]
|
|
34
34
|
value: float
|
|
@@ -37,12 +37,12 @@ class FunctionalGroupPatternSchema(BaseModel):
|
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
class
|
|
40
|
+
class Name62(Enum):
|
|
41
41
|
ring = "ring"
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
class RingPatternSchema(BaseModel):
|
|
45
|
-
name: Optional[
|
|
45
|
+
name: Optional[Name62] = 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 Name63(Enum):
|
|
54
54
|
special_bond = "special_bond"
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
class SpecialBondPatternSchema(BaseModel):
|
|
58
|
-
name: Optional[
|
|
58
|
+
name: Optional[Name63] = 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 Units33(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[Units33] = None
|
|
29
29
|
"""
|
|
30
30
|
units for force tolerance
|
|
31
31
|
"""
|
|
@@ -2,11 +2,11 @@ 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=r9blOLqlaKWZQjPET2AQsF8iR3Dlogz_GvtLfEl1cn0,48815
|
|
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=OZrsAkknw-AJ0nHKCQHu7H5MGZKxdDqn39C6HhDE2lA,1608184
|
|
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=Huew2YZoEc9VNXfamRami9hB-9ZJ8M0YDVV8l1vxjsY,1331
|
|
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
|
|
@@ -24,6 +24,8 @@ mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/hubbard.py,sha256=e8
|
|
|
24
24
|
mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/ions.py,sha256=CH5m46RhLybNzUCwZDKMPxO8S7flgigMeHOjYgt7xNI,15280
|
|
25
25
|
mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/k_points.py,sha256=N2fxAVS3Bt-bwIpslNqyrQb2f3mCXY_S6Uc4heCz19E,1602
|
|
26
26
|
mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/system.py,sha256=k1G0aNawyd6Y1gPWeH4tFZxpd5wNXwpQiwMQMHUEI5k,34350
|
|
27
|
+
mat3ra/esse/models/apse/materials/builders/slab/pymatgen/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
28
|
+
mat3ra/esse/models/apse/materials/builders/slab/pymatgen/parameters.py,sha256=vDb3Blhx1f0U-E6p325SaZS6c8FeGzsUdub_DQjPY0o,728
|
|
27
29
|
mat3ra/esse/models/core/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
28
30
|
mat3ra/esse/models/core/abstract/2d_data.py,sha256=QiWkaGXriph7QwLWF3LuRddSal7fLEakNMh2DkuCNCc,426
|
|
29
31
|
mat3ra/esse/models/core/abstract/2d_plot.py,sha256=q2qJuDQ10UtiJvZcGzWWv9T9qHJ8HwP-kING3w6cUWM,812
|
|
@@ -36,6 +38,7 @@ mat3ra/esse/models/core/abstract/_3d_grid.py,sha256=qJ6z7YI504zEWp81dOoYdBVBZDPF
|
|
|
36
38
|
mat3ra/esse/models/core/abstract/_3d_tensor.py,sha256=LS2yGo4DWMPp4As2jC3oeVO4RsueFAryaHTTL_lDWuI,563
|
|
37
39
|
mat3ra/esse/models/core/abstract/_3d_vector_basis.py,sha256=ub2Gt2HJEQKIlmRv6XiK0-hQJ0lpo3RtT6yn_1vF1N8,564
|
|
38
40
|
mat3ra/esse/models/core/abstract/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
41
|
+
mat3ra/esse/models/core/abstract/coordinate_2d.py,sha256=VY2G33pQx_QYF-njFFk3Yhg_emT0datwlcqg9KppCYk,349
|
|
39
42
|
mat3ra/esse/models/core/abstract/coordinate_3d.py,sha256=9FF3YH5uQQCKH2ta4hklogqj9Zw8qWK7sR5fJPjABhg,349
|
|
40
43
|
mat3ra/esse/models/core/abstract/kpoint.py,sha256=qs_3FgLXwkaCW3XyCATTcGoeB2DWAQzVMnhPt04Nvhw,404
|
|
41
44
|
mat3ra/esse/models/core/abstract/matrix_3x3.py,sha256=7Ob8lg7Uq33R0dVO7XYgp4AvDyffg8UeeCW8qXzdqOQ,526
|
|
@@ -91,7 +94,7 @@ mat3ra/esse/models/core/reusable/band_gap.py,sha256=_L79BKX80sAH7ZuyxFSdomJLS2dq
|
|
|
91
94
|
mat3ra/esse/models/core/reusable/categories.py,sha256=Z90c6gdSMUdEYwoThEyusMXb5ufqoQh-tISYafPWwME,1350
|
|
92
95
|
mat3ra/esse/models/core/reusable/category_path.py,sha256=SFyMHOXwrIewKkr4lCZRfSO-oszEx29XEK6TuLJrBtQ,359
|
|
93
96
|
mat3ra/esse/models/core/reusable/dielectric_tensor_component.py,sha256=_rr6oeTSxUp9iIwaDNt84oeu32_EMXB2vb-MeuxosjY,623
|
|
94
|
-
mat3ra/esse/models/core/reusable/energy.py,sha256=
|
|
97
|
+
mat3ra/esse/models/core/reusable/energy.py,sha256=Zs5Qxv64yae9Xkhh4YTlpfK8MeuVZefsOMVjvGmeNVM,512
|
|
95
98
|
mat3ra/esse/models/core/reusable/energy_accuracy_levels.py,sha256=ndCRZOzYZZ-Ok-mjANEKtvOuMSQvE2WzCXqXvrJrNtA,655
|
|
96
99
|
mat3ra/esse/models/core/reusable/file_metadata.py,sha256=DyPL1zQJR3HTyOGgvQzE7BxasTCkVRffeG_4WKfxf-8,520
|
|
97
100
|
mat3ra/esse/models/core/reusable/frequency_function_matrix.py,sha256=I4B-ukMJ_aGpP_PHDd63bW8Jav1mreGeMiLqtrElIno,429
|
|
@@ -119,9 +122,26 @@ mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7
|
|
|
119
122
|
mat3ra/esse/models/job/__init__.py,sha256=tQXT9GQRHDoVyW9AmI_Sjkqg78fkKSb4tL6TmWn--m4,64815
|
|
120
123
|
mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
|
|
121
124
|
mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
|
|
122
|
-
mat3ra/esse/models/material/__init__.py,sha256=
|
|
125
|
+
mat3ra/esse/models/material/__init__.py,sha256=7CnepGoWJH7ENKsgm6y0Hplxajbpv2QravDZOEBXYvk,9940
|
|
123
126
|
mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
|
|
124
127
|
mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
|
|
128
|
+
mat3ra/esse/models/material/builders/base/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
129
|
+
mat3ra/esse/models/material/builders/base/selector_parameters.py,sha256=ePtuNvhoyfzmhQD1OEwIvzVyteyakcNBqvCoLCPofOw,370
|
|
130
|
+
mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
131
|
+
mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/builder_parameters.py,sha256=4vq5IwymOgpi24Eu1tus6pByU6z27BVTClH9lhjg5Mg,743
|
|
132
|
+
mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py,sha256=dJDvqQG4TkYDY1MZ2FaXGiMMCx7U68LPOPqdeYk5sD8,772
|
|
133
|
+
mat3ra/esse/models/material/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
134
|
+
mat3ra/esse/models/material/reusable/repetitions.py,sha256=CpJjyQLz0MoQsp5fiLSCNDE1NfajQYTRjUJTzLb9YHc,754
|
|
135
|
+
mat3ra/esse/models/material/reusable/supercell_matrix_2d.py,sha256=Ul--ruw2s6JRVwu4y6M-YKSZBmZb6uI-pfC-Ua0ZWus,722
|
|
136
|
+
mat3ra/esse/models/material/reusable/supercell_matrix_3d.py,sha256=tqKLcZyV3zaSq2I4dZR6mVB-EMoykMvOh-lBaKh_cZc,784
|
|
137
|
+
mat3ra/esse/models/material/reusable/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
138
|
+
mat3ra/esse/models/material/reusable/slab/enums.py,sha256=ahZsneu0LQal4eYK3wo1YbFZKogytxYYMm0DEh8e4KQ,252
|
|
139
|
+
mat3ra/esse/models/material/reusable/slab/miller_indices.py,sha256=FIqFq2U34Q0g5zA8QF9twGHEc3vbkeyJb8fcexQJn8Q,467
|
|
140
|
+
mat3ra/esse/models/material/reusable/slab/number_of_layers.py,sha256=qtAuqvDHj1WJLnGTvvkROC0n6m30RVzcMsLUufjpUOs,440
|
|
141
|
+
mat3ra/esse/models/material/reusable/slab/termination.py,sha256=XyejfZbAafuE00ghnaf3YX7pY6IX0IgaXnYA6ps3FpQ,506
|
|
142
|
+
mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=FKs9OwwTICl2OyJ1xXmd7FqpFa-bxf-KLScOYLxLfBo,402
|
|
143
|
+
mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
144
|
+
mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=cNK2sdXgr2F0Y6KSZyb9iygI0gbKeiX4ANZ4k7AuIMM,11416
|
|
125
145
|
mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
|
|
126
146
|
mat3ra/esse/models/method/categorized_method.py,sha256=f2dQIPERDoY61WL-KR_6dmAftRyPv_d_J6XSaV5yjqE,2479
|
|
127
147
|
mat3ra/esse/models/method/method_parameters.py,sha256=CH4qkchLAsq_L0iaet5dESnbTePbQYfXK47U8MemrxQ,1086
|
|
@@ -301,7 +321,7 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
|
|
|
301
321
|
mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
|
|
302
322
|
mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
|
|
303
323
|
mat3ra/esse/models/properties_directory/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
304
|
-
mat3ra/esse/models/properties_directory/derived_properties.py,sha256=
|
|
324
|
+
mat3ra/esse/models/properties_directory/derived_properties.py,sha256=GTCvUFZ5gB1Uu3jJiTrEH-gORT3FuT4letDIHh4rB40,3010
|
|
305
325
|
mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
|
|
306
326
|
mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
307
327
|
mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=VsSKIbLYl9GseztXyzggDAMyMH0qJ3s_9IS8lxYKz88,591
|
|
@@ -312,31 +332,31 @@ mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,
|
|
|
312
332
|
mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=7ypgPAH8RgGlntishJctQeAFDsjBUbSoZ0GfRwue85I,1817
|
|
313
333
|
mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=W7-ZbbqDqEC42glSrpzvR__UvKeEA7rWEM5kDrp97BY,1588
|
|
314
334
|
mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py,sha256=PSA9V0WCP0Zur_OmzFPLD_3X8Ovttl1z4yzMeWBDOy8,1295
|
|
315
|
-
mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=
|
|
335
|
+
mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=GxGvIvKXi-pevLs9oUWWZjMI3hQQCcnfZDWE5CwqS3A,2010
|
|
316
336
|
mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_1KlHVqxzjgh9Z36kpsjeHRi-SsjxhmLWt8wMYi_6rc,807
|
|
317
337
|
mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkzH_EQ-aViO7aCxhPgNDXIAr2MqfF6vQfZaC6pc,1429
|
|
318
338
|
mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
|
|
319
339
|
mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
|
|
320
340
|
mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py,sha256=xDW1U9JsHKdoPZlTPmm-mDepEqHoOEomQNFDc1pPtbk,1278
|
|
321
|
-
mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=
|
|
322
|
-
mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=
|
|
341
|
+
mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=NW5BXeR0o7Co-eVCoMAlt9xVtPaaaUD88jL0k1JeL_k,1382
|
|
342
|
+
mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=LcVLzyPOezgMf_q4iyEPMuPrncXqYA6skQiMntfcgF8,1403
|
|
323
343
|
mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
|
|
324
344
|
mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
|
|
325
345
|
mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py,sha256=dFsa5qUQo8PDiZG_tZ-DQX7YiXflvb_gcGQHm9NXmMc,758
|
|
326
|
-
mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=
|
|
327
|
-
mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=
|
|
346
|
+
mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=oVXzpB-uZlsCw6BKowcdz4KV9focMEJkNJwxVe2NTDU,4432
|
|
347
|
+
mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=5NgUTOnQag75Y2TprLH8KVaM3h4sW9ZY7ycRblHY0CU,1562
|
|
328
348
|
mat3ra/esse/models/properties_directory/scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
329
|
-
mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=
|
|
330
|
-
mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=
|
|
331
|
-
mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=
|
|
332
|
-
mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=
|
|
349
|
+
mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=jGHVe-rZY0bPJ1_lcZcZ4RVGlweUxh03n75N_eGGWwo,612
|
|
350
|
+
mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=zq9cRpy8x5TGnDNmfZFuIx29j8qxPBR6kkyDWFn7wfM,592
|
|
351
|
+
mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=GKpU_PD7KFfW_w4Kwk-lM5SaygNR2pSdg9h6d8k-6ak,608
|
|
352
|
+
mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=9Uf5RimZZSsLJU6iP3vFNzJiTZRqu_P3MDb16Lj-Av4,624
|
|
333
353
|
mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=I6OrUOgvCUmXr1dD7Gfn17wAObEWVJW5vy6bdHf5qYE,443
|
|
334
|
-
mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=
|
|
335
|
-
mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=
|
|
336
|
-
mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=
|
|
354
|
+
mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=qyAdk4ukgKzEu7Brgo82kyGrBU4z-1-EZeYxvaed1LI,635
|
|
355
|
+
mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=L3GyBbKRyBJPAKtzWmHzwPv4qdcKX35tM2bi8AwulZE,600
|
|
356
|
+
mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=V9_HcGO8WUS-whtPTFUWR6R0Z0yG-S3dUavE9hOnllA,592
|
|
337
357
|
mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=l8X_eaNZNgm5rT_vEsNm5uaxBhAs3zGAcY-3MQHKLss,581
|
|
338
|
-
mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=
|
|
339
|
-
mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=
|
|
358
|
+
mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=1m2X4i5UdE3rYJ-QK0FQD5iClW9d-Lut7cSKLbbUqDE,619
|
|
359
|
+
mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=Xire0iYsPAR-dOzyfOieBvkfeumVDlnfjCVtcN5-gus,611
|
|
340
360
|
mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
341
361
|
mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
|
|
342
362
|
mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
|
|
@@ -344,7 +364,7 @@ mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP
|
|
|
344
364
|
mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
|
|
345
365
|
mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
|
|
346
366
|
mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=sgvKUcrr5iVhWTbalWt_-aGxUo9MFU9qLivCfmbr-nI,774
|
|
347
|
-
mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=
|
|
367
|
+
mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=GmVlLnf8d-4wouDNIoNqMyCWjHlapDoAVd75Ny9rXm4,1789
|
|
348
368
|
mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
|
|
349
369
|
mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
|
|
350
370
|
mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
|
|
@@ -376,7 +396,7 @@ mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=vZ7ts
|
|
|
376
396
|
mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=KnVmYAti3CfLIds1wVM8qW_cN75VGGdWQ7Ew3VFPpSE,742
|
|
377
397
|
mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
378
398
|
mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=MuMgO1Gq1285cvnjASCcFsHOD2ArcSjrV2OOWISF-M4,558
|
|
379
|
-
mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=
|
|
399
|
+
mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=q4xQSEceNkGIe1RFUY2u3_lffn2v_X7ZcOaUW5v1KRk,1306
|
|
380
400
|
mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
|
|
381
401
|
mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
382
402
|
mat3ra/esse/models/property/base.py,sha256=mb5Q1XgYt7WrFhUir0O99ufQNzhiJog0yfoqECokquA,5003
|
|
@@ -513,8 +533,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
|
|
|
513
533
|
mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
|
|
514
534
|
mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
|
|
515
535
|
mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
|
|
516
|
-
mat3ra_esse-2025.
|
|
517
|
-
mat3ra_esse-2025.
|
|
518
|
-
mat3ra_esse-2025.
|
|
519
|
-
mat3ra_esse-2025.
|
|
520
|
-
mat3ra_esse-2025.
|
|
536
|
+
mat3ra_esse-2025.5.16.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
|
|
537
|
+
mat3ra_esse-2025.5.16.post0.dist-info/METADATA,sha256=04lS7Ed5xaQgwfyPsfFG_rJuU6xGMvWim4avVPx4rzw,9000
|
|
538
|
+
mat3ra_esse-2025.5.16.post0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
539
|
+
mat3ra_esse-2025.5.16.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
|
|
540
|
+
mat3ra_esse-2025.5.16.post0.dist-info/RECORD,,
|
{mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.16.post0.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|
{mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.16.post0.dist-info}/top_level.txt
RENAMED
|
File without changes
|