mat3ra-esse 2025.4.22.post0__py3-none-any.whl → 2025.5.13.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 (41) hide show
  1. mat3ra/esse/data/examples.py +1 -1
  2. mat3ra/esse/data/schemas.py +1 -1
  3. mat3ra/esse/models/core/abstract/coordinate_2d.py +13 -0
  4. mat3ra/esse/models/core/reusable/energy.py +2 -2
  5. mat3ra/esse/models/element.py +6 -6
  6. mat3ra/esse/models/material/__init__.py +12 -12
  7. mat3ra/esse/models/material/reusable/__init__.py +3 -0
  8. mat3ra/esse/models/material/reusable/repetitions.py +25 -0
  9. mat3ra/esse/models/material/reusable/slab/__init__.py +3 -0
  10. mat3ra/esse/models/material/reusable/slab/enums.py +13 -0
  11. mat3ra/esse/models/material/reusable/slab/miller_indices.py +16 -0
  12. mat3ra/esse/models/material/reusable/slab/number_of_layers.py +16 -0
  13. mat3ra/esse/models/material/reusable/slab/termination.py +18 -0
  14. mat3ra/esse/models/material/reusable/slab/thickness.py +16 -0
  15. mat3ra/esse/models/material/reusable/slab/vacuum.py +16 -0
  16. mat3ra/esse/models/material/reusable/supercell_matrix_2d.py +25 -0
  17. mat3ra/esse/models/material/reusable/supercell_matrix_3d.py +27 -0
  18. mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py +3 -0
  19. mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py +445 -0
  20. mat3ra/esse/models/properties_directory/derived_properties.py +13 -13
  21. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +2 -2
  22. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
  23. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
  24. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
  25. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
  26. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +2 -2
  27. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +2 -2
  28. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +2 -2
  29. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +2 -2
  30. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
  31. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
  32. mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
  33. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
  34. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
  35. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
  36. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +2 -2
  37. {mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.13.post0.dist-info}/METADATA +1 -1
  38. {mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.13.post0.dist-info}/RECORD +41 -27
  39. {mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.13.post0.dist-info}/WHEEL +1 -1
  40. {mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.13.post0.dist-info}/licenses/LICENSE.md +0 -0
  41. {mat3ra_esse-2025.4.22.post0.dist-info → mat3ra_esse-2025.5.13.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 Name74(Enum):
22
+ class Name82(Enum):
23
23
  harris_foulkes = "harris_foulkes"
24
24
 
25
25
 
26
- class ScalarSchema6(BaseModel):
27
- name: Optional[Name74] = None
26
+ class ScalarSchema7(BaseModel):
27
+ name: Optional[Name82] = None
28
28
  value: float
29
29
 
30
30
 
31
- class Name75(Enum):
31
+ class Name83(Enum):
32
32
  one_electron = "one_electron"
33
33
 
34
34
 
35
- class ScalarSchema7(BaseModel):
36
- name: Optional[Name75] = None
35
+ class ScalarSchema8(BaseModel):
36
+ name: Optional[Name83] = None
37
37
  value: float
38
38
 
39
39
 
40
- class Name76(Enum):
40
+ class Name84(Enum):
41
41
  hartree = "hartree"
42
42
 
43
43
 
44
- class ScalarSchema8(BaseModel):
45
- name: Optional[Name76] = None
44
+ class ScalarSchema9(BaseModel):
45
+ name: Optional[Name84] = None
46
46
  value: float
47
47
 
48
48
 
49
- class Name77(Enum):
49
+ class Name85(Enum):
50
50
  exchange = "exchange"
51
51
 
52
52
 
53
- class ScalarSchema9(BaseModel):
54
- name: Optional[Name77] = None
53
+ class ScalarSchema10(BaseModel):
54
+ name: Optional[Name85] = None
55
55
  value: float
56
56
 
57
57
 
58
- class Name78(Enum):
58
+ class Name86(Enum):
59
59
  exchange_correlation = "exchange_correlation"
60
60
 
61
61
 
62
- class ScalarSchema10(BaseModel):
63
- name: Optional[Name78] = None
62
+ class ScalarSchema11(BaseModel):
63
+ name: Optional[Name86] = None
64
64
  value: float
65
65
 
66
66
 
67
- class Name79(Enum):
67
+ class Name87(Enum):
68
68
  ewald = "ewald"
69
69
 
70
70
 
71
- class ScalarSchema11(BaseModel):
72
- name: Optional[Name79] = None
71
+ class ScalarSchema12(BaseModel):
72
+ name: Optional[Name87] = None
73
73
  value: float
74
74
 
75
75
 
76
- class Name80(Enum):
76
+ class Name88(Enum):
77
77
  alphaZ = "alphaZ"
78
78
 
79
79
 
80
- class ScalarSchema12(BaseModel):
81
- name: Optional[Name80] = None
80
+ class ScalarSchema13(BaseModel):
81
+ name: Optional[Name88] = None
82
82
  value: float
83
83
 
84
84
 
85
- class Name81(Enum):
85
+ class Name89(Enum):
86
86
  atomic_energy = "atomic_energy"
87
87
 
88
88
 
89
- class ScalarSchema13(BaseModel):
90
- name: Optional[Name81] = None
89
+ class ScalarSchema14(BaseModel):
90
+ name: Optional[Name89] = None
91
91
  value: float
92
92
 
93
93
 
94
- class Name82(Enum):
94
+ class Name90(Enum):
95
95
  eigenvalues = "eigenvalues"
96
96
 
97
97
 
98
- class ScalarSchema14(BaseModel):
99
- name: Optional[Name82] = None
98
+ class ScalarSchema15(BaseModel):
99
+ name: Optional[Name90] = None
100
100
  value: float
101
101
 
102
102
 
103
- class Name83(Enum):
103
+ class Name91(Enum):
104
104
  PAW_double_counting_correction_2 = "PAW_double-counting_correction_2"
105
105
 
106
106
 
107
- class ScalarSchema15(BaseModel):
108
- name: Optional[Name83] = None
107
+ class ScalarSchema16(BaseModel):
108
+ name: Optional[Name91] = None
109
109
  value: float
110
110
 
111
111
 
112
- class Name84(Enum):
112
+ class Name92(Enum):
113
113
  PAW_double_counting_correction_3 = "PAW_double-counting_correction_3"
114
114
 
115
115
 
116
- class ScalarSchema16(BaseModel):
117
- name: Optional[Name84] = None
116
+ class ScalarSchema17(BaseModel):
117
+ name: Optional[Name92] = None
118
118
  value: float
119
119
 
120
120
 
121
- class Name85(Enum):
121
+ class Name93(Enum):
122
122
  hartree_fock = "hartree_fock"
123
123
 
124
124
 
125
- class ScalarSchema17(BaseModel):
126
- name: Optional[Name85] = None
125
+ class ScalarSchema18(BaseModel):
126
+ name: Optional[Name93] = None
127
127
  value: float
128
128
 
129
129
 
130
- class Name86(Enum):
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[ScalarSchema6] = Field(None, title="scalar schema")
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[ScalarSchema7] = Field(None, title="scalar schema")
153
+ oneElectron: Optional[ScalarSchema8] = Field(None, title="scalar schema")
154
154
  """
155
155
  kinetic + pseudopotential energy
156
156
  """
157
- hartree: Optional[ScalarSchema8] = Field(None, title="scalar schema")
157
+ hartree: Optional[ScalarSchema9] = Field(None, title="scalar schema")
158
158
  """
159
159
  energy due to coulomb potential
160
160
  """
161
- exchange: Optional[ScalarSchema9] = Field(None, title="scalar schema")
161
+ exchange: Optional[ScalarSchema10] = Field(None, title="scalar schema")
162
162
  """
163
163
  exchange energy
164
164
  """
165
- exchangeCorrelation: Optional[ScalarSchema10] = Field(None, title="scalar schema")
165
+ exchangeCorrelation: Optional[ScalarSchema11] = Field(None, title="scalar schema")
166
166
  """
167
167
  exchange and correlation energy per particle
168
168
  """
169
- ewald: Optional[ScalarSchema11] = Field(None, title="scalar schema")
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[ScalarSchema12] = Field(None, title="scalar schema")
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[ScalarSchema13] = Field(None, title="scalar schema")
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[ScalarSchema14] = Field(None, title="scalar schema")
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[ScalarSchema15] = Field(None, title="scalar schema")
185
+ PAWDoubleCounting2: Optional[ScalarSchema16] = Field(None, title="scalar schema")
186
186
  """
187
187
  double counting correction 2
188
188
  """
189
- PAWDoubleCounting3: Optional[ScalarSchema16] = Field(None, title="scalar schema")
189
+ PAWDoubleCounting3: Optional[ScalarSchema17] = Field(None, title="scalar schema")
190
190
  """
191
191
  double counting correction 3
192
192
  """
193
- hartreeFock: Optional[ScalarSchema17] = Field(None, title="scalar schema")
193
+ hartreeFock: Optional[ScalarSchema18] = Field(None, title="scalar schema")
194
194
  """
195
195
  hartree-fock contribution
196
196
  """
197
- name: Optional[Name86] = None
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 Units58(Enum):
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[Units58] = None
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 Units16(Enum):
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, Units16]
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 Units23(Enum):
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, Units23]
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 Units25(Enum):
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, Units25]
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 Units33(Enum):
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, Units33]
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 Units45(Enum):
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, Units45]
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 Units49(Enum):
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, Units49]
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 Units52(Enum):
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, Units52]
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 Units56(Enum):
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, Units56]
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 Units61(Enum):
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, Units61]
33
+ units: Union[Units, Units64]
34
34
  value: float
