mat3ra-esse 2025.5.17.post2__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 (78) 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/apse/materials/builders/slab/pymatgen/parameters.py +3 -3
  5. mat3ra/esse/models/core/primitive/array_of_3_integers.py +13 -0
  6. mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py +29 -1
  7. mat3ra/esse/models/core/reusable/energy.py +2 -2
  8. mat3ra/esse/models/element.py +6 -6
  9. mat3ra/esse/models/material/__init__.py +14 -14
  10. mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py +1 -1
  11. mat3ra/esse/models/material/reusable/slab/termination.py +1 -1
  12. mat3ra/esse/models/material/reusable/slab_configuration_with_termination.py +1 -1
  13. mat3ra/esse/models/material/reusable/stack/slab_in_stack.py +1 -1
  14. mat3ra/esse/models/materials_category/defects/two_dimensional/grain_boundary_plane/configuration.py +2 -2
  15. mat3ra/esse/models/materials_category/multi_material/interfaces/configuration.py +1 -1
  16. mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/__init__.py +3 -0
  17. mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py +530 -0
  18. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/__init__.py +3 -0
  19. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +1143 -0
  20. mat3ra/esse/models/materials_category_components/entities/auxiliary/three_dimensional/__init__.py +3 -0
  21. mat3ra/esse/models/materials_category_components/entities/auxiliary/three_dimensional/supercell_matrix_3d.py +27 -0
  22. mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/__init__.py +3 -0
  23. mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/miller_indices.py +16 -0
  24. mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/supercell_matrix_2d.py +25 -0
  25. mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/termination.py +144 -0
  26. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/__init__.py +3 -0
  27. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py +13 -0
  28. mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/__init__.py +3 -0
  29. mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py +530 -0
  30. mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/void.py +32 -0
  31. mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/__init__.py +3 -0
  32. mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py +551 -0
  33. mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/__init__.py +3 -0
  34. mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/atom.py +134 -0
  35. mat3ra/esse/models/materials_category_components/entities/reusable/__init__.py +3 -0
  36. mat3ra/esse/models/materials_category_components/entities/reusable/repetitions.py +25 -0
  37. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/__init__.py +3 -0
  38. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py +544 -0
  39. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py +541 -0
  40. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py +542 -0
  41. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/__init__.py +3 -0
  42. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers.py +683 -0
  43. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique.py +683 -0
  44. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique_repeated.py +687 -0
  45. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py +545 -0
  46. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_unit_cell.py +1130 -0
  47. mat3ra/esse/models/materials_category_components/operations/core/combinations/__init__.py +3 -0
  48. mat3ra/esse/models/materials_category_components/operations/core/combinations/merge.py +996 -0
  49. mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py +968 -0
  50. mat3ra/esse/models/materials_category_components/operations/core/combinations/stack_component.py +967 -0
  51. mat3ra/esse/models/materials_category_components/operations/core/modifications/__init__.py +3 -0
  52. mat3ra/esse/models/materials_category_components/operations/core/modifications/repeat.py +27 -0
  53. mat3ra/esse/models/materials_category_components/operations/core/modifications/strain.py +19 -0
  54. mat3ra/esse/models/properties_directory/derived_properties.py +11 -11
  55. mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py +2 -2
  56. mat3ra/esse/models/properties_directory/non_scalar/band_structure.py +2 -2
  57. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +2 -2
  58. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
  59. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
  60. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
  61. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
  62. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +2 -2
  63. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +2 -2
  64. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +2 -2
  65. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +2 -2
  66. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
  67. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
  68. mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
  69. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
  70. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
  71. mat3ra/esse/models/properties_directory/structural/basis/__init__.py +2 -2
  72. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
  73. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +2 -2
  74. {mat3ra_esse-2025.5.17.post2.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/METADATA +1 -1
  75. {mat3ra_esse-2025.5.17.post2.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/RECORD +78 -39
  76. {mat3ra_esse-2025.5.17.post2.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/WHEEL +1 -1
  77. {mat3ra_esse-2025.5.17.post2.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/licenses/LICENSE.md +0 -0
  78. {mat3ra_esse-2025.5.17.post2.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/top_level.txt +0 -0
@@ -2,18 +2,18 @@ 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=81JgqrLeBsaQXoX5420k8Ho4OA-VadBTKI9Gs5jP6BY,72446
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=aqXwFShvA2rX2a4mJBMMPvQXQrySTVQzKPw9N-y4sbI,1963629
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
- mat3ra/esse/models/element.py,sha256=x-_wbyuTIWxUo2rby0cpGV7FjVQsBA3dQI11ARb7Db0,2948
10
+ mat3ra/esse/models/element.py,sha256=n_06XRiBOS9Tq_z08YGu5_nZDuqLnkxsfAe9mqYON2s,2944
11
11
  mat3ra/esse/models/project.py,sha256=fqUckRBLyCzVc_77-EtQUg_zFDV_zTYfnLmOoE77zPE,1148
12
12
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
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=Ivmy8hwsyMar2sofQ1xon1j7CGq5GfK7Caf98qZwqj0,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
@@ -26,7 +26,7 @@ mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/ions.py,sha256=CH5m4
26
26
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/k_points.py,sha256=N2fxAVS3Bt-bwIpslNqyrQb2f3mCXY_S6Uc4heCz19E,1602
27
27
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/system.py,sha256=k1G0aNawyd6Y1gPWeH4tFZxpd5wNXwpQiwMQMHUEI5k,34350
28
28
  mat3ra/esse/models/apse/materials/builders/slab/pymatgen/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
29
- mat3ra/esse/models/apse/materials/builders/slab/pymatgen/parameters.py,sha256=vDb3Blhx1f0U-E6p325SaZS6c8FeGzsUdub_DQjPY0o,728
29
+ mat3ra/esse/models/apse/materials/builders/slab/pymatgen/parameters.py,sha256=P-6jXpG84bAsOMnr0EBSV-20MHpGViZOjcKSJqLVqxc,785
30
30
  mat3ra/esse/models/core/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
31
31
  mat3ra/esse/models/core/abstract/2d_data.py,sha256=QiWkaGXriph7QwLWF3LuRddSal7fLEakNMh2DkuCNCc,426
32
32
  mat3ra/esse/models/core/abstract/2d_plot.py,sha256=q2qJuDQ10UtiJvZcGzWWv9T9qHJ8HwP-kING3w6cUWM,812
@@ -53,6 +53,7 @@ mat3ra/esse/models/core/primitive/_1d_data_series.py,sha256=axKdgsXgeF95sKcBtWKS
53
53
  mat3ra/esse/models/core/primitive/_3d_lattice.py,sha256=B1V-vJnQ0_l4vvijdYBAiAzgxJS2mdLdsAukJibxjxg,673
54
54
  mat3ra/esse/models/core/primitive/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
55
55
  mat3ra/esse/models/core/primitive/array_of_3_booleans.py,sha256=06YLYsvCD7BP5fNee8e07YKrNZVNsfh9RpvBMj-k7-A,379
56
+ mat3ra/esse/models/core/primitive/array_of_3_integers.py,sha256=L8Ufchk1rlzLkuFeFItAZTxr1HjD5cTD0WHVoCGXLoM,377
56
57
  mat3ra/esse/models/core/primitive/array_of_3_numbers.py,sha256=VjCYsMasQYN1agkBJelaVsBY3NK-fyuS0OobMGHjoNY,378
57
58
  mat3ra/esse/models/core/primitive/array_of_ids.py,sha256=JMTCZGq743-t61SNqFqPNX26yZNZ5I9APKoZ23_1z6w,484
58
59
  mat3ra/esse/models/core/primitive/array_of_strings.py,sha256=j8hck6B4rcpNc801v5shjFiwtWVXMX1e_kFr7WNfMpo,370
@@ -96,7 +97,7 @@ mat3ra/esse/models/core/reusable/band_gap.py,sha256=_L79BKX80sAH7ZuyxFSdomJLS2dq
96
97
  mat3ra/esse/models/core/reusable/categories.py,sha256=Z90c6gdSMUdEYwoThEyusMXb5ufqoQh-tISYafPWwME,1350
97
98
  mat3ra/esse/models/core/reusable/category_path.py,sha256=SFyMHOXwrIewKkr4lCZRfSO-oszEx29XEK6TuLJrBtQ,359
98
99
  mat3ra/esse/models/core/reusable/dielectric_tensor_component.py,sha256=_rr6oeTSxUp9iIwaDNt84oeu32_EMXB2vb-MeuxosjY,623
99
- mat3ra/esse/models/core/reusable/energy.py,sha256=juszF0zIxvqNIEpfRyWHoC6-N9sUv1PX3Fu_0oV1uHk,512
100
+ mat3ra/esse/models/core/reusable/energy.py,sha256=ZlYKLdxiljlWW5MWiW-tj-7RJPFlsSRpFsV6QgwEJD0,512
100
101
  mat3ra/esse/models/core/reusable/energy_accuracy_levels.py,sha256=ndCRZOzYZZ-Ok-mjANEKtvOuMSQvE2WzCXqXvrJrNtA,655
101
102
  mat3ra/esse/models/core/reusable/file_metadata.py,sha256=DyPL1zQJR3HTyOGgvQzE7BxasTCkVRffeG_4WKfxf-8,520
102
103
  mat3ra/esse/models/core/reusable/frequency_function_matrix.py,sha256=I4B-ukMJ_aGpP_PHDd63bW8Jav1mreGeMiLqtrElIno,429
@@ -107,7 +108,7 @@ mat3ra/esse/models/core/reusable/atomic_data/per_orbital.py,sha256=pd3oG1FfLevoA
107
108
  mat3ra/esse/models/core/reusable/atomic_data/per_orbital_pair.py,sha256=gLJkxLpRfNAixmVV1LCz-UHp-C55iq7SM7QJQnFSLWM,919
108
109
  mat3ra/esse/models/core/reusable/atomic_data/value_number.py,sha256=nEF8VBqob3JNGFogaJsaHWOchl_lGyh9MHDbFLF4h78,376
109
110
  mat3ra/esse/models/core/reusable/atomic_data/value_string.py,sha256=vwk-4oyLWQB7Qbw5dpUt79oaojZsJVlbZvPfp-3JH7U,348
110
- mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
111
+ mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py,sha256=x3F0hTWnquvTngAvmbwwKJ547QuAvn_oLk6FRfY3Egg,956
111
112
  mat3ra/esse/models/core/reusable/coordinate_conditions/base.py,sha256=L7zYSATgDrli55qZhAutLnzOUXCp1PqTxL8-0XRO940,497
112
113
  mat3ra/esse/models/core/reusable/coordinate_conditions/box.py,sha256=MldQtO6zNM-C40C4EKR8k4p29RaGGJh_Hc8N2gCTfX8,733
113
114
  mat3ra/esse/models/core/reusable/coordinate_conditions/cylinder.py,sha256=x9f179N27Ix8Djbj7MI_8XRkg02aMRNftZZclGV6-SU,721
@@ -136,17 +137,17 @@ mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7
136
137
  mat3ra/esse/models/job/__init__.py,sha256=tQXT9GQRHDoVyW9AmI_Sjkqg78fkKSb4tL6TmWn--m4,64815
137
138
  mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
138
139
  mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
139
- mat3ra/esse/models/material/__init__.py,sha256=obWZRNO8eMaQdWsk3rB6TDnwo4Bv7qQv68V7QNjkTy8,11681
140
+ mat3ra/esse/models/material/__init__.py,sha256=XoCMo_vYulZhkJv_V7n4jaw8Ee3ZmVgjD71P6L0DOcw,11673
140
141
  mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
141
142
  mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
142
143
  mat3ra/esse/models/material/builders/base/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
143
144
  mat3ra/esse/models/material/builders/base/selector_parameters.py,sha256=ePtuNvhoyfzmhQD1OEwIvzVyteyakcNBqvCoLCPofOw,370
144
145
  mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
145
146
  mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/builder_parameters.py,sha256=4vq5IwymOgpi24Eu1tus6pByU6z27BVTClH9lhjg5Mg,743
146
- 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
147
148
  mat3ra/esse/models/material/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
148
149
  mat3ra/esse/models/material/reusable/repetitions.py,sha256=CpJjyQLz0MoQsp5fiLSCNDE1NfajQYTRjUJTzLb9YHc,754
149
- 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
150
151
  mat3ra/esse/models/material/reusable/supercell_matrix_2d.py,sha256=Ul--ruw2s6JRVwu4y6M-YKSZBmZb6uI-pfC-Ua0ZWus,722
151
152
  mat3ra/esse/models/material/reusable/supercell_matrix_3d.py,sha256=tqKLcZyV3zaSq2I4dZR6mVB-EMoykMvOh-lBaKh_cZc,784
152
153
  mat3ra/esse/models/material/reusable/coordinate_conditions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -162,14 +163,14 @@ mat3ra/esse/models/material/reusable/slab/miller_indices.py,sha256=FIqFq2U34Q0g5
162
163
  mat3ra/esse/models/material/reusable/slab/number_of_layers.py,sha256=-tw5Z2q1eIXe3rm3XOCI_ux31QS6463sb3n0qHQ8Tkc,440
163
164
  mat3ra/esse/models/material/reusable/slab/slab_configuration_with_termination.py,sha256=toHZlEtuVcKXTBt_aKg8bveYrsFu3NgijUmoEYcG9xI,13776
164
165
  mat3ra/esse/models/material/reusable/slab/slab_with_termination.py,sha256=Z10EKD_ijcMTcNdzrB_E4a9qakwzUICe0a76EfftsCQ,13835
165
- mat3ra/esse/models/material/reusable/slab/termination.py,sha256=-Zh961QVKipjdbEgcD5Ddqjyftyo0ikNNiUl9334rEo,2364
166
+ mat3ra/esse/models/material/reusable/slab/termination.py,sha256=uYyGTGpqCV1QFvfEYBNu_DU1z7HJRAqlZ4jDbGorxEc,2359
166
167
  mat3ra/esse/models/material/reusable/slab/two_slabs_stack.py,sha256=VEfVT6nel6uuC75bCHKMSwE7FsUerc_JvXVSm9QcKdo,14474
167
168
  mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=GlJFBUUYc8JP-zqdLXaUf899-3fy1X2p_sdzbpwPlw8,421
168
169
  mat3ra/esse/models/material/reusable/slab/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
169
170
  mat3ra/esse/models/material/reusable/slab/enums/exposed_face.py,sha256=-MUlEELT-ec-0XtmZrsrs2HVviP-ITmhxJYiR_1ab5M,268
170
171
  mat3ra/esse/models/material/reusable/stack/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
171
172
  mat3ra/esse/models/material/reusable/stack/slab_configuration_with_termination.py,sha256=VvSEirucIX05yor2YRN2RSjuM9yJUr-RzvHKLDs_Aow,13848
172
- 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
173
174
  mat3ra/esse/models/material/reusable/stack/stack_of_slabs.py,sha256=d22cbirT2w3JLMkb6cyBAtj-_I1-RqOQKtnwG4Jp80w,16206
174
175
  mat3ra/esse/models/material/reusable/stack/stack_of_two_slabs.py,sha256=2r5ahhJxqdxiI0DlQ0ZynOCc3zmMq7_7S0t7VehzzSQ,16227
175
176
  mat3ra/esse/models/material/reusable/supercell/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -188,7 +189,7 @@ mat3ra/esse/models/materials_category/defects/enums/point_defect_type.py,sha256=
188
189
  mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
189
190
  mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py,sha256=nLnMwm_Dc4mYHYP3Yrz0qooqje38fOwaAecuXuf2jWE,12798
190
191
  mat3ra/esse/models/materials_category/defects/two_dimensional/grain_boundary_plane/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
191
- 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
192
193
  mat3ra/esse/models/materials_category/defects/two_dimensional/island/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
193
194
  mat3ra/esse/models/materials_category/defects/two_dimensional/island/condition_json.py,sha256=RnKPBWrycEr-fU4X7NKZ1tdRlYFcFM-y4cW44rb_wrE,863
194
195
  mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py,sha256=ESb5xFkiXH42aqIltQQ-9WEJyYqIuY5g63AcwWESjks,12817
@@ -203,9 +204,47 @@ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitutio
203
204
  mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
204
205
  mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py,sha256=piucwaXcimn031aiU_1A17bwPhpcx35pPeNC9z-lc60,14025
205
206
  mat3ra/esse/models/materials_category/multi_material/interfaces/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
206
- 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
+ mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
209
+ mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py,sha256=x8ZwbukFhJaa3J2b_WnGMyUXYtbqpMme-fo7ZmfYg6Q,11739
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=-xN_Avv0ydJ2qNxv3xZwD452_PEDsTGx1ToD14nXf30,24933
207
212
  mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
208
213
  mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=gG-dtEKQPSJgGFIjTu41er0By7B1iVFMWE2qiIMU2OI,13098
214
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
215
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/three_dimensional/supercell_matrix_3d.py,sha256=6VlpXs4gqlukSqaB4MHX2WSZQwGjbJvyIiKIw4yAdg4,898
216
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
217
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/miller_indices.py,sha256=7pfnaj6FU41ZyuvBbYz67mWkh21425rJyNw4_Ug9WfU,513
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=LE0QSArs0CTPvIQ6-osWymoeEGh7ebotWqUnFUNksII,2401
220
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
221
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py,sha256=zYg22xaI2cRoq9AzpWBkh8Fk-R6Y53Fgn8ItDtb2Lz4,392
222
+ mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
223
+ mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py,sha256=6GYJ50v6qiQZE67-rXTNwISYtBQIGosbaabqxZKEsa8,11733
224
+ mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/void.py,sha256=23O84_CEsV-zdidWHPnadN-mSjISj78_9cojEOfttPw,1059
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=DQuk6wmCNzUgO8ryK7FuRwrz7zZ3hnISjzC4DPIhO6M,12185
227
+ mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
228
+ mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/atom.py,sha256=3WX1b139aRToS55r7jWHCTETfXsMcM1CdJ2aqpnUZ_Y,1957
229
+ mat3ra/esse/models/materials_category_components/entities/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
230
+ mat3ra/esse/models/materials_category_components/entities/reusable/repetitions.py,sha256=MfRry1yBuzDjw_xIHIWHm8tk0XqixdbDrNpqgvBMCQY,784
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=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
+ 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=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
+ 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=c9aCXu_7JT-pvsCCI0NmzX60JXwWoNcNN3VfXv2xJvs,24525
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=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
+ mat3ra/esse/models/materials_category_components/operations/core/modifications/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
246
+ mat3ra/esse/models/materials_category_components/operations/core/modifications/repeat.py,sha256=G0pT_vKMo3C9GnbRhGiDEJNDqbeDe_oJBl3WrnhUXEk,833
247
+ mat3ra/esse/models/materials_category_components/operations/core/modifications/strain.py,sha256=-ofQnUtBVVf-AjO7h2Gc15qGFR6GF8P5x0s0lFkrSiw,577
209
248
  mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
210
249
  mat3ra/esse/models/method/categorized_method.py,sha256=f2dQIPERDoY61WL-KR_6dmAftRyPv_d_J6XSaV5yjqE,2479
211
250
  mat3ra/esse/models/method/method_parameters.py,sha256=CH4qkchLAsq_L0iaet5dESnbTePbQYfXK47U8MemrxQ,1086
@@ -385,42 +424,42 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
385
424
  mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
386
425
  mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
387
426
  mat3ra/esse/models/properties_directory/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
388
- mat3ra/esse/models/properties_directory/derived_properties.py,sha256=MHZ3KILXoHX7zndLxRc_eQF2XfWHVGpf2FQy6i1Pea0,3017
427
+ mat3ra/esse/models/properties_directory/derived_properties.py,sha256=UNiw9ni7w3LxQmkNWdX-qb0_xcgTFBK5Xn-sx1XyeRM,3010
389
428
  mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
390
429
  mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
391
430
  mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=VsSKIbLYl9GseztXyzggDAMyMH0qJ3s_9IS8lxYKz88,591
392
431
  mat3ra/esse/models/properties_directory/elemental/electronegativity.py,sha256=vkmKQDpw017QMJAHa9Pd3jr4ejBrMvt5j0BJ41_8zBg,395
393
432
  mat3ra/esse/models/properties_directory/elemental/ionization_potential.py,sha256=qw_mwkuBkuFho-Z8cfMZowqKMYZTTsO-Yhp2MA00RSM,597
394
433
  mat3ra/esse/models/properties_directory/non_scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
395
- mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,sha256=cRq7ah4dXRAcp2wMFGjSGj8FaP3YSvXqX9vSDRmpz7M,1594
434
+ mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,sha256=jDyoHKzztDVnXhVpwNQTOy9mPUUD22Y5JWjGOUPyvRs,1596
396
435
  mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=7ypgPAH8RgGlntishJctQeAFDsjBUbSoZ0GfRwue85I,1817
397
- mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=W7-ZbbqDqEC42glSrpzvR__UvKeEA7rWEM5kDrp97BY,1588
436
+ mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=-MJbNha7ADfuPtB1J6grN0wGu-PFuYpOYmkU8OPOGjo,1590
398
437
  mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py,sha256=PSA9V0WCP0Zur_OmzFPLD_3X8Ovttl1z4yzMeWBDOy8,1295
399
- mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=DyAUqsNcbX84B40HKlhuxzb-iiZ4LgYnHOCaIVtD0FE,2010
438
+ mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=qO7fMAS23Qj9D_PT0s-UoJajvrTZBMi2RGF0k7n16nc,2010
400
439
  mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_1KlHVqxzjgh9Z36kpsjeHRi-SsjxhmLWt8wMYi_6rc,807
401
440
  mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkzH_EQ-aViO7aCxhPgNDXIAr2MqfF6vQfZaC6pc,1429
402
441
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
403
442
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
404
443
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py,sha256=xDW1U9JsHKdoPZlTPmm-mDepEqHoOEomQNFDc1pPtbk,1278
405
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=ZNNLsaBEGWVV3xl06PnFwPv5IeXbtCgN6gIYH4dYgl4,1382
406
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=9ivIikx1THXE2tKQVL4JUu6tLoyQeFbbo6tVhCnMKBw,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
407
446
  mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
408
447
  mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
409
448
  mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py,sha256=dFsa5qUQo8PDiZG_tZ-DQX7YiXflvb_gcGQHm9NXmMc,758
410
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=nP1z-PTbJU6jCXcOmP_-iJ6Ph5FJDyBFBzpY0_RM19k,4464
411
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=g_sSDeyb9Ox91wfFD_kFObG-m92vGlovXsVIGfvAzxw,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
412
451
  mat3ra/esse/models/properties_directory/scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
413
- mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=54zoAN81uZFh_WfRoJr7w2-wH2hkjnc4_GaZruXI8IY,612
414
- mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=qRspa7NBhhx6kB-fFMUnWPEfrzbBffNnroL2okFug3c,592
415
- mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=FOkMK4LPwQdGd-qazVR1A13U_ZX3Oa6Lft-n1Fpj6xQ,608
416
- mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=ColHXwIWC_P6feWeE5xZDEnbnj2W7Lt0J8_grsHHfrk,624
452
+ mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=mZ_C7hSZoP7X-PnOAiDzVGzqGxJhSbzFn5Xa-zWFJdU,612
453
+ mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=ZdTL4qFvrjzzFTbc9uXad4HhfyZ9NGlNTc_ckqrnUNM,592
454
+ mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=5Z-xG3fDHLF1kGmJ4hCNnMNgSOmsF-10NAo1Y3NGkf0,608
455
+ mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=mAtCohwWcKgteQXJ165SaNBe22ODn5s1Sm_eb9Kjolw,624
417
456
  mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=I6OrUOgvCUmXr1dD7Gfn17wAObEWVJW5vy6bdHf5qYE,443
418
- mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=M3hqr9LPrm8vYMKDgA1HxqOAS7jkkCz-fKCt862bHYs,635
419
- mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=GJZsszmpSzHtuesZYTD9W7Ar_vDwN6LLFcKfLdt1HGQ,602
420
- mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=WKk2ToylFA8mqGJZoT6bBmb_al2QYMcUEQ57NQy8YgE,594
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
421
460
  mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=l8X_eaNZNgm5rT_vEsNm5uaxBhAs3zGAcY-3MQHKLss,581
422
- mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=inGZTPJAfQ1Em-2-IoKGJoxbIL6hMF_ssvqgHGGByNg,621
423
- mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=OhvFPw8LHOEConNPTpVl54YjFu2X_AkM4qBKSIP2-GY,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
424
463
  mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
425
464
  mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
426
465
  mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
@@ -428,11 +467,11 @@ mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP
428
467
  mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
429
468
  mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
430
469
  mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=sgvKUcrr5iVhWTbalWt_-aGxUo9MFU9qLivCfmbr-nI,774
431
- mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=UIhwS2W9vO_dO63P60NlscUJHnYq9YkUx6PEal9u77k,1793
470
+ mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=A0rzbku9mEXMt6HY-x1rz0UPTifBLzo0lW9JiOLWbMA,1793
432
471
  mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
433
472
  mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
434
473
  mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
435
- mat3ra/esse/models/properties_directory/structural/basis/__init__.py,sha256=cMUCwNAUqF7vV6pJXl81N9Pry9fLqu4l09a_p4AlBBE,3168
474
+ mat3ra/esse/models/properties_directory/structural/basis/__init__.py,sha256=Bd0Hp8RuYQBKyRRNF86ygSosfI_Isi1hQb60nNgzF8k,3170
436
475
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraint.py,sha256=MJfolJSgvQ4zPWZi36Y-9fUUkfSnVBKW0HCDhxsEfHM,441
437
476
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints.py,sha256=GCngLkD-6_Xkn6WL0vqj5r14vJrnT-JE68TWMwCDAso,660
438
477
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py,sha256=BqRWld9jbvPw2hUYMu83QbFoZNvfXt2o-_w_TBB_aeY,779
@@ -460,7 +499,7 @@ mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=vZ7ts
460
499
  mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=KnVmYAti3CfLIds1wVM8qW_cN75VGGdWQ7Ew3VFPpSE,742
461
500
  mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
462
501
  mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=MuMgO1Gq1285cvnjASCcFsHOD2ArcSjrV2OOWISF-M4,558
463
- mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=llKFUs2fVXFZ14WOW3rzZewKOH1UH7TFSHIpNgl0dd4,1306
502
+ mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=qYDT_FprEKq8lQLmayQD9LoHvzDU9j3fGvDrmQi5K9M,1306
464
503
  mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
465
504
  mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
466
505
  mat3ra/esse/models/property/base.py,sha256=mb5Q1XgYt7WrFhUir0O99ufQNzhiJog0yfoqECokquA,5003
@@ -597,8 +636,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
597
636
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
598
637
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
599
638
  mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
600
- mat3ra_esse-2025.5.17.post2.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
601
- mat3ra_esse-2025.5.17.post2.dist-info/METADATA,sha256=c9zW8bqEcgVxvg8N7DBbPpOU3QjRVM3WUO8545EaWp0,9000
602
- mat3ra_esse-2025.5.17.post2.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
603
- mat3ra_esse-2025.5.17.post2.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
604
- mat3ra_esse-2025.5.17.post2.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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.7.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5