mat3ra-esse 2025.5.17.post1__py3-none-any.whl → 2025.5.17.post2__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 (83) 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/coordinates_shape_enum.py +15 -0
  5. mat3ra/esse/models/core/reusable/axis_enum.py +13 -0
  6. mat3ra/esse/models/core/reusable/coordinate_conditions/base.py +21 -0
  7. mat3ra/esse/models/core/reusable/coordinate_conditions/box.py +24 -0
  8. mat3ra/esse/models/core/reusable/coordinate_conditions/cylinder.py +26 -0
  9. mat3ra/esse/models/core/reusable/coordinate_conditions/enum.py +15 -0
  10. mat3ra/esse/models/core/reusable/coordinate_conditions/plane.py +24 -0
  11. mat3ra/esse/models/core/reusable/coordinate_conditions/sphere.py +24 -0
  12. mat3ra/esse/models/core/reusable/coordinate_conditions/triangular_prism.py +27 -0
  13. mat3ra/esse/models/core/reusable/energy.py +2 -2
  14. mat3ra/esse/models/element.py +6 -6
  15. mat3ra/esse/models/material/__init__.py +14 -14
  16. mat3ra/esse/models/material/reusable/coordinate_conditions/base.py +21 -0
  17. mat3ra/esse/models/material/reusable/coordinate_conditions/box.py +24 -0
  18. mat3ra/esse/models/material/reusable/coordinate_conditions/cylinder.py +26 -0
  19. mat3ra/esse/models/material/reusable/coordinate_conditions/plane.py +24 -0
  20. mat3ra/esse/models/material/reusable/coordinate_conditions/sphere.py +24 -0
  21. mat3ra/esse/models/material/reusable/coordinate_conditions/triangular_prism.py +27 -0
  22. mat3ra/esse/models/{materials_category/defects/by_host/two_dimensional/configuration.py → material/reusable/slab/slab_configuration_with_termination.py} +64 -25
  23. mat3ra/esse/models/{materials_category/defects/zero_dimensional/slab/configuration.py → material/reusable/slab/slab_with_termination.py} +191 -32
  24. mat3ra/esse/models/{materials_category/defects/zero_dimensional/adatom/configuration.py → material/reusable/slab/two_slabs_stack.py} +223 -23
  25. mat3ra/esse/models/{materials_category/defects/zero_dimensional/adatom/base_configuration.py → material/reusable/slab_configuration_with_termination.py} +318 -24
  26. mat3ra/esse/models/{materials_category/defects/slab/configuration.py → material/reusable/stack/slab_configuration_with_termination.py} +199 -18
  27. mat3ra/esse/models/material/reusable/stack/slab_in_stack.py +720 -0
  28. mat3ra/esse/models/material/reusable/stack/stack_of_slabs.py +737 -0
  29. mat3ra/esse/models/material/reusable/stack/stack_of_two_slabs.py +737 -0
  30. mat3ra/esse/models/material/reusable/supercell/supercell_matrix_2d.py +25 -0
  31. mat3ra/esse/models/material/reusable/supercell/supercell_matrix_3d.py +27 -0
  32. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/configuration.py +14 -14
  33. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/configuration.py +14 -14
  34. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/configuration.py +14 -14
  35. mat3ra/esse/models/materials_category/defects/configuration.py +14 -14
  36. mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py +14 -14
  37. mat3ra/esse/models/materials_category/defects/{zero_dimensional/complex/pair.py → two_dimensional/grain_boundary_plane/configuration.py} +163 -497
  38. mat3ra/esse/models/materials_category/defects/two_dimensional/island/condition_json.py +28 -0
  39. mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py +163 -48
  40. mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/configuration.py +130 -130
  41. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py +14 -14
  42. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py +14 -14
  43. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py +14 -14
  44. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py +14 -14
  45. mat3ra/esse/models/materials_category/multi_material/interfaces/configuration.py +737 -0
  46. mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py +17 -21
  47. mat3ra/esse/models/properties_directory/derived_properties.py +11 -11
  48. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +2 -2
  49. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
  50. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
  51. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
  52. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
  53. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +2 -2
  54. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +2 -2
  55. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +2 -2
  56. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +2 -2
  57. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
  58. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
  59. mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
  60. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
  61. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
  62. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
  63. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +2 -2
  64. {mat3ra_esse-2025.5.17.post1.dist-info → mat3ra_esse-2025.5.17.post2.dist-info}/METADATA +1 -1
  65. {mat3ra_esse-2025.5.17.post1.dist-info → mat3ra_esse-2025.5.17.post2.dist-info}/RECORD +74 -61
  66. mat3ra/esse/models/materials_category/defects/enums/atom_placement_method.py +0 -22
  67. mat3ra/esse/models/materials_category/defects/enums/complex_defect_type.py +0 -18
  68. mat3ra/esse/models/materials_category/defects/enums/coordinates_shape.py +0 -21
  69. mat3ra/esse/models/materials_category/defects/enums/slab_defect_type.py +0 -19
  70. mat3ra/esse/models/materials_category/defects/enums.py +0 -13
  71. mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/configuration.py +0 -1105
  72. mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/configuration.py +0 -1026
  73. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/base_configuration.py +0 -30
  74. mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/__init__.py +0 -3
  75. /mat3ra/esse/models/{materials_category/defects/by_host/two_dimensional → core/reusable/coordinate_conditions}/__init__.py +0 -0
  76. /mat3ra/esse/models/{materials_category/defects/slab → material/reusable/coordinate_conditions}/__init__.py +0 -0
  77. /mat3ra/esse/models/{materials_category/defects/two_dimensional/slab_grain_boundary → material/reusable/stack}/__init__.py +0 -0
  78. /mat3ra/esse/models/{materials_category/defects/zero_dimensional/adatom → material/reusable/supercell}/__init__.py +0 -0
  79. /mat3ra/esse/models/materials_category/defects/{zero_dimensional/complex → two_dimensional/grain_boundary_plane}/__init__.py +0 -0
  80. /mat3ra/esse/models/materials_category/{defects/zero_dimensional/defect_pair → multi_material/interfaces}/__init__.py +0 -0
  81. {mat3ra_esse-2025.5.17.post1.dist-info → mat3ra_esse-2025.5.17.post2.dist-info}/WHEEL +0 -0
  82. {mat3ra_esse-2025.5.17.post1.dist-info → mat3ra_esse-2025.5.17.post2.dist-info}/licenses/LICENSE.md +0 -0
  83. {mat3ra_esse-2025.5.17.post1.dist-info → mat3ra_esse-2025.5.17.post2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mat3ra-esse
3
- Version: 2025.5.17.post1
3
+ Version: 2025.5.17.post2
4
4
  Summary: Excellent Source of Schemas and Examples.
5
5
  Author-email: "Exabyte Inc." <info@mat3ra.com>
6
6
  License: # LICENSE
@@ -2,17 +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=Xrc5rv2MmkX-pJnUGs-go_WdFNQAcjgfpubdvszADv0,65467
5
+ mat3ra/esse/data/examples.py,sha256=81JgqrLeBsaQXoX5420k8Ho4OA-VadBTKI9Gs5jP6BY,72446
6
6
  mat3ra/esse/data/properties.py,sha256=geWFIVIJbdn2Q_JG3Mz36oQ_dXeZZwnmlS_NgszvHUY,6099
7
- mat3ra/esse/data/schemas.py,sha256=IaDggGQIugdoSwGXOQlIxdzJTmuIZc7CZqZUT8Y1J-s,1813142
7
+ mat3ra/esse/data/schemas.py,sha256=aqXwFShvA2rX2a4mJBMMPvQXQrySTVQzKPw9N-y4sbI,1963629
8
8
  mat3ra/esse/models/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
9
- mat3ra/esse/models/element.py,sha256=Hms1a2wxd4AOI3b6ht2bjl5KLRZR9W_lk_vaUWhdcv0,2948
9
+ mat3ra/esse/models/coordinates_shape_enum.py,sha256=YePazJ_MnDUPF9IwnaiQza0w0DLPm_WpGImQK3TuKGo,319
10
+ mat3ra/esse/models/element.py,sha256=x-_wbyuTIWxUo2rby0cpGV7FjVQsBA3dQI11ARb7Db0,2948
10
11
  mat3ra/esse/models/project.py,sha256=fqUckRBLyCzVc_77-EtQUg_zFDV_zTYfnLmOoE77zPE,1148
11
12
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
12
13
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/atoms.py,sha256=KJoqkT9hV3J_xJmaHCLx7bAEBxvGxz0_ZC76b9Auu2k,1451
13
14
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/db_entry.py,sha256=U1u7lcPwZCymrEfiOrkjT0nbvDDaiz83LiVUGKtx18s,1909
14
15
  mat3ra/esse/models/apse/file/applications/espresso/7.2/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
15
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py,sha256=fxXOA1ddYqYwOJIZxYUjIJVgSH8FGlllqsyvi5qYrh8,74723
16
+ mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py,sha256=Ivmy8hwsyMar2sofQ1xon1j7CGq5GfK7Caf98qZwqj0,74723
16
17
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
17
18
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/atomic_positions.py,sha256=mnHklX-WdQl7yHBykTvnpid3zOzOVv6fr9kLCIhK85c,1271
18
19
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/atomic_species.py,sha256=DEYl0xPnsY2XIyRIJhvny8BmaKLASkdBbIN1Xc-o--c,1180
@@ -90,11 +91,12 @@ mat3ra/esse/models/core/reusable/atomic_string.py,sha256=HGERo3jqAURe_kWKQS4_fk8
90
91
  mat3ra/esse/models/core/reusable/atomic_strings.py,sha256=wvZwjAKPTfhD1RZk59G6t1-yQZZNpoKWxVca63QAeFo,631
91
92
  mat3ra/esse/models/core/reusable/atomic_vector.py,sha256=_XJEynxYb3CobXK3FX7tacIYBbVM2wdD6PsMPcBhd9M,430
92
93
  mat3ra/esse/models/core/reusable/atomic_vectors.py,sha256=AbeH2EwEG07Pzah_ZTdo9k0HPtZW9wfB-ztybUG1zg4,587
94
+ mat3ra/esse/models/core/reusable/axis_enum.py,sha256=dyVkL-53ONey-3ZUGVGLLAlJahMmT8ketPO1k-Rg4Gg,219
93
95
  mat3ra/esse/models/core/reusable/band_gap.py,sha256=_L79BKX80sAH7ZuyxFSdomJLS2dq4iQJR4lNxe8xBEs,1168
94
96
  mat3ra/esse/models/core/reusable/categories.py,sha256=Z90c6gdSMUdEYwoThEyusMXb5ufqoQh-tISYafPWwME,1350
95
97
  mat3ra/esse/models/core/reusable/category_path.py,sha256=SFyMHOXwrIewKkr4lCZRfSO-oszEx29XEK6TuLJrBtQ,359
96
98
  mat3ra/esse/models/core/reusable/dielectric_tensor_component.py,sha256=_rr6oeTSxUp9iIwaDNt84oeu32_EMXB2vb-MeuxosjY,623
97
- mat3ra/esse/models/core/reusable/energy.py,sha256=DFRgaD8fgL5g47nsFpr2dInji_VKkFEQXlYAGiH-_xk,512
99
+ mat3ra/esse/models/core/reusable/energy.py,sha256=juszF0zIxvqNIEpfRyWHoC6-N9sUv1PX3Fu_0oV1uHk,512
98
100
  mat3ra/esse/models/core/reusable/energy_accuracy_levels.py,sha256=ndCRZOzYZZ-Ok-mjANEKtvOuMSQvE2WzCXqXvrJrNtA,655
99
101
  mat3ra/esse/models/core/reusable/file_metadata.py,sha256=DyPL1zQJR3HTyOGgvQzE7BxasTCkVRffeG_4WKfxf-8,520
100
102
  mat3ra/esse/models/core/reusable/frequency_function_matrix.py,sha256=I4B-ukMJ_aGpP_PHDd63bW8Jav1mreGeMiLqtrElIno,429
@@ -105,6 +107,14 @@ mat3ra/esse/models/core/reusable/atomic_data/per_orbital.py,sha256=pd3oG1FfLevoA
105
107
  mat3ra/esse/models/core/reusable/atomic_data/per_orbital_pair.py,sha256=gLJkxLpRfNAixmVV1LCz-UHp-C55iq7SM7QJQnFSLWM,919
106
108
  mat3ra/esse/models/core/reusable/atomic_data/value_number.py,sha256=nEF8VBqob3JNGFogaJsaHWOchl_lGyh9MHDbFLF4h78,376
107
109
  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/base.py,sha256=L7zYSATgDrli55qZhAutLnzOUXCp1PqTxL8-0XRO940,497
112
+ mat3ra/esse/models/core/reusable/coordinate_conditions/box.py,sha256=MldQtO6zNM-C40C4EKR8k4p29RaGGJh_Hc8N2gCTfX8,733
113
+ mat3ra/esse/models/core/reusable/coordinate_conditions/cylinder.py,sha256=x9f179N27Ix8Djbj7MI_8XRkg02aMRNftZZclGV6-SU,721
114
+ mat3ra/esse/models/core/reusable/coordinate_conditions/enum.py,sha256=qlOpxIW7i5SowG5-rLSz6DAqIOlIIvPrQyqYMGoZmCQ,337
115
+ mat3ra/esse/models/core/reusable/coordinate_conditions/plane.py,sha256=hZHVpkgFEhuzuMXlvgsO7vntA1BGe_hm2W6pZWfkQ74,741
116
+ mat3ra/esse/models/core/reusable/coordinate_conditions/sphere.py,sha256=-ZyoNpJTqu6i0EcWpV2t7n7OBuyFaGlICJFPbwpWsyk,660
117
+ mat3ra/esse/models/core/reusable/coordinate_conditions/triangular_prism.py,sha256=JW6AQQFLK_mLfh3HQjSdQsIe409XHLzmyCjGCjrft08,929
108
118
  mat3ra/esse/models/core/reusable/energy_accuracy_levels/__init__.py,sha256=A62Az-FUlQtAtprjSTr4WDHA1Xgan5YN8H9u_8yLEq4,78
109
119
  mat3ra/esse/models/core/reusable/energy_accuracy_levels/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
110
120
  mat3ra/esse/models/core/reusable/energy_accuracy_levels/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py,sha256=rMNirWgvD2MCc8jWTZmXCDEbKOcBl4Do5-R9W-mJIM4,652
@@ -126,7 +136,7 @@ mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7
126
136
  mat3ra/esse/models/job/__init__.py,sha256=tQXT9GQRHDoVyW9AmI_Sjkqg78fkKSb4tL6TmWn--m4,64815
127
137
  mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
128
138
  mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
129
- mat3ra/esse/models/material/__init__.py,sha256=sghqE-Le2uLd6CMHeQs3Yyh-aqnab61msLCxCT0Vprw,11681
139
+ mat3ra/esse/models/material/__init__.py,sha256=obWZRNO8eMaQdWsk3rB6TDnwo4Bv7qQv68V7QNjkTy8,11681
130
140
  mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
131
141
  mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
132
142
  mat3ra/esse/models/material/builders/base/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -136,63 +146,66 @@ mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/builde
136
146
  mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py,sha256=1RpA1SmyVMGZOcOwW30Vl470e2nQFJNKhUSvyQBKmRo,2611
137
147
  mat3ra/esse/models/material/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
138
148
  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
139
150
  mat3ra/esse/models/material/reusable/supercell_matrix_2d.py,sha256=Ul--ruw2s6JRVwu4y6M-YKSZBmZb6uI-pfC-Ua0ZWus,722
140
151
  mat3ra/esse/models/material/reusable/supercell_matrix_3d.py,sha256=tqKLcZyV3zaSq2I4dZR6mVB-EMoykMvOh-lBaKh_cZc,784
152
+ mat3ra/esse/models/material/reusable/coordinate_conditions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
153
+ mat3ra/esse/models/material/reusable/coordinate_conditions/base.py,sha256=hJ1d7RipRxjQAa3X1mCLqJQDb7c_J75WZsjwRhjPHeI,501
154
+ mat3ra/esse/models/material/reusable/coordinate_conditions/box.py,sha256=rmBBYJxNHm88JwLWt9dophRNDAJspUNNsPEs1_rUR5s,677
155
+ mat3ra/esse/models/material/reusable/coordinate_conditions/cylinder.py,sha256=qyI2xEO47u69sW-Fytbzw7vfyA2PuTd5aMnp_EZ6drs,744
156
+ mat3ra/esse/models/material/reusable/coordinate_conditions/plane.py,sha256=E-ty2O5JCPWlM4kQu4phYeNxk-GJiegV6kwi6h7ixfI,689
157
+ mat3ra/esse/models/material/reusable/coordinate_conditions/sphere.py,sha256=TzA9skQ5GOEItZjlp3S2qCylZAhGFa6ZdF6qf3LJyuQ,676
158
+ mat3ra/esse/models/material/reusable/coordinate_conditions/triangular_prism.py,sha256=5opNLpzZj2s_v_gUHROv-joE6sfG-Sx2hMky3-fzz3Y,843
141
159
  mat3ra/esse/models/material/reusable/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
142
160
  mat3ra/esse/models/material/reusable/slab/enums.py,sha256=ahZsneu0LQal4eYK3wo1YbFZKogytxYYMm0DEh8e4KQ,252
143
161
  mat3ra/esse/models/material/reusable/slab/miller_indices.py,sha256=FIqFq2U34Q0g5zA8QF9twGHEc3vbkeyJb8fcexQJn8Q,467
144
162
  mat3ra/esse/models/material/reusable/slab/number_of_layers.py,sha256=-tw5Z2q1eIXe3rm3XOCI_ux31QS6463sb3n0qHQ8Tkc,440
163
+ mat3ra/esse/models/material/reusable/slab/slab_configuration_with_termination.py,sha256=toHZlEtuVcKXTBt_aKg8bveYrsFu3NgijUmoEYcG9xI,13776
164
+ mat3ra/esse/models/material/reusable/slab/slab_with_termination.py,sha256=Z10EKD_ijcMTcNdzrB_E4a9qakwzUICe0a76EfftsCQ,13835
145
165
  mat3ra/esse/models/material/reusable/slab/termination.py,sha256=-Zh961QVKipjdbEgcD5Ddqjyftyo0ikNNiUl9334rEo,2364
166
+ mat3ra/esse/models/material/reusable/slab/two_slabs_stack.py,sha256=VEfVT6nel6uuC75bCHKMSwE7FsUerc_JvXVSm9QcKdo,14474
146
167
  mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=GlJFBUUYc8JP-zqdLXaUf899-3fy1X2p_sdzbpwPlw8,421
147
168
  mat3ra/esse/models/material/reusable/slab/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
148
169
  mat3ra/esse/models/material/reusable/slab/enums/exposed_face.py,sha256=-MUlEELT-ec-0XtmZrsrs2HVviP-ITmhxJYiR_1ab5M,268
170
+ mat3ra/esse/models/material/reusable/stack/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
171
+ 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/stack_of_slabs.py,sha256=d22cbirT2w3JLMkb6cyBAtj-_I1-RqOQKtnwG4Jp80w,16206
174
+ mat3ra/esse/models/material/reusable/stack/stack_of_two_slabs.py,sha256=2r5ahhJxqdxiI0DlQ0ZynOCc3zmMq7_7S0t7VehzzSQ,16227
175
+ mat3ra/esse/models/material/reusable/supercell/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
176
+ mat3ra/esse/models/material/reusable/supercell/supercell_matrix_2d.py,sha256=0mPs-IG3peUVWwcGXg_t9dPFF5mEdbAFT4BFJQuxUBk,732
177
+ mat3ra/esse/models/material/reusable/supercell/supercell_matrix_3d.py,sha256=Xk7UJOANBV7jtdidt39h4cOpadjl_itd83l5G6zDQgI,794
149
178
  mat3ra/esse/models/materials_category/defects/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
150
- mat3ra/esse/models/materials_category/defects/configuration.py,sha256=_tkMnpsyQ1YggJXHIXUiNGRO8bUzIu0E8Ff5S72eFp8,12064
151
- mat3ra/esse/models/materials_category/defects/enums.py,sha256=mRxMaTANr1UiHyO2zBN2j5OchPCCf8FGOTKV1Ja6cSQ,245
152
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
153
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/configuration.py,sha256=e2ktSVdRIeVqA0t1qn2OPR60DUvvtTOeCUvrvJ0Tgjw,12302
179
+ mat3ra/esse/models/materials_category/defects/configuration.py,sha256=x76zm65ZyoN_DEeW0670npXC8YMnVqn7Sq8w4_brBPM,12068
154
180
  mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
155
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/configuration.py,sha256=wo9ul3W33KXnPFaC7jCrXZ8C6ZqBR5FawAiNeq7J2Sc,14018
181
+ mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/configuration.py,sha256=2M201dD4MklthjHH_cRoHhZlQfq-q95mnJeP8_RmaQI,14018
156
182
  mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
157
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/configuration.py,sha256=3tnsqhI-MkC6rtLgmAWlZJCTMFVUgU1z-vkRokFaB2M,12282
183
+ mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/configuration.py,sha256=wUbdpvnBiX6GkKi0MEbN_rFqUHoNNQEgGN2iPUP9khk,12282
158
184
  mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
159
- mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/configuration.py,sha256=aHvKbUTrwCBx4wPsqjcwygwLtt-EiiaF1HT-pKPCe2Y,12308
185
+ mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/configuration.py,sha256=8XPz4OHhV4Gsv1PGHxzq22AzdIjF4tia0XYSdEgG7D8,12308
160
186
  mat3ra/esse/models/materials_category/defects/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
161
- mat3ra/esse/models/materials_category/defects/enums/atom_placement_method.py,sha256=r2_0uqfUU5oq8EYwX9DJ387FkliyMI7g3ys1DmvdxKs,555
162
- mat3ra/esse/models/materials_category/defects/enums/complex_defect_type.py,sha256=v9IU5XENca1s9-dezzmRxAQT-rtcUdBnHAU0DBkQJAY,399
163
- mat3ra/esse/models/materials_category/defects/enums/coordinates_shape.py,sha256=gedgLkXg_RWGe1LvRx1QsXoqblZ6jdBIjb2h5VxPrc4,493
164
187
  mat3ra/esse/models/materials_category/defects/enums/point_defect_type.py,sha256=Wsg5UOsO9cvpuATN0RMPIwuo8DsEBCQDa2X4pez22Ho,313
165
- mat3ra/esse/models/materials_category/defects/enums/slab_defect_type.py,sha256=zbxuqPNU-KCFelxM1iLHNvKGpq0Dhb9fKxfIbf85lvc,412
166
188
  mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
167
- mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py,sha256=U4faSoWiNE22Dh11pRUdbVsyebPOqbreclG0QzhHXmc,12794
168
- mat3ra/esse/models/materials_category/defects/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
169
- mat3ra/esse/models/materials_category/defects/slab/configuration.py,sha256=6yZFhYuWyfuYj8Y-VpDf0o52MMbzbf-o_gVrEIZXZhQ,10258
189
+ mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py,sha256=nLnMwm_Dc4mYHYP3Yrz0qooqje38fOwaAecuXuf2jWE,12798
190
+ 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
170
192
  mat3ra/esse/models/materials_category/defects/two_dimensional/island/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
171
- mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py,sha256=DwPZF0zzH4Lsit8dwP958kWLRi1eY1jPgMPH9zd4Trs,11602
172
- mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
173
- mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/configuration.py,sha256=bOzQGR95bH5ZSiZFh-D9TEumK2cLqhbtKlQh2An3eJM,29926
174
- mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
175
- mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/base_configuration.py,sha256=-U147Otr9n7CED5TKyejcaH8fLXPkCUIBoPjr5EThvA,10456
176
- mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/configuration.py,sha256=gr70EtIa9rnmFuoEh2mmm6m_Jj3o1QTExS8u2pu9rOU,10431
177
- mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
178
- mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair.py,sha256=FqxYnlPdufEQPg4wnMKgZKBCX8pc660uffyu0OF0JKo,33469
193
+ mat3ra/esse/models/materials_category/defects/two_dimensional/island/condition_json.py,sha256=RnKPBWrycEr-fU4X7NKZ1tdRlYFcFM-y4cW44rb_wrE,863
194
+ mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py,sha256=ESb5xFkiXH42aqIltQQ-9WEJyYqIuY5g63AcwWESjks,12817
179
195
  mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
180
- mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/configuration.py,sha256=nqk56wI5KdWhLOTchXqYSjDLC4QvjJcZo4ch4Ijteds,33488
181
- mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
182
- mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/configuration.py,sha256=P1pZbjMW3spvK0YHUrl3IJP_VojjHYmtgSUTiU7Mzhc,26775
196
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/configuration.py,sha256=lS0TGkwNhfpFlSHoCLpVbqsPCaQbVbzwL0oFnsc4_3s,33490
183
197
  mat3ra/esse/models/materials_category/defects/zero_dimensional/point/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
184
- mat3ra/esse/models/materials_category/defects/zero_dimensional/point/base_configuration.py,sha256=v9wGMjyrHcAl1TVuDl-aMWP-QIsfzM1lczo-dE8MeaY,870
185
- mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py,sha256=DVj-c-pjGHC0IHeJV_LtDr6DY2KDwju82YSHPy7gNjw,13995
198
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py,sha256=8yrw_WxsGg_s8b5gPV_5OF26gDj0mgNx8jzV-Spcc8c,13995
186
199
  mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
187
- mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py,sha256=wVZXQ95fl1SqGdG8IZ_XsapK0F_stpisAHsE1xIwvd8,14040
200
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py,sha256=K-wsFIFxJI3_WtH6ZdhV3yIRD5yKV4nsn4yMB3BJq1o,14040
188
201
  mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
189
- mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py,sha256=b9wb3ItMViWAOtJfzjgyXNIOo6uejjzDdMO2II-rqCA,14040
202
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py,sha256=tlfIMAonNwQLv4Jax_xssBR8vEE0yThxplwdCbVoy8o,14044
190
203
  mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
191
- mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py,sha256=D59m3KrC70p3fsGfs4aptWlGakwkwdqb-Fhrpw3tiBc,14025
192
- mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
193
- mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/configuration.py,sha256=a-ib5sO9Sjn1PlbK0_kYBBonzJtbfnK6aaCeh0jOWlE,11018
204
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py,sha256=piucwaXcimn031aiU_1A17bwPhpcx35pPeNC9z-lc60,14025
205
+ 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
194
207
  mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
195
- mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=0QVJSyJiOQ7q2s3K5xpySZixALHonNIcqEPsyGMWVNw,13169
208
+ mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=gG-dtEKQPSJgGFIjTu41er0By7B1iVFMWE2qiIMU2OI,13098
196
209
  mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
197
210
  mat3ra/esse/models/method/categorized_method.py,sha256=f2dQIPERDoY61WL-KR_6dmAftRyPv_d_J6XSaV5yjqE,2479
198
211
  mat3ra/esse/models/method/method_parameters.py,sha256=CH4qkchLAsq_L0iaet5dESnbTePbQYfXK47U8MemrxQ,1086
@@ -372,7 +385,7 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
372
385
  mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
373
386
  mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
374
387
  mat3ra/esse/models/properties_directory/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
375
- mat3ra/esse/models/properties_directory/derived_properties.py,sha256=h0ciA1j-gYv5NmMgkS_jUPwWEjP2aGTWaAUCKxZ8YxY,3017
388
+ mat3ra/esse/models/properties_directory/derived_properties.py,sha256=MHZ3KILXoHX7zndLxRc_eQF2XfWHVGpf2FQy6i1Pea0,3017
376
389
  mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
377
390
  mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
378
391
  mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=VsSKIbLYl9GseztXyzggDAMyMH0qJ3s_9IS8lxYKz88,591
@@ -383,31 +396,31 @@ mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,
383
396
  mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=7ypgPAH8RgGlntishJctQeAFDsjBUbSoZ0GfRwue85I,1817
384
397
  mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=W7-ZbbqDqEC42glSrpzvR__UvKeEA7rWEM5kDrp97BY,1588
385
398
  mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py,sha256=PSA9V0WCP0Zur_OmzFPLD_3X8Ovttl1z4yzMeWBDOy8,1295
386
- mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=lIhWo5nqYhFC0UPUJiZAgibJd7til8Pnkg-458EnB_I,2010
399
+ mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=DyAUqsNcbX84B40HKlhuxzb-iiZ4LgYnHOCaIVtD0FE,2010
387
400
  mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_1KlHVqxzjgh9Z36kpsjeHRi-SsjxhmLWt8wMYi_6rc,807
388
401
  mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkzH_EQ-aViO7aCxhPgNDXIAr2MqfF6vQfZaC6pc,1429
389
402
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
390
403
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
391
404
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py,sha256=xDW1U9JsHKdoPZlTPmm-mDepEqHoOEomQNFDc1pPtbk,1278
392
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=rHBAGj-_5A9_J6vQtVTWz52iC-A26yxHPfqLYsX97cA,1382
393
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=lY4ZBIIsT9S2b1ZN1WrHDjwghlOEA4hchFyG94zWOIY,1403
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
394
407
  mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
395
408
  mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
396
409
  mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py,sha256=dFsa5qUQo8PDiZG_tZ-DQX7YiXflvb_gcGQHm9NXmMc,758
397
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=DbXdDplNDkUphZRCtdaiW3RCFzqOqEMmFsmUJ24gbP4,4464
398
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=hqavnipM00I40hCxjKcm4JvwKJcrNcjx2dYrS38ZDiY,1562
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
399
412
  mat3ra/esse/models/properties_directory/scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
400
- mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=I7B0fOArCkB-ow4zQ1CsirDmi_CNcb18bgjacHGcylQ,612
401
- mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=fB3LGSf4YkQFi5vuJIUxvH2plvB19tpr2gL6fG3KwV0,592
402
- mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=0nRb240Ql1936Es_Nh5X3WEq96U8yiN9SGrE6OGrOJ4,608
403
- mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=DvvOduED9zGYBq3UPA1tUjcXPVbN4VpjAnKIKo5H6V8,624
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
404
417
  mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=I6OrUOgvCUmXr1dD7Gfn17wAObEWVJW5vy6bdHf5qYE,443
405
- mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=4vtnFkt7Jp5skNV7PmHUgZyhQqukfYyVsVabYEwFs-U,635
406
- mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=D9lj_htWJ3rWRtSYwWbtr4NFzDt-XiHkJvagovKaj1U,600
407
- mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=8LK6JUM2cyDWywworErNIruRdzCnt8wltF0LzhpNdbM,592
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
408
421
  mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=l8X_eaNZNgm5rT_vEsNm5uaxBhAs3zGAcY-3MQHKLss,581
409
- mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=-qmHf70tn52t9YFTRaUxUYj1ZQbmBCxuN8-14VZPFps,619
410
- mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=67Sykp-GWQ7BqzBM-eAIWI8OEww71hx6Iy-yw-pDjmg,613
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
411
424
  mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
412
425
  mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
413
426
  mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
@@ -415,7 +428,7 @@ mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP
415
428
  mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
416
429
  mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
417
430
  mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=sgvKUcrr5iVhWTbalWt_-aGxUo9MFU9qLivCfmbr-nI,774
418
- mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=PMD6kvbyBnmulByWpV-CnpjUZaAadAhVqbEFST_97Eo,1793
431
+ mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=UIhwS2W9vO_dO63P60NlscUJHnYq9YkUx6PEal9u77k,1793
419
432
  mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
420
433
  mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
421
434
  mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
@@ -447,7 +460,7 @@ mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=vZ7ts
447
460
  mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=KnVmYAti3CfLIds1wVM8qW_cN75VGGdWQ7Ew3VFPpSE,742
448
461
  mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
449
462
  mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=MuMgO1Gq1285cvnjASCcFsHOD2ArcSjrV2OOWISF-M4,558
450
- mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=ZJB2Kf-3McB_u_4hktv0eIS-iWPnk8nP5K_fEXTcp7M,1306
463
+ mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=llKFUs2fVXFZ14WOW3rzZewKOH1UH7TFSHIpNgl0dd4,1306
451
464
  mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
452
465
  mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
453
466
  mat3ra/esse/models/property/base.py,sha256=mb5Q1XgYt7WrFhUir0O99ufQNzhiJog0yfoqECokquA,5003
@@ -584,8 +597,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
584
597
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
585
598
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
586
599
  mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
587
- mat3ra_esse-2025.5.17.post1.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
588
- mat3ra_esse-2025.5.17.post1.dist-info/METADATA,sha256=PShK4ocKaiGbn56R2xgEC93aIbBFql8vMVveLV6Fs8M,9000
589
- mat3ra_esse-2025.5.17.post1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
590
- mat3ra_esse-2025.5.17.post1.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
591
- mat3ra_esse-2025.5.17.post1.dist-info/RECORD,,
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,,
@@ -1,22 +0,0 @@
1
- # generated by datamodel-codegen:
2
- # filename: materials_category/defects/enums/atom_placement_method.json
3
- # version: 0.28.5
4
-
5
- from __future__ import annotations
6
-
7
- from enum import Enum
8
- from typing import Optional
9
-
10
- from pydantic import BaseModel
11
-
12
-
13
- class AtomPlacementMethod(Enum):
14
- coordinate = "coordinate"
15
- closest_site = "closest_site"
16
- equidistant = "equidistant"
17
- crystal_site = "crystal_site"
18
- voronoi_site = "voronoi_site"
19
-
20
-
21
- class AtomPlacementMethodEnum(BaseModel):
22
- atomPlacementMethod: Optional[AtomPlacementMethod] = None
@@ -1,18 +0,0 @@
1
- # generated by datamodel-codegen:
2
- # filename: materials_category/defects/enums/complex_defect_type.json
3
- # version: 0.28.5
4
-
5
- from __future__ import annotations
6
-
7
- from enum import Enum
8
- from typing import Optional
9
-
10
- from pydantic import BaseModel
11
-
12
-
13
- class ComplexDefectType(Enum):
14
- pair = "pair"
15
-
16
-
17
- class ComplexDefectTypeEnum(BaseModel):
18
- complexDefectType: Optional[ComplexDefectType] = None
@@ -1,21 +0,0 @@
1
- # generated by datamodel-codegen:
2
- # filename: materials_category/defects/enums/coordinates_shape.json
3
- # version: 0.28.5
4
-
5
- from __future__ import annotations
6
-
7
- from enum import Enum
8
- from typing import Optional
9
-
10
- from pydantic import BaseModel
11
-
12
-
13
- class CoordinatesShape(Enum):
14
- sphere = "sphere"
15
- cylinder = "cylinder"
16
- rectangle = "rectangle"
17
- triangular_prism = "triangular_prism"
18
-
19
-
20
- class CoordinatesShapeEnum(BaseModel):
21
- coordinatesShape: Optional[CoordinatesShape] = None
@@ -1,19 +0,0 @@
1
- # generated by datamodel-codegen:
2
- # filename: materials_category/defects/enums/slab_defect_type.json
3
- # version: 0.28.5
4
-
5
- from __future__ import annotations
6
-
7
- from enum import Enum
8
- from typing import Optional
9
-
10
- from pydantic import BaseModel
11
-
12
-
13
- class SlabDefectType(Enum):
14
- island = "island"
15
- terrace = "terrace"
16
-
17
-
18
- class SlabDefectTypeEnum(BaseModel):
19
- slabDefectType: Optional[SlabDefectType] = None
@@ -1,13 +0,0 @@
1
- # generated by datamodel-codegen:
2
- # filename: materials_category/defects/enums.json
3
- # version: 0.28.5
4
-
5
- from __future__ import annotations
6
-
7
- from typing import Any
8
-
9
- from pydantic import RootModel
10
-
11
-
12
- class ESSE(RootModel[Any]):
13
- root: Any