@@ -37,12 +37,12 @@ class FunctionalGroupPatternSchema(BaseModel):
37
37
  """
38
38
 
39
39
 
40
- class Name54(Enum):
40
+ class Name62(Enum):
41
41
  ring = "ring"
42
42
 
43
43
 
44
44
  class RingPatternSchema(BaseModel):
45
- name: Optional[Name54] = None
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 Name55(Enum):
53
+ class Name63(Enum):
54
54
  special_bond = "special_bond"
55
55
 
56
56
 
57
57
  class SpecialBondPatternSchema(BaseModel):
58
- name: Optional[Name55] = None
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 Units30(Enum):
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[Units30] = None
28
+ units: Optional[Units33] = None
29
29
  """
30
30
  units for force tolerance
31
31
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mat3ra-esse
3
- Version: 2025.4.22.post0
3
+ Version: 2025.5.13.post0
4
4
  Summary: Excellent Source of Schemas and Examples.
5
5
  Author-email: "Exabyte Inc." <info@mat3ra.com>
6
6
  License: # LICENSE
@@ -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=oiWWmz4dPg3sQp7_L1uaKkToeFVkKHTr-ujhFKM9UBY,46295
5
+ mat3ra/esse/data/examples.py,sha256=F3zA1HDTRS-UeCrJfOqws4Rn4pxUpFUz8oB6iEL4YIU,48407
6
6
  mat3ra/esse/data/properties.py,sha256=geWFIVIJbdn2Q_JG3Mz36oQ_dXeZZwnmlS_NgszvHUY,6099
