mat3ra-esse 2025.6.5.post0__py3-none-any.whl → 2025.6.14.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.

Files changed (37) hide show
  1. mat3ra/esse/data/examples.py +1 -1
  2. mat3ra/esse/data/schemas.py +1 -1
  3. mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py +6 -6
  4. mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py +1 -1
  5. mat3ra/esse/models/material/reusable/slab/termination.py +1 -1
  6. mat3ra/esse/models/material/reusable/slab_configuration_with_termination.py +1 -1
  7. mat3ra/esse/models/material/reusable/stack/slab_in_stack.py +1 -1
  8. mat3ra/esse/models/materials_category/defects/two_dimensional/grain_boundary_plane/configuration.py +2 -2
  9. mat3ra/esse/models/materials_category/multi_material/interfaces/configuration.py +1 -1
  10. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +428 -15
  11. mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/termination.py +1 -1
  12. mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py +526 -2
  13. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py +14 -14
  14. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py +14 -14
  15. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py +14 -14
  16. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers.py +1 -1
  17. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique.py +1 -1
  18. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique_repeated.py +1 -1
  19. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_unit_cell.py +428 -15
  20. mat3ra/esse/models/materials_category_components/operations/core/combinations/merge.py +413 -0
  21. mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py +427 -14
  22. mat3ra/esse/models/materials_category_components/operations/core/combinations/stack_component.py +427 -14
  23. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
  24. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
  25. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
  26. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
  27. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
  28. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
  29. mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
  30. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
  31. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
  32. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
  33. {mat3ra_esse-2025.6.5.post0.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/METADATA +1 -1
  34. {mat3ra_esse-2025.6.5.post0.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/RECORD +37 -37
  35. {mat3ra_esse-2025.6.5.post0.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/WHEEL +0 -0
  36. {mat3ra_esse-2025.6.5.post0.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/licenses/LICENSE.md +0 -0
  37. {mat3ra_esse-2025.6.5.post0.dist-info → mat3ra_esse-2025.6.14.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 Name186(Enum):
22
+ class Name226(Enum):
23
23
  harris_foulkes = "harris_foulkes"
24
24
 
25
25
 
26
- class ScalarSchema20(BaseModel):
27
- name: Optional[Name186] = None
26
+ class ScalarSchema25(BaseModel):
27
+ name: Optional[Name226] = None
28
28
  value: float
29
29
 
30
30
 
31
- class Name187(Enum):
31
+ class Name227(Enum):
32
32
  one_electron = "one_electron"
33
33
 
34
34
 
35
- class ScalarSchema21(BaseModel):
36
- name: Optional[Name187] = None
35
+ class ScalarSchema26(BaseModel):
36
+ name: Optional[Name227] = None
37
37
  value: float
38
38
 
39
39
 
40
- class Name188(Enum):
40
+ class Name228(Enum):
41
41
  hartree = "hartree"
42
42
 
43
43
 
44
- class ScalarSchema22(BaseModel):
45
- name: Optional[Name188] = None
44
+ class ScalarSchema27(BaseModel):
45
+ name: Optional[Name228] = None
46
46
  value: float
47
47
 
48
48
 
49
- class Name189(Enum):
49
+ class Name229(Enum):
50
50
  exchange = "exchange"
51
51
 
52
52
 
53
- class ScalarSchema23(BaseModel):
54
- name: Optional[Name189] = None
53
+ class ScalarSchema28(BaseModel):
54
+ name: Optional[Name229] = None
55
55
  value: float
56
56
 
57
57
 
58
- class Name190(Enum):
58
+ class Name230(Enum):
59
59
  exchange_correlation = "exchange_correlation"
60
60
 
61
61
 
62
- class ScalarSchema24(BaseModel):
63
- name: Optional[Name190] = None
62
+ class ScalarSchema29(BaseModel):
63
+ name: Optional[Name230] = None
64
64
  value: float
65
65
 
66
66
 
67
- class Name191(Enum):
67
+ class Name231(Enum):
68
68
  ewald = "ewald"
69
69
 
70
70
 
71
- class ScalarSchema25(BaseModel):
72
- name: Optional[Name191] = None
71
+ class ScalarSchema30(BaseModel):
72
+ name: Optional[Name231] = None
73
73
  value: float
74
74
 
75
75
 
76
- class Name192(Enum):
76
+ class Name232(Enum):
77
77
  alphaZ = "alphaZ"
78
78
 
79
79
 
80
- class ScalarSchema26(BaseModel):
81
- name: Optional[Name192] = None
80
+ class ScalarSchema31(BaseModel):
81
+ name: Optional[Name232] = None
82
82
  value: float
83
83
 
84
84
 
85
- class Name193(Enum):
85
+ class Name233(Enum):
86
86
  atomic_energy = "atomic_energy"
87
87
 
88
88
 
89
- class ScalarSchema27(BaseModel):
90
- name: Optional[Name193] = None
89
+ class ScalarSchema32(BaseModel):
90
+ name: Optional[Name233] = None
91
91
  value: float
92
92
 
93
93
 
94
- class Name194(Enum):
94
+ class Name234(Enum):
95
95
  eigenvalues = "eigenvalues"
96
96
 
97
97
 
98
- class ScalarSchema28(BaseModel):
99
- name: Optional[Name194] = None
98
+ class ScalarSchema33(BaseModel):
99
+ name: Optional[Name234] = None
100
100
  value: float
101
101
 
102
102
 
103
- class Name195(Enum):
103
+ class Name235(Enum):
104
104
  PAW_double_counting_correction_2 = "PAW_double-counting_correction_2"
105
105
 
106
106
 
107
- class ScalarSchema29(BaseModel):
108
- name: Optional[Name195] = None
107
+ class ScalarSchema34(BaseModel):
108
+ name: Optional[Name235] = None
109
109
  value: float
110
110
 
111
111
 
112
- class Name196(Enum):
112
+ class Name236(Enum):
113
113
  PAW_double_counting_correction_3 = "PAW_double-counting_correction_3"
114
114
 
115
115
 
116
- class ScalarSchema30(BaseModel):
117
- name: Optional[Name196] = None
116
+ class ScalarSchema35(BaseModel):
117
+ name: Optional[Name236] = None
118
118
  value: float
119
119
 
120
120
 
121
- class Name197(Enum):
121
+ class Name237(Enum):
122
122
  hartree_fock = "hartree_fock"
123
123
 
124
124
 
125
- class ScalarSchema31(BaseModel):
126
- name: Optional[Name197] = None
125
+ class ScalarSchema36(BaseModel):
126
+ name: Optional[Name237] = None
127
127
  value: float
128
128
 
129
129
 
130
- class Name198(Enum):
130
+ class Name238(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[ScalarSchema20] = Field(None, title="scalar schema")
149
+ harrisFoulkes: Optional[ScalarSchema25] = Field(None, title="scalar schema")
150
150
  """
151
151
  non self-consitent energy based on an input charge density
152
152
  """
153
- oneElectron: Optional[ScalarSchema21] = Field(None, title="scalar schema")
153
+ oneElectron: Optional[ScalarSchema26] = Field(None, title="scalar schema")
154
154
  """
155
155
  kinetic + pseudopotential energy
156
156
  """
157
- hartree: Optional[ScalarSchema22] = Field(None, title="scalar schema")
157
+ hartree: Optional[ScalarSchema27] = Field(None, title="scalar schema")
158
158
  """
159
159
  energy due to coulomb potential
160
160
  """
161
- exchange: Optional[ScalarSchema23] = Field(None, title="scalar schema")
161
+ exchange: Optional[ScalarSchema28] = Field(None, title="scalar schema")
162
162
  """
163
163
  exchange energy
164
164
  """
165
- exchangeCorrelation: Optional[ScalarSchema24] = Field(None, title="scalar schema")
165
+ exchangeCorrelation: Optional[ScalarSchema29] = Field(None, title="scalar schema")
166
166
  """
167
167
  exchange and correlation energy per particle
168
168
  """
169
- ewald: Optional[ScalarSchema25] = Field(None, title="scalar schema")
169
+ ewald: Optional[ScalarSchema30] = 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[ScalarSchema26] = Field(None, title="scalar schema")
173
+ alphaZ: Optional[ScalarSchema31] = Field(None, title="scalar schema")
174
174
  """
175
175
  divergent electrostatic ion interaction in compensating electron gas
176
176
  """
177
- atomicEnergy: Optional[ScalarSchema27] = Field(None, title="scalar schema")
177
+ atomicEnergy: Optional[ScalarSchema32] = Field(None, title="scalar schema")
178
178
  """
179
179
  kinetic energy of wavefunctions in the atomic limit
180
180
  """
181
- eigenvalues: Optional[ScalarSchema28] = Field(None, title="scalar schema")
181
+ eigenvalues: Optional[ScalarSchema33] = 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[ScalarSchema29] = Field(None, title="scalar schema")
185
+ PAWDoubleCounting2: Optional[ScalarSchema34] = Field(None, title="scalar schema")
186
186
  """
187
187
  double counting correction 2
188
188
  """
189
- PAWDoubleCounting3: Optional[ScalarSchema30] = Field(None, title="scalar schema")
189
+ PAWDoubleCounting3: Optional[ScalarSchema35] = Field(None, title="scalar schema")
190
190
  """
191
191
  double counting correction 3
192
192
  """
193
- hartreeFock: Optional[ScalarSchema31] = Field(None, title="scalar schema")
193
+ hartreeFock: Optional[ScalarSchema36] = Field(None, title="scalar schema")
194
194
  """
195
195
  hartree-fock contribution
196
196
  """
197
- name: Optional[Name198] = None
197
+ name: Optional[Name238] = 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 Units100(Enum):
41
+ class Units118(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[Units100] = None
53
+ units: Optional[Units118] = 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 Units66(Enum):
27
+ class Units69(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, Units66]
33
+ units: Union[Units, Units69]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units91(Enum):
27
+ class Units106(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, Units91]
33
+ units: Union[Units, Units106]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units94(Enum):
27
+ class Units109(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, Units94]
33
+ units: Union[Units, Units109]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units98(Enum):
27
+ class Units116(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, Units98]
33
+ units: Union[Units, Units116]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units103(Enum):
27
+ class Units121(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, Units103]
33
+ units: Union[Units, Units121]
34
34
  value: float
@@ -37,12 +37,12 @@ class FunctionalGroupPatternSchema(BaseModel):
37
37
  """
38
38
 
39
39
 
40
- class Name110(Enum):
40
+ class Name118(Enum):
41
41
  ring = "ring"
42
42
 
43
43
 
44
44
  class RingPatternSchema(BaseModel):
45
- name: Optional[Name110] = None
45
+ name: Optional[Name118] = 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 Name111(Enum):
53
+ class Name119(Enum):
54
54
  special_bond = "special_bond"
55
55
 
56
56
 
57
57
  class SpecialBondPatternSchema(BaseModel):
58
- name: Optional[Name111] = None
58
+ name: Optional[Name119] = None
59
59
  atoms: Optional[List[ObjectWithId]] = Field(None, title="array of ids")
60
60
  """
61
61
  array of objects containing integer id each
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mat3ra-esse
3
- Version: 2025.6.5.post0
3
+ Version: 2025.6.14.post0
4
4
  Summary: Excellent Source of Schemas and Examples.
5
5
  Author-email: "Exabyte Inc." <info@mat3ra.com>
6
6
  License: # LICENSE
@@ -2,9 +2,9 @@ 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=7HYWRVx6hI9pNLEvpW1RZbPF_nrhVuw_3UYZrmD7IGw,55540
5
+ mat3ra/esse/data/examples.py,sha256=0mxPYRoZ-5_JANeC77Xg67OON8sHTnPi-I0WRS4YA7s,60952
6
6
  mat3ra/esse/data/properties.py,sha256=geWFIVIJbdn2Q_JG3Mz36oQ_dXeZZwnmlS_NgszvHUY,6099
7
- mat3ra/esse/data/schemas.py,sha256=b8UItIb2rwut4MY2UYhqWWEx_YFGSJLxM34YjCuoNO4,1836026
7
+ mat3ra/esse/data/schemas.py,sha256=bVaJZmsSiPCKL6PGVGJZhBQH6WpcKmEvK430k13r-8w,1925090
8
8
  mat3ra/esse/models/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
9
9
  mat3ra/esse/models/coordinates_shape_enum.py,sha256=YePazJ_MnDUPF9IwnaiQza0w0DLPm_WpGImQK3TuKGo,319
10
10
  mat3ra/esse/models/element.py,sha256=n_06XRiBOS9Tq_z08YGu5_nZDuqLnkxsfAe9mqYON2s,2944
@@ -13,7 +13,7 @@ mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/__init__.py,sha256=Khec_bQt22_U
13
13
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/atoms.py,sha256=KJoqkT9hV3J_xJmaHCLx7bAEBxvGxz0_ZC76b9Auu2k,1451
14
14
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/db_entry.py,sha256=U1u7lcPwZCymrEfiOrkjT0nbvDDaiz83LiVUGKtx18s,1909
15
15
  mat3ra/esse/models/apse/file/applications/espresso/7.2/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
16
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py,sha256=Pp3HsT4SoBr5q-axD55yPxQJtis4NrgLaxGCQlgB-9k,74723
16
+ mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py,sha256=s62z9GfPl3OK9U24M-ExKkfaSHKRestBrNreOutoi6U,74723
17
17
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
18
18
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/atomic_positions.py,sha256=mnHklX-WdQl7yHBykTvnpid3zOzOVv6fr9kLCIhK85c,1271
19
19
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/atomic_species.py,sha256=DEYl0xPnsY2XIyRIJhvny8BmaKLASkdBbIN1Xc-o--c,1180
@@ -144,10 +144,10 @@ mat3ra/esse/models/material/builders/base/__init__.py,sha256=Khec_bQt22_UudNLJlj
144
144
  mat3ra/esse/models/material/builders/base/selector_parameters.py,sha256=ePtuNvhoyfzmhQD1OEwIvzVyteyakcNBqvCoLCPofOw,370
145
145
  mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
146
146
  mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/builder_parameters.py,sha256=4vq5IwymOgpi24Eu1tus6pByU6z27BVTClH9lhjg5Mg,743
147
- mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py,sha256=1RpA1SmyVMGZOcOwW30Vl470e2nQFJNKhUSvyQBKmRo,2611
147
+ mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py,sha256=EsSL1t4Jkg34czyyG5dOOrrbp1NYPqnw7h73XvlwH5U,2606
148
148
  mat3ra/esse/models/material/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
149
149
  mat3ra/esse/models/material/reusable/repetitions.py,sha256=CpJjyQLz0MoQsp5fiLSCNDE1NfajQYTRjUJTzLb9YHc,754
150
- mat3ra/esse/models/material/reusable/slab_configuration_with_termination.py,sha256=96UP1nc0d_JpLlih92BGH_3eoHygs6Sc6nnppzyPi4U,15581
150
+ mat3ra/esse/models/material/reusable/slab_configuration_with_termination.py,sha256=2g06OxdATJ_Wnxs-W0-lX6YDhdRWV3mJ4wg1kBFOz1I,15576
151
151
  mat3ra/esse/models/material/reusable/supercell_matrix_2d.py,sha256=Ul--ruw2s6JRVwu4y6M-YKSZBmZb6uI-pfC-Ua0ZWus,722
152
152
  mat3ra/esse/models/material/reusable/supercell_matrix_3d.py,sha256=tqKLcZyV3zaSq2I4dZR6mVB-EMoykMvOh-lBaKh_cZc,784
153
153
  mat3ra/esse/models/material/reusable/coordinate_conditions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -163,14 +163,14 @@ mat3ra/esse/models/material/reusable/slab/miller_indices.py,sha256=FIqFq2U34Q0g5
163
163
  mat3ra/esse/models/material/reusable/slab/number_of_layers.py,sha256=-tw5Z2q1eIXe3rm3XOCI_ux31QS6463sb3n0qHQ8Tkc,440
164
164
  mat3ra/esse/models/material/reusable/slab/slab_configuration_with_termination.py,sha256=toHZlEtuVcKXTBt_aKg8bveYrsFu3NgijUmoEYcG9xI,13776
165
165
  mat3ra/esse/models/material/reusable/slab/slab_with_termination.py,sha256=Z10EKD_ijcMTcNdzrB_E4a9qakwzUICe0a76EfftsCQ,13835
166
- mat3ra/esse/models/material/reusable/slab/termination.py,sha256=-Zh961QVKipjdbEgcD5Ddqjyftyo0ikNNiUl9334rEo,2364
166
+ mat3ra/esse/models/material/reusable/slab/termination.py,sha256=uYyGTGpqCV1QFvfEYBNu_DU1z7HJRAqlZ4jDbGorxEc,2359
167
167
  mat3ra/esse/models/material/reusable/slab/two_slabs_stack.py,sha256=VEfVT6nel6uuC75bCHKMSwE7FsUerc_JvXVSm9QcKdo,14474
168
168
  mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=GlJFBUUYc8JP-zqdLXaUf899-3fy1X2p_sdzbpwPlw8,421
169
169
  mat3ra/esse/models/material/reusable/slab/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
170
170
  mat3ra/esse/models/material/reusable/slab/enums/exposed_face.py,sha256=-MUlEELT-ec-0XtmZrsrs2HVviP-ITmhxJYiR_1ab5M,268
171
171
  mat3ra/esse/models/material/reusable/stack/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
172
172
  mat3ra/esse/models/material/reusable/stack/slab_configuration_with_termination.py,sha256=VvSEirucIX05yor2YRN2RSjuM9yJUr-RzvHKLDs_Aow,13848
173
- mat3ra/esse/models/material/reusable/stack/slab_in_stack.py,sha256=x3hUoJ8ljsvMNZ0AKKPeYAuUBd7AW6endi8egwAnm_U,15785
173
+ mat3ra/esse/models/material/reusable/stack/slab_in_stack.py,sha256=EYiv2pAkhBeBfW-82TYN6Pqy3xaVGetUe5cbK1vfQJk,15780
174
174
  mat3ra/esse/models/material/reusable/stack/stack_of_slabs.py,sha256=d22cbirT2w3JLMkb6cyBAtj-_I1-RqOQKtnwG4Jp80w,16206
175
175
  mat3ra/esse/models/material/reusable/stack/stack_of_two_slabs.py,sha256=2r5ahhJxqdxiI0DlQ0ZynOCc3zmMq7_7S0t7VehzzSQ,16227
176
176
  mat3ra/esse/models/material/reusable/supercell/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -189,7 +189,7 @@ mat3ra/esse/models/materials_category/defects/enums/point_defect_type.py,sha256=
189
189
  mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
190
190
  mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py,sha256=nLnMwm_Dc4mYHYP3Yrz0qooqje38fOwaAecuXuf2jWE,12798
191
191
  mat3ra/esse/models/materials_category/defects/two_dimensional/grain_boundary_plane/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
192
- mat3ra/esse/models/materials_category/defects/two_dimensional/grain_boundary_plane/configuration.py,sha256=iReKVnULHSzR4SFJHuUG4jMW8t2BL3YiZCS8wpAADQg,27395
192
+ mat3ra/esse/models/materials_category/defects/two_dimensional/grain_boundary_plane/configuration.py,sha256=uZY455jUraEXrS1Q9wb-XfIDKHM3aUZ-qykDeI3iWY0,27385
193
193
  mat3ra/esse/models/materials_category/defects/two_dimensional/island/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
194
194
  mat3ra/esse/models/materials_category/defects/two_dimensional/island/condition_json.py,sha256=RnKPBWrycEr-fU4X7NKZ1tdRlYFcFM-y4cW44rb_wrE,863
195
195
  mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py,sha256=ESb5xFkiXH42aqIltQQ-9WEJyYqIuY5g63AcwWESjks,12817
@@ -204,11 +204,11 @@ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitutio
204
204
  mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
205
205
  mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py,sha256=piucwaXcimn031aiU_1A17bwPhpcx35pPeNC9z-lc60,14025
206
206
  mat3ra/esse/models/materials_category/multi_material/interfaces/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
207
- mat3ra/esse/models/materials_category/multi_material/interfaces/configuration.py,sha256=rgJqVlgQFS4N3Kc4sgq4j4htenA9Xf82IEm1hUp_KHI,16221
207
+ mat3ra/esse/models/materials_category/multi_material/interfaces/configuration.py,sha256=56svgFCbz6vmKQnUiuO5CgCIuqAlO0wdX3YctuMUkbs,16216
208
208
  mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
209
209
  mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py,sha256=x8ZwbukFhJaa3J2b_WnGMyUXYtbqpMme-fo7ZmfYg6Q,11739
210
210
  mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
211
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py,sha256=oVu_x3OSr6om8ctkVML6rixzi65qyf_PuG_nQ28HXe4,15720
211
+ mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py,sha256=-xN_Avv0ydJ2qNxv3xZwD452_PEDsTGx1ToD14nXf30,24933
212
212
  mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
213
213
  mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=gG-dtEKQPSJgGFIjTu41er0By7B1iVFMWE2qiIMU2OI,13098
214
214
  mat3ra/esse/models/materials_category_components/entities/auxiliary/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -216,32 +216,32 @@ mat3ra/esse/models/materials_category_components/entities/auxiliary/three_dimens
216
216
  mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
217
217
  mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/miller_indices.py,sha256=7pfnaj6FU41ZyuvBbYz67mWkh21425rJyNw4_Ug9WfU,513
218
218
  mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/supercell_matrix_2d.py,sha256=AKWn7TICc3OHL9Ip1A9coI8Gl-VDpgcZCjKmcSAbXRw,769
219
- mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/termination.py,sha256=kfUPs9-yfsOx6-e9_6jLKWskd4ZGt9DkG1zo_5rY7AI,2406
219
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/termination.py,sha256=LE0QSArs0CTPvIQ6-osWymoeEGh7ebotWqUnFUNksII,2401
220
220
  mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
221
221
  mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py,sha256=zYg22xaI2cRoq9AzpWBkh8Fk-R6Y53Fgn8ItDtb2Lz4,392
222
222
  mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
223
223
  mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py,sha256=6GYJ50v6qiQZE67-rXTNwISYtBQIGosbaabqxZKEsa8,11733
224
224
  mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/void.py,sha256=23O84_CEsV-zdidWHPnadN-mSjISj78_9cojEOfttPw,1059
225
225
  mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
226
- mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py,sha256=z9Bh5HpHb-oV6d2xLk69wbdgWpcRkCv_m4fCGm6mQG4,580
226
+ mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py,sha256=DQuk6wmCNzUgO8ryK7FuRwrz7zZ3hnISjzC4DPIhO6M,12185
227
227
  mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
228
228
  mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/atom.py,sha256=3WX1b139aRToS55r7jWHCTETfXsMcM1CdJ2aqpnUZ_Y,1957
229
229
  mat3ra/esse/models/materials_category_components/entities/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
230
230
  mat3ra/esse/models/materials_category_components/entities/reusable/repetitions.py,sha256=MfRry1yBuzDjw_xIHIWHm8tk0XqixdbDrNpqgvBMCQY,784
231
231
  mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
232
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py,sha256=YqmgmImIgBSICf1HHFCN_659kuG-Jb6aFbFCclsYcKU,12243
233
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py,sha256=sWOBuM4-NR9tOX-GXpWZBSRne5DW4exhT5FDHIhl6kQ,12072
234
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py,sha256=3cg_8SEi4FgJFNeEyVLdSaLELxwaVyGqPqQCBxJdTK4,12193
232
+ mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py,sha256=MksFRtOZHpJsCS4IQNyG5cdAbwxhKQ-0GH_qGCQguLM,12243
233
+ mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py,sha256=URCCDicocUFBnvrAeP-mcZe7PVLuam1WcGpzDlXP64Y,12074
234
+ mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py,sha256=lFNjjPzZOGfSmKy1AZMDmCTjXsk3U8cCMXi7EEqZuMU,12197
235
235
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
236
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers.py,sha256=aXI_Jl0Msj2eqXNLE914hML19DsFi8qcI5ODM-HKzWo,14492
237
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique.py,sha256=A0uvfMM_ouAG5F3uErfAypfuZTgeVBAKeqkXN8obZXw,14513
238
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique_repeated.py,sha256=o8LmcS9M96I-4Nfimx3NwWm54Bpya6RsOm7MC3VCErA,14644
236
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers.py,sha256=L4U85-4yvA-f4X5oPKtbdXhfZu_XM2HuZRGSqRzO_mA,14487
237
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique.py,sha256=WCxU14PQdbYKzLpi5RiB_DejZW1bPaNp_C6st5hkd1E,14508
238
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique_repeated.py,sha256=parig_bizMviYaLIqBzc1vxBryYYzb1aIFFA3gxiLiU,14639
239
239
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py,sha256=CCmr2kn0L9Z-PqPPOXLHjYmHOOS_PtMu6fzblFJgYtQ,12256
240
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_unit_cell.py,sha256=h8qXROfSqIejlhyf3Wqa4EIbPPYWWwomReiTUikonWw,15310
240
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_unit_cell.py,sha256=c9aCXu_7JT-pvsCCI0NmzX60JXwWoNcNN3VfXv2xJvs,24525
241
241
  mat3ra/esse/models/materials_category_components/operations/core/combinations/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
242
- mat3ra/esse/models/materials_category_components/operations/core/combinations/merge.py,sha256=2e2Kp1fPNZsl3tL_d4CRZq6JtYpMNu5Mimv5V80zXf8,13242
243
- mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py,sha256=K8d03AUAypElGfkGk7qoloo0SgmQcGLa0DSSnMj-Qjg,12241
244
- mat3ra/esse/models/materials_category_components/operations/core/combinations/stack_component.py,sha256=J6GEhlq0t9TvGlqS83eOqcbb_4kHoDfRLIXSQPWtmxA,12303
242
+ mat3ra/esse/models/materials_category_components/operations/core/combinations/merge.py,sha256=nNzR0FJ3wndEw9aAjUyiruIL_Ewfsd8r0rvy9PY3gpA,22443
243
+ mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py,sha256=wGRvQSbKmgL8_2xEfE00chGpguNaEPLtLzLIi8wJokE,21461
244
+ mat3ra/esse/models/materials_category_components/operations/core/combinations/stack_component.py,sha256=JMxOvdKjNolVy1JHQF75bkpKDYM4iYHB058h0JmqE5c,21523
245
245
  mat3ra/esse/models/materials_category_components/operations/core/modifications/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
246
246
  mat3ra/esse/models/materials_category_components/operations/core/modifications/repeat.py,sha256=G0pT_vKMo3C9GnbRhGiDEJNDqbeDe_oJBl3WrnhUXEk,833
247
247
  mat3ra/esse/models/materials_category_components/operations/core/modifications/strain.py,sha256=-ofQnUtBVVf-AjO7h2Gc15qGFR6GF8P5x0s0lFkrSiw,577
@@ -441,25 +441,25 @@ mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkz
441
441
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
442
442
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
443
443
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py,sha256=xDW1U9JsHKdoPZlTPmm-mDepEqHoOEomQNFDc1pPtbk,1278
444
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=QysNrth3l4bEwd5LkuqJeNVwINWGV8L_6qef8SQ3wFc,1382
445
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=I8225Mn68sjSA944YJl4LvQ6WL7yH-N0Pa9jh_b2GR8,1403
444
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=mGw8Nj0GVbJIOvuP0A5gyWExHB2203kAmauH3enyCLU,1382
445
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=y9W8wwA60NJ9n-rHTjR4BA-DdpKIwlbmOVViuqlXOh4,1403
446
446
  mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
447
447
  mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
448
448
  mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py,sha256=dFsa5qUQo8PDiZG_tZ-DQX7YiXflvb_gcGQHm9NXmMc,758
449
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=kzGeDlzZIL7OWzXIeUlHqYQ-RPbIA-PgwQL9fzKNspQ,4464
450
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=4PQl3X_hqMFT7pvdSoe2dhBe_oGQK5El-dBE6Qtk7Bw,1564
449
+ mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=apDF1aRN4JL05ykma_xRm3wePf7R6i4vcJUcV93SUdI,4464
450
+ mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=v6CTCRRGxogyW61gqqFknKmng4VDjnYunhkuG_d4wwc,1564
451
451
  mat3ra/esse/models/properties_directory/scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
452
452
  mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=mZ_C7hSZoP7X-PnOAiDzVGzqGxJhSbzFn5Xa-zWFJdU,612
453
453
  mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=ZdTL4qFvrjzzFTbc9uXad4HhfyZ9NGlNTc_ckqrnUNM,592
454
454
  mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=5Z-xG3fDHLF1kGmJ4hCNnMNgSOmsF-10NAo1Y3NGkf0,608
455
455
  mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=mAtCohwWcKgteQXJ165SaNBe22ODn5s1Sm_eb9Kjolw,624
456
456
  mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=I6OrUOgvCUmXr1dD7Gfn17wAObEWVJW5vy6bdHf5qYE,443
457
- mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=3D0C5z5vkc49yD8nYPw09Ei8fC32Qkaf6F1B9uLjaHI,635
458
- mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=JR8w_mAI169UTf9IrhTJPFmo-AJa8LF_qk5bgS2_34U,600
459
- mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=9XZl68knWcbA-LIDVLlu5nZD5JAyZVEYzn0-aux_m3g,592
457
+ mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=OXPnnHtFKwviNiS9D-cWu4FvYo9Fz-VTAJhE0wTPRZ0,635
458
+ mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=yiKXB_KpFvSxwV9HB63Ca36Y_zT-WM7draSchQpOj-Q,602
459
+ mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=iykrSGCXLxrbjVHGBce1tKqVBP-j1qK_zfDv4vA9Szg,594
460
460
  mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=l8X_eaNZNgm5rT_vEsNm5uaxBhAs3zGAcY-3MQHKLss,581
461
- mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=hQmeSt2hdwNmjB8ZpdHqXkeTE9OqFTKeCVJq2mXBJk8,619
462
- mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=EhFVo08L1G0P_RmLZEiURxOiaHnMKGRZqy6fHMiTUEM,613
461
+ mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=GZEID1R0eseu4uGyY7OOwgNrbdiaFFe1OvNb5HauXAc,621
462
+ mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=9gK0UI71CS4cF3Ernm6pUe9WdYrq-BF68MTtYLHbXZg,613
463
463
  mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
464
464
  mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
465
465
  mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
@@ -467,7 +467,7 @@ mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP
467
467
  mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
468
468
  mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
469
469
  mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=sgvKUcrr5iVhWTbalWt_-aGxUo9MFU9qLivCfmbr-nI,774
470
- mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=2oDFx2MLr9sK2n_PlJVJzwkv2tAT3fmLBeZwefO1eys,1793
470
+ mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=A0rzbku9mEXMt6HY-x1rz0UPTifBLzo0lW9JiOLWbMA,1793
471
471
  mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
472
472
  mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
473
473
  mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
@@ -636,8 +636,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
636
636
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
637
637
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
638
638
  mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
639
- mat3ra_esse-2025.6.5.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
640
- mat3ra_esse-2025.6.5.post0.dist-info/METADATA,sha256=hUvmcYUxd4FXC_cLXVQiGQRVTRKHjlq38rN3w1KvS4U,8999
641
- mat3ra_esse-2025.6.5.post0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
642
- mat3ra_esse-2025.6.5.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
643
- mat3ra_esse-2025.6.5.post0.dist-info/RECORD,,
639
+ mat3ra_esse-2025.6.14.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
640
+ mat3ra_esse-2025.6.14.post0.dist-info/METADATA,sha256=XcIsERu6Zd6q33Up3UivLjLoJPzFf9op-gqZMeI4kto,9000
641
+ mat3ra_esse-2025.6.14.post0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
642
+ mat3ra_esse-2025.6.14.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
643
+ mat3ra_esse-2025.6.14.post0.dist-info/RECORD,,