7
- mat3ra/esse/data/schemas.py,sha256=cEzd9e8hfondSw3_by9-bQ6sj6IWL9iD-A2jtHp_NjE,1586982
7
+ mat3ra/esse/data/schemas.py,sha256=8W5IEjOODsqZ9XgvrjCi0gev2Bk8EVkOxzx0KaGZKLU,1605255
8
8
  mat3ra/esse/models/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
9
- mat3ra/esse/models/element.py,sha256=F-qqWZMB6XUB6xvsgdUdM-USLd8G96QaZwS5kwP8NAI,1331
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
@@ -36,6 +36,7 @@ mat3ra/esse/models/core/abstract/_3d_grid.py,sha256=qJ6z7YI504zEWp81dOoYdBVBZDPF
36
36
  mat3ra/esse/models/core/abstract/_3d_tensor.py,sha256=LS2yGo4DWMPp4As2jC3oeVO4RsueFAryaHTTL_lDWuI,563
37
37
  mat3ra/esse/models/core/abstract/_3d_vector_basis.py,sha256=ub2Gt2HJEQKIlmRv6XiK0-hQJ0lpo3RtT6yn_1vF1N8,564
38
38
  mat3ra/esse/models/core/abstract/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
39
+ mat3ra/esse/models/core/abstract/coordinate_2d.py,sha256=VY2G33pQx_QYF-njFFk3Yhg_emT0datwlcqg9KppCYk,349
39
40
  mat3ra/esse/models/core/abstract/coordinate_3d.py,sha256=9FF3YH5uQQCKH2ta4hklogqj9Zw8qWK7sR5fJPjABhg,349
40
41
  mat3ra/esse/models/core/abstract/kpoint.py,sha256=qs_3FgLXwkaCW3XyCATTcGoeB2DWAQzVMnhPt04Nvhw,404
41
42
  mat3ra/esse/models/core/abstract/matrix_3x3.py,sha256=7Ob8lg7Uq33R0dVO7XYgp4AvDyffg8UeeCW8qXzdqOQ,526
@@ -91,7 +92,7 @@ mat3ra/esse/models/core/reusable/band_gap.py,sha256=_L79BKX80sAH7ZuyxFSdomJLS2dq
91
92
  mat3ra/esse/models/core/reusable/categories.py,sha256=Z90c6gdSMUdEYwoThEyusMXb5ufqoQh-tISYafPWwME,1350
92
93
  mat3ra/esse/models/core/reusable/category_path.py,sha256=SFyMHOXwrIewKkr4lCZRfSO-oszEx29XEK6TuLJrBtQ,359
93
94
  mat3ra/esse/models/core/reusable/dielectric_tensor_component.py,sha256=_rr6oeTSxUp9iIwaDNt84oeu32_EMXB2vb-MeuxosjY,623
94
- mat3ra/esse/models/core/reusable/energy.py,sha256=AjT_TddSu8bdBbxwHFSnH0GEk7jlSkTineg7F5lKjow,512
95
+ mat3ra/esse/models/core/reusable/energy.py,sha256=Zs5Qxv64yae9Xkhh4YTlpfK8MeuVZefsOMVjvGmeNVM,512
95
96
  mat3ra/esse/models/core/reusable/energy_accuracy_levels.py,sha256=ndCRZOzYZZ-Ok-mjANEKtvOuMSQvE2WzCXqXvrJrNtA,655
96
97
  mat3ra/esse/models/core/reusable/file_metadata.py,sha256=DyPL1zQJR3HTyOGgvQzE7BxasTCkVRffeG_4WKfxf-8,520
97
98
  mat3ra/esse/models/core/reusable/frequency_function_matrix.py,sha256=I4B-ukMJ_aGpP_PHDd63bW8Jav1mreGeMiLqtrElIno,429
@@ -119,9 +120,22 @@ mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7
119
120
  mat3ra/esse/models/job/__init__.py,sha256=tQXT9GQRHDoVyW9AmI_Sjkqg78fkKSb4tL6TmWn--m4,64815
120
121
  mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
121
122
  mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
122
- mat3ra/esse/models/material/__init__.py,sha256=TnzsiW4W59EnRzteT_ZP6oFVfY33aP7kqYXCVPXl7y4,9940
123
+ mat3ra/esse/models/material/__init__.py,sha256=7CnepGoWJH7ENKsgm6y0Hplxajbpv2QravDZOEBXYvk,9940
123
124
  mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
124
125
  mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
126
+ mat3ra/esse/models/material/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
127
+ mat3ra/esse/models/material/reusable/repetitions.py,sha256=CpJjyQLz0MoQsp5fiLSCNDE1NfajQYTRjUJTzLb9YHc,754
128
+ mat3ra/esse/models/material/reusable/supercell_matrix_2d.py,sha256=Ul--ruw2s6JRVwu4y6M-YKSZBmZb6uI-pfC-Ua0ZWus,722
129
+ mat3ra/esse/models/material/reusable/supercell_matrix_3d.py,sha256=tqKLcZyV3zaSq2I4dZR6mVB-EMoykMvOh-lBaKh_cZc,784
130
+ mat3ra/esse/models/material/reusable/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
131
+ mat3ra/esse/models/material/reusable/slab/enums.py,sha256=ahZsneu0LQal4eYK3wo1YbFZKogytxYYMm0DEh8e4KQ,252
132
+ mat3ra/esse/models/material/reusable/slab/miller_indices.py,sha256=FIqFq2U34Q0g5zA8QF9twGHEc3vbkeyJb8fcexQJn8Q,467
133
+ mat3ra/esse/models/material/reusable/slab/number_of_layers.py,sha256=qtAuqvDHj1WJLnGTvvkROC0n6m30RVzcMsLUufjpUOs,440
134
+ mat3ra/esse/models/material/reusable/slab/termination.py,sha256=XyejfZbAafuE00ghnaf3YX7pY6IX0IgaXnYA6ps3FpQ,506
135
+ mat3ra/esse/models/material/reusable/slab/thickness.py,sha256=XHpdMvU4gd3qRKeTUgycKD4hk32ZyLKcE-3ehDUCk7c,442
136
+ mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=FKs9OwwTICl2OyJ1xXmd7FqpFa-bxf-KLScOYLxLfBo,402
137
+ mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
138
+ mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=cNK2sdXgr2F0Y6KSZyb9iygI0gbKeiX4ANZ4k7AuIMM,11416
125
139
  mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
126
140
  mat3ra/esse/models/method/categorized_method.py,sha256=f2dQIPERDoY61WL-KR_6dmAftRyPv_d_J6XSaV5yjqE,2479
127
141
  mat3ra/esse/models/method/method_parameters.py,sha256=CH4qkchLAsq_L0iaet5dESnbTePbQYfXK47U8MemrxQ,1086
@@ -301,7 +315,7 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
301
315
  mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
302
316
  mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
303
317
  mat3ra/esse/models/properties_directory/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
304
- mat3ra/esse/models/properties_directory/derived_properties.py,sha256=1DKwut5eBp5SMx8A1Dsulo5CQRPnj2hVMxZuXysHwzg,3012
318
+ mat3ra/esse/models/properties_directory/derived_properties.py,sha256=GTCvUFZ5gB1Uu3jJiTrEH-gORT3FuT4letDIHh4rB40,3010
305
319
  mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
306
320
  mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
307
321
  mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=VsSKIbLYl9GseztXyzggDAMyMH0qJ3s_9IS8lxYKz88,591
@@ -312,31 +326,31 @@ mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,
312
326
  mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=7ypgPAH8RgGlntishJctQeAFDsjBUbSoZ0GfRwue85I,1817
313
327
  mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=W7-ZbbqDqEC42glSrpzvR__UvKeEA7rWEM5kDrp97BY,1588
314
328
  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=e__ZoFQC8M0j2rt21VicJ70T7zHNnc8zXZVECvfHraA,2010
329
+ mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=GxGvIvKXi-pevLs9oUWWZjMI3hQQCcnfZDWE5CwqS3A,2010
316
330
  mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_1KlHVqxzjgh9Z36kpsjeHRi-SsjxhmLWt8wMYi_6rc,807
317
331
  mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkzH_EQ-aViO7aCxhPgNDXIAr2MqfF6vQfZaC6pc,1429
318
332
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
319
333
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
320
334
  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=ovZcUTMB0xPexUkUcQaCKdqul3Q5xt17ycDrD_V9zVA,1382
322
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=A97N3GHYcmhEoo5NjTIAGQW4WX4H-Ny3wYz2-Ww8o38,1403
335
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=NW5BXeR0o7Co-eVCoMAlt9xVtPaaaUD88jL0k1JeL_k,1382
336
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=LcVLzyPOezgMf_q4iyEPMuPrncXqYA6skQiMntfcgF8,1403
323
337
  mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
324
338
  mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
325
339
  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=WEOzbWPpjM00Tspm6RRQQyXUTQAUp3KEN_Lh8gsy8uw,4430
327
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=rUJVulW02mWkf0Tvs8OnliqbVIdh9zgEi16uijdhNqA,1562
340
+ mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=oVXzpB-uZlsCw6BKowcdz4KV9focMEJkNJwxVe2NTDU,4432
341
+ mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=5NgUTOnQag75Y2TprLH8KVaM3h4sW9ZY7ycRblHY0CU,1562
328
342
  mat3ra/esse/models/properties_directory/scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
329
- mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=Nntdgy3jgoZENYpQfaMXrC25YpvX2jYuoNALsnNwr38,612
330
- mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=rf6_M6ErJ00Z9yburMGXlDPKisFLSQH9GswSVlI4VY4,592
331
- mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=hZVwFwkXAPwGuhcvh9BSUC3JKVWqvplYJBLrSJrPggc,608
332
- mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=GL4C_NoEf6pZY9nW7fQ-4r5AzWko83-4AntEybIT23I,624
343
+ mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=jGHVe-rZY0bPJ1_lcZcZ4RVGlweUxh03n75N_eGGWwo,612
344
+ mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=zq9cRpy8x5TGnDNmfZFuIx29j8qxPBR6kkyDWFn7wfM,592
345
+ mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=GKpU_PD7KFfW_w4Kwk-lM5SaygNR2pSdg9h6d8k-6ak,608
346
+ mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=9Uf5RimZZSsLJU6iP3vFNzJiTZRqu_P3MDb16Lj-Av4,624
333
347
  mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=I6OrUOgvCUmXr1dD7Gfn17wAObEWVJW5vy6bdHf5qYE,443
334
- mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=an1pNN3b8mJj-3w8cCeJhWtrKcw2gsX8J_8XusxiHVs,635
335
- mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=FsYSZOarR1xvu6ASO3pH07FL7wwO0QogzuqAt1qKVHI,600
336
- mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=1gStQBykL6ZNBHUlioTC4diG9tyAwYgmSjsGYlgG1LM,592
348
+ mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=qyAdk4ukgKzEu7Brgo82kyGrBU4z-1-EZeYxvaed1LI,635
349
+ mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=L3GyBbKRyBJPAKtzWmHzwPv4qdcKX35tM2bi8AwulZE,600
350
+ mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=V9_HcGO8WUS-whtPTFUWR6R0Z0yG-S3dUavE9hOnllA,592
337
351
  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=Ltl2_zwsmqwxd1_j9A0fX0qBXOQbl-oWIia1GES6iBQ,619
339
- mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=SRu6x3QMMMQu0xpch5MxyCC0czK_OqVdw8P_qZ9t1Vw,611
352
+ mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=1m2X4i5UdE3rYJ-QK0FQD5iClW9d-Lut7cSKLbbUqDE,619
353
+ mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=Xire0iYsPAR-dOzyfOieBvkfeumVDlnfjCVtcN5-gus,611
340
354
  mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
341
355
  mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
342
356
  mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
@@ -344,7 +358,7 @@ mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP
344
358
  mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
345
359
  mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
346
360
  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=rTEzU6_eqITIAJspWUyR_pq0v39Ht11GvL5Wss2V4cQ,1789
361
+ mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=GmVlLnf8d-4wouDNIoNqMyCWjHlapDoAVd75Ny9rXm4,1789
348
362
  mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
349
363
  mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
350
364
  mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
@@ -376,7 +390,7 @@ mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=vZ7ts
376
390
  mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=KnVmYAti3CfLIds1wVM8qW_cN75VGGdWQ7Ew3VFPpSE,742
377
391
  mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
378
392
  mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=MuMgO1Gq1285cvnjASCcFsHOD2ArcSjrV2OOWISF-M4,558
379
- mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=F5esNlqQXQWCC2AGXRXCh9HmbOGSOPgqHfn6RO6hboo,1306
393
+ mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=q4xQSEceNkGIe1RFUY2u3_lffn2v_X7ZcOaUW5v1KRk,1306
380
394
  mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
381
395
  mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
382
396
  mat3ra/esse/models/property/base.py,sha256=mb5Q1XgYt7WrFhUir0O99ufQNzhiJog0yfoqECokquA,5003
@@ -513,8 +527,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
513
527
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
514
528
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
515
529
  mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
516
- mat3ra_esse-2025.4.22.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
517
- mat3ra_esse-2025.4.22.post0.dist-info/METADATA,sha256=MDghORhF9HxTCKBZjIIpJl0wa9AxDpRW8NeZtJlFqN0,9000
518
- mat3ra_esse-2025.4.22.post0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
519
- mat3ra_esse-2025.4.22.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
520
- mat3ra_esse-2025.4.22.post0.dist-info/RECORD,,
530
+ mat3ra_esse-2025.5.13.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
531
+ mat3ra_esse-2025.5.13.post0.dist-info/METADATA,sha256=WV1OaGpBmyAiLxP7dvlilPLoVcbJZqc494qJbB4-riM,9000
532
+ mat3ra_esse-2025.5.13.post0.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
533
+ mat3ra_esse-2025.5.13.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
534
+ mat3ra_esse-2025.5.13.post0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.0)
2
+ Generator: setuptools (80.4.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5