mat3ra-esse 2025.5.17.post1__py3-none-any.whl → 2025.6.5.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 (125) 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/coordinates_shape_enum.py +15 -0
  6. mat3ra/esse/models/core/primitive/array_of_3_integers.py +13 -0
  7. mat3ra/esse/models/core/reusable/axis_enum.py +13 -0
  8. mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py +31 -0
  9. mat3ra/esse/models/core/reusable/coordinate_conditions/base.py +21 -0
  10. mat3ra/esse/models/core/reusable/coordinate_conditions/box.py +24 -0
  11. mat3ra/esse/models/core/reusable/coordinate_conditions/cylinder.py +26 -0
  12. mat3ra/esse/models/core/reusable/coordinate_conditions/enum.py +15 -0
  13. mat3ra/esse/models/core/reusable/coordinate_conditions/plane.py +24 -0
  14. mat3ra/esse/models/core/reusable/coordinate_conditions/sphere.py +24 -0
  15. mat3ra/esse/models/core/reusable/coordinate_conditions/triangular_prism.py +27 -0
  16. mat3ra/esse/models/core/reusable/energy.py +2 -2
  17. mat3ra/esse/models/element.py +6 -6
  18. mat3ra/esse/models/material/__init__.py +14 -14
  19. mat3ra/esse/models/material/reusable/coordinate_conditions/base.py +21 -0
  20. mat3ra/esse/models/material/reusable/coordinate_conditions/box.py +24 -0
  21. mat3ra/esse/models/material/reusable/coordinate_conditions/cylinder.py +26 -0
  22. mat3ra/esse/models/material/reusable/coordinate_conditions/plane.py +24 -0
  23. mat3ra/esse/models/material/reusable/coordinate_conditions/sphere.py +24 -0
  24. mat3ra/esse/models/material/reusable/coordinate_conditions/triangular_prism.py +27 -0
  25. mat3ra/esse/models/material/reusable/slab/slab_configuration_with_termination.py +589 -0
  26. mat3ra/esse/models/material/reusable/slab/slab_with_termination.py +593 -0
  27. mat3ra/esse/models/material/reusable/slab/two_slabs_stack.py +618 -0
  28. mat3ra/esse/models/material/reusable/slab_configuration_with_termination.py +712 -0
  29. mat3ra/esse/models/material/reusable/stack/slab_configuration_with_termination.py +593 -0
  30. mat3ra/esse/models/material/reusable/stack/slab_in_stack.py +720 -0
  31. mat3ra/esse/models/material/reusable/stack/stack_of_slabs.py +737 -0
  32. mat3ra/esse/models/material/reusable/stack/stack_of_two_slabs.py +737 -0
  33. mat3ra/esse/models/material/reusable/supercell/supercell_matrix_2d.py +25 -0
  34. mat3ra/esse/models/material/reusable/supercell/supercell_matrix_3d.py +27 -0
  35. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/configuration.py +14 -14
  36. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/configuration.py +14 -14
  37. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/configuration.py +14 -14
  38. mat3ra/esse/models/materials_category/defects/configuration.py +14 -14
  39. mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py +14 -14
  40. mat3ra/esse/models/materials_category/defects/{zero_dimensional/complex/pair.py → two_dimensional/grain_boundary_plane/configuration.py} +163 -497
  41. mat3ra/esse/models/materials_category/defects/two_dimensional/island/condition_json.py +28 -0
  42. mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py +163 -48
  43. mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/configuration.py +130 -130
  44. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py +14 -14
  45. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py +14 -14
  46. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py +14 -14
  47. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py +14 -14
  48. mat3ra/esse/models/materials_category/multi_material/interfaces/configuration.py +737 -0
  49. mat3ra/esse/models/materials_category/{defects/slab/configuration.py → pristine_structures/three_dimensional/ideal_crystal.py} +142 -24
  50. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +730 -0
  51. mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py +17 -21
  52. mat3ra/esse/models/materials_category_components/entities/auxiliary/three_dimensional/__init__.py +3 -0
  53. mat3ra/esse/models/materials_category_components/entities/auxiliary/three_dimensional/supercell_matrix_3d.py +27 -0
  54. mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/__init__.py +3 -0
  55. mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/miller_indices.py +16 -0
  56. mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/supercell_matrix_2d.py +25 -0
  57. mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/termination.py +144 -0
  58. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/__init__.py +3 -0
  59. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py +13 -0
  60. mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/__init__.py +3 -0
  61. mat3ra/esse/models/{materials_category/defects/zero_dimensional/slab/configuration.py → materials_category_components/entities/core/three_dimensional/crystal.py} +142 -46
  62. mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/void.py +32 -0
  63. mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/__init__.py +3 -0
  64. mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py +27 -0
  65. mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/__init__.py +3 -0
  66. mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/atom.py +134 -0
  67. mat3ra/esse/models/materials_category_components/entities/reusable/__init__.py +3 -0
  68. mat3ra/esse/models/materials_category_components/entities/reusable/repetitions.py +25 -0
  69. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/__init__.py +3 -0
  70. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py +544 -0
  71. mat3ra/esse/models/{materials_category/defects/zero_dimensional/adatom/base_configuration.py → materials_category_components/entities/reusable/three_dimensional/strained_uniform.py} +147 -24
  72. mat3ra/esse/models/{materials_category/defects/zero_dimensional/adatom/configuration.py → materials_category_components/entities/reusable/three_dimensional/supercell.py} +150 -26
  73. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/__init__.py +3 -0
  74. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers.py +683 -0
  75. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique.py +683 -0
  76. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique_repeated.py +687 -0
  77. mat3ra/esse/models/{materials_category/defects/by_host/two_dimensional/configuration.py → materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py} +23 -28
  78. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_unit_cell.py +717 -0
  79. mat3ra/esse/models/materials_category_components/operations/core/combinations/__init__.py +3 -0
  80. mat3ra/esse/models/materials_category_components/operations/core/combinations/merge.py +583 -0
  81. mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py +555 -0
  82. mat3ra/esse/models/materials_category_components/operations/core/combinations/stack_component.py +554 -0
  83. mat3ra/esse/models/materials_category_components/operations/core/modifications/__init__.py +3 -0
  84. mat3ra/esse/models/materials_category_components/operations/core/modifications/repeat.py +27 -0
  85. mat3ra/esse/models/materials_category_components/operations/core/modifications/strain.py +19 -0
  86. mat3ra/esse/models/properties_directory/derived_properties.py +11 -11
  87. mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py +2 -2
  88. mat3ra/esse/models/properties_directory/non_scalar/band_structure.py +2 -2
  89. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +2 -2
  90. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
  91. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
  92. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
  93. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
  94. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +2 -2
  95. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +2 -2
  96. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +2 -2
  97. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +2 -2
  98. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
  99. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
  100. mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
  101. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
  102. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
  103. mat3ra/esse/models/properties_directory/structural/basis/__init__.py +2 -2
  104. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
  105. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +2 -2
  106. {mat3ra_esse-2025.5.17.post1.dist-info → mat3ra_esse-2025.6.5.post0.dist-info}/METADATA +1 -1
  107. {mat3ra_esse-2025.5.17.post1.dist-info → mat3ra_esse-2025.6.5.post0.dist-info}/RECORD +117 -65
  108. {mat3ra_esse-2025.5.17.post1.dist-info → mat3ra_esse-2025.6.5.post0.dist-info}/WHEEL +1 -1
  109. mat3ra/esse/models/materials_category/defects/enums/atom_placement_method.py +0 -22
  110. mat3ra/esse/models/materials_category/defects/enums/complex_defect_type.py +0 -18
  111. mat3ra/esse/models/materials_category/defects/enums/coordinates_shape.py +0 -21
  112. mat3ra/esse/models/materials_category/defects/enums/slab_defect_type.py +0 -19
  113. mat3ra/esse/models/materials_category/defects/enums.py +0 -13
  114. mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/configuration.py +0 -1105
  115. mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/configuration.py +0 -1026
  116. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/base_configuration.py +0 -30
  117. /mat3ra/esse/models/{materials_category/defects/by_host/two_dimensional → material/reusable/coordinate_conditions}/__init__.py +0 -0
  118. /mat3ra/esse/models/{materials_category/defects/slab → material/reusable/stack}/__init__.py +0 -0
  119. /mat3ra/esse/models/{materials_category/defects/two_dimensional/slab_grain_boundary → material/reusable/supercell}/__init__.py +0 -0
  120. /mat3ra/esse/models/materials_category/defects/{zero_dimensional/adatom → two_dimensional/grain_boundary_plane}/__init__.py +0 -0
  121. /mat3ra/esse/models/materials_category/{defects/zero_dimensional/complex → multi_material/interfaces}/__init__.py +0 -0
  122. /mat3ra/esse/models/materials_category/{defects/zero_dimensional/defect_pair → pristine_structures/three_dimensional}/__init__.py +0 -0
  123. /mat3ra/esse/models/materials_category/{defects/zero_dimensional/slab → pristine_structures/two_dimensional}/__init__.py +0 -0
  124. {mat3ra_esse-2025.5.17.post1.dist-info → mat3ra_esse-2025.6.5.post0.dist-info}/licenses/LICENSE.md +0 -0
  125. {mat3ra_esse-2025.5.17.post1.dist-info → mat3ra_esse-2025.6.5.post0.dist-info}/top_level.txt +0 -0
@@ -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=7HYWRVx6hI9pNLEvpW1RZbPF_nrhVuw_3UYZrmD7IGw,55540
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=b8UItIb2rwut4MY2UYhqWWEx_YFGSJLxM34YjCuoNO4,1836026
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=n_06XRiBOS9Tq_z08YGu5_nZDuqLnkxsfAe9mqYON2s,2944
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=Pp3HsT4SoBr5q-axD55yPxQJtis4NrgLaxGCQlgB-9k,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
@@ -25,7 +26,7 @@ mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/ions.py,sha256=CH5m4
25
26
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/k_points.py,sha256=N2fxAVS3Bt-bwIpslNqyrQb2f3mCXY_S6Uc4heCz19E,1602
26
27
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/system.py,sha256=k1G0aNawyd6Y1gPWeH4tFZxpd5wNXwpQiwMQMHUEI5k,34350
27
28
  mat3ra/esse/models/apse/materials/builders/slab/pymatgen/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
28
- mat3ra/esse/models/apse/materials/builders/slab/pymatgen/parameters.py,sha256=vDb3Blhx1f0U-E6p325SaZS6c8FeGzsUdub_DQjPY0o,728
29
+ mat3ra/esse/models/apse/materials/builders/slab/pymatgen/parameters.py,sha256=P-6jXpG84bAsOMnr0EBSV-20MHpGViZOjcKSJqLVqxc,785
29
30
  mat3ra/esse/models/core/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
30
31
  mat3ra/esse/models/core/abstract/2d_data.py,sha256=QiWkaGXriph7QwLWF3LuRddSal7fLEakNMh2DkuCNCc,426
31
32
  mat3ra/esse/models/core/abstract/2d_plot.py,sha256=q2qJuDQ10UtiJvZcGzWWv9T9qHJ8HwP-kING3w6cUWM,812
@@ -52,6 +53,7 @@ mat3ra/esse/models/core/primitive/_1d_data_series.py,sha256=axKdgsXgeF95sKcBtWKS
52
53
  mat3ra/esse/models/core/primitive/_3d_lattice.py,sha256=B1V-vJnQ0_l4vvijdYBAiAzgxJS2mdLdsAukJibxjxg,673
53
54
  mat3ra/esse/models/core/primitive/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
54
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
55
57
  mat3ra/esse/models/core/primitive/array_of_3_numbers.py,sha256=VjCYsMasQYN1agkBJelaVsBY3NK-fyuS0OobMGHjoNY,378
56
58
  mat3ra/esse/models/core/primitive/array_of_ids.py,sha256=JMTCZGq743-t61SNqFqPNX26yZNZ5I9APKoZ23_1z6w,484
57
59
  mat3ra/esse/models/core/primitive/array_of_strings.py,sha256=j8hck6B4rcpNc801v5shjFiwtWVXMX1e_kFr7WNfMpo,370
@@ -90,11 +92,12 @@ mat3ra/esse/models/core/reusable/atomic_string.py,sha256=HGERo3jqAURe_kWKQS4_fk8
90
92
  mat3ra/esse/models/core/reusable/atomic_strings.py,sha256=wvZwjAKPTfhD1RZk59G6t1-yQZZNpoKWxVca63QAeFo,631
91
93
  mat3ra/esse/models/core/reusable/atomic_vector.py,sha256=_XJEynxYb3CobXK3FX7tacIYBbVM2wdD6PsMPcBhd9M,430
92
94
  mat3ra/esse/models/core/reusable/atomic_vectors.py,sha256=AbeH2EwEG07Pzah_ZTdo9k0HPtZW9wfB-ztybUG1zg4,587
95
+ mat3ra/esse/models/core/reusable/axis_enum.py,sha256=dyVkL-53ONey-3ZUGVGLLAlJahMmT8ketPO1k-Rg4Gg,219
93
96
  mat3ra/esse/models/core/reusable/band_gap.py,sha256=_L79BKX80sAH7ZuyxFSdomJLS2dq4iQJR4lNxe8xBEs,1168
94
97
  mat3ra/esse/models/core/reusable/categories.py,sha256=Z90c6gdSMUdEYwoThEyusMXb5ufqoQh-tISYafPWwME,1350
95
98
  mat3ra/esse/models/core/reusable/category_path.py,sha256=SFyMHOXwrIewKkr4lCZRfSO-oszEx29XEK6TuLJrBtQ,359
96
99
  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
100
+ mat3ra/esse/models/core/reusable/energy.py,sha256=ZlYKLdxiljlWW5MWiW-tj-7RJPFlsSRpFsV6QgwEJD0,512
98
101
  mat3ra/esse/models/core/reusable/energy_accuracy_levels.py,sha256=ndCRZOzYZZ-Ok-mjANEKtvOuMSQvE2WzCXqXvrJrNtA,655
99
102
  mat3ra/esse/models/core/reusable/file_metadata.py,sha256=DyPL1zQJR3HTyOGgvQzE7BxasTCkVRffeG_4WKfxf-8,520
100
103
  mat3ra/esse/models/core/reusable/frequency_function_matrix.py,sha256=I4B-ukMJ_aGpP_PHDd63bW8Jav1mreGeMiLqtrElIno,429
@@ -105,6 +108,14 @@ mat3ra/esse/models/core/reusable/atomic_data/per_orbital.py,sha256=pd3oG1FfLevoA
105
108
  mat3ra/esse/models/core/reusable/atomic_data/per_orbital_pair.py,sha256=gLJkxLpRfNAixmVV1LCz-UHp-C55iq7SM7QJQnFSLWM,919
106
109
  mat3ra/esse/models/core/reusable/atomic_data/value_number.py,sha256=nEF8VBqob3JNGFogaJsaHWOchl_lGyh9MHDbFLF4h78,376
107
110
  mat3ra/esse/models/core/reusable/atomic_data/value_string.py,sha256=vwk-4oyLWQB7Qbw5dpUt79oaojZsJVlbZvPfp-3JH7U,348
111
+ mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py,sha256=x3F0hTWnquvTngAvmbwwKJ547QuAvn_oLk6FRfY3Egg,956
112
+ mat3ra/esse/models/core/reusable/coordinate_conditions/base.py,sha256=L7zYSATgDrli55qZhAutLnzOUXCp1PqTxL8-0XRO940,497
113
+ mat3ra/esse/models/core/reusable/coordinate_conditions/box.py,sha256=MldQtO6zNM-C40C4EKR8k4p29RaGGJh_Hc8N2gCTfX8,733
114
+ mat3ra/esse/models/core/reusable/coordinate_conditions/cylinder.py,sha256=x9f179N27Ix8Djbj7MI_8XRkg02aMRNftZZclGV6-SU,721
115
+ mat3ra/esse/models/core/reusable/coordinate_conditions/enum.py,sha256=qlOpxIW7i5SowG5-rLSz6DAqIOlIIvPrQyqYMGoZmCQ,337
116
+ mat3ra/esse/models/core/reusable/coordinate_conditions/plane.py,sha256=hZHVpkgFEhuzuMXlvgsO7vntA1BGe_hm2W6pZWfkQ74,741
117
+ mat3ra/esse/models/core/reusable/coordinate_conditions/sphere.py,sha256=-ZyoNpJTqu6i0EcWpV2t7n7OBuyFaGlICJFPbwpWsyk,660
118
+ mat3ra/esse/models/core/reusable/coordinate_conditions/triangular_prism.py,sha256=JW6AQQFLK_mLfh3HQjSdQsIe409XHLzmyCjGCjrft08,929
108
119
  mat3ra/esse/models/core/reusable/energy_accuracy_levels/__init__.py,sha256=A62Az-FUlQtAtprjSTr4WDHA1Xgan5YN8H9u_8yLEq4,78
109
120
  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
121
  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 +137,7 @@ mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7
126
137
  mat3ra/esse/models/job/__init__.py,sha256=tQXT9GQRHDoVyW9AmI_Sjkqg78fkKSb4tL6TmWn--m4,64815
127
138
  mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
128
139
  mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
129
- mat3ra/esse/models/material/__init__.py,sha256=sghqE-Le2uLd6CMHeQs3Yyh-aqnab61msLCxCT0Vprw,11681
140
+ mat3ra/esse/models/material/__init__.py,sha256=XoCMo_vYulZhkJv_V7n4jaw8Ee3ZmVgjD71P6L0DOcw,11673
130
141
  mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
131
142
  mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
132
143
  mat3ra/esse/models/material/builders/base/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -136,63 +147,104 @@ mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/builde
136
147
  mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py,sha256=1RpA1SmyVMGZOcOwW30Vl470e2nQFJNKhUSvyQBKmRo,2611
137
148
  mat3ra/esse/models/material/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
138
149
  mat3ra/esse/models/material/reusable/repetitions.py,sha256=CpJjyQLz0MoQsp5fiLSCNDE1NfajQYTRjUJTzLb9YHc,754
150
+ mat3ra/esse/models/material/reusable/slab_configuration_with_termination.py,sha256=96UP1nc0d_JpLlih92BGH_3eoHygs6Sc6nnppzyPi4U,15581
139
151
  mat3ra/esse/models/material/reusable/supercell_matrix_2d.py,sha256=Ul--ruw2s6JRVwu4y6M-YKSZBmZb6uI-pfC-Ua0ZWus,722
140
152
  mat3ra/esse/models/material/reusable/supercell_matrix_3d.py,sha256=tqKLcZyV3zaSq2I4dZR6mVB-EMoykMvOh-lBaKh_cZc,784
153
+ mat3ra/esse/models/material/reusable/coordinate_conditions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
154
+ mat3ra/esse/models/material/reusable/coordinate_conditions/base.py,sha256=hJ1d7RipRxjQAa3X1mCLqJQDb7c_J75WZsjwRhjPHeI,501
155
+ mat3ra/esse/models/material/reusable/coordinate_conditions/box.py,sha256=rmBBYJxNHm88JwLWt9dophRNDAJspUNNsPEs1_rUR5s,677
156
+ mat3ra/esse/models/material/reusable/coordinate_conditions/cylinder.py,sha256=qyI2xEO47u69sW-Fytbzw7vfyA2PuTd5aMnp_EZ6drs,744
157
+ mat3ra/esse/models/material/reusable/coordinate_conditions/plane.py,sha256=E-ty2O5JCPWlM4kQu4phYeNxk-GJiegV6kwi6h7ixfI,689
158
+ mat3ra/esse/models/material/reusable/coordinate_conditions/sphere.py,sha256=TzA9skQ5GOEItZjlp3S2qCylZAhGFa6ZdF6qf3LJyuQ,676
159
+ mat3ra/esse/models/material/reusable/coordinate_conditions/triangular_prism.py,sha256=5opNLpzZj2s_v_gUHROv-joE6sfG-Sx2hMky3-fzz3Y,843
141
160
  mat3ra/esse/models/material/reusable/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
142
161
  mat3ra/esse/models/material/reusable/slab/enums.py,sha256=ahZsneu0LQal4eYK3wo1YbFZKogytxYYMm0DEh8e4KQ,252
143
162
  mat3ra/esse/models/material/reusable/slab/miller_indices.py,sha256=FIqFq2U34Q0g5zA8QF9twGHEc3vbkeyJb8fcexQJn8Q,467
144
163
  mat3ra/esse/models/material/reusable/slab/number_of_layers.py,sha256=-tw5Z2q1eIXe3rm3XOCI_ux31QS6463sb3n0qHQ8Tkc,440
164
+ mat3ra/esse/models/material/reusable/slab/slab_configuration_with_termination.py,sha256=toHZlEtuVcKXTBt_aKg8bveYrsFu3NgijUmoEYcG9xI,13776
165
+ mat3ra/esse/models/material/reusable/slab/slab_with_termination.py,sha256=Z10EKD_ijcMTcNdzrB_E4a9qakwzUICe0a76EfftsCQ,13835
145
166
  mat3ra/esse/models/material/reusable/slab/termination.py,sha256=-Zh961QVKipjdbEgcD5Ddqjyftyo0ikNNiUl9334rEo,2364
167
+ mat3ra/esse/models/material/reusable/slab/two_slabs_stack.py,sha256=VEfVT6nel6uuC75bCHKMSwE7FsUerc_JvXVSm9QcKdo,14474
146
168
  mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=GlJFBUUYc8JP-zqdLXaUf899-3fy1X2p_sdzbpwPlw8,421
147
169
  mat3ra/esse/models/material/reusable/slab/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
148
170
  mat3ra/esse/models/material/reusable/slab/enums/exposed_face.py,sha256=-MUlEELT-ec-0XtmZrsrs2HVviP-ITmhxJYiR_1ab5M,268
171
+ mat3ra/esse/models/material/reusable/stack/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
172
+ mat3ra/esse/models/material/reusable/stack/slab_configuration_with_termination.py,sha256=VvSEirucIX05yor2YRN2RSjuM9yJUr-RzvHKLDs_Aow,13848
173
+ mat3ra/esse/models/material/reusable/stack/slab_in_stack.py,sha256=x3hUoJ8ljsvMNZ0AKKPeYAuUBd7AW6endi8egwAnm_U,15785
174
+ mat3ra/esse/models/material/reusable/stack/stack_of_slabs.py,sha256=d22cbirT2w3JLMkb6cyBAtj-_I1-RqOQKtnwG4Jp80w,16206
175
+ mat3ra/esse/models/material/reusable/stack/stack_of_two_slabs.py,sha256=2r5ahhJxqdxiI0DlQ0ZynOCc3zmMq7_7S0t7VehzzSQ,16227
176
+ mat3ra/esse/models/material/reusable/supercell/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
177
+ mat3ra/esse/models/material/reusable/supercell/supercell_matrix_2d.py,sha256=0mPs-IG3peUVWwcGXg_t9dPFF5mEdbAFT4BFJQuxUBk,732
178
+ mat3ra/esse/models/material/reusable/supercell/supercell_matrix_3d.py,sha256=Xk7UJOANBV7jtdidt39h4cOpadjl_itd83l5G6zDQgI,794
149
179
  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
180
+ mat3ra/esse/models/materials_category/defects/configuration.py,sha256=x76zm65ZyoN_DEeW0670npXC8YMnVqn7Sq8w4_brBPM,12068
154
181
  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
182
+ mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/configuration.py,sha256=2M201dD4MklthjHH_cRoHhZlQfq-q95mnJeP8_RmaQI,14018
156
183
  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
184
+ mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/configuration.py,sha256=wUbdpvnBiX6GkKi0MEbN_rFqUHoNNQEgGN2iPUP9khk,12282
158
185
  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
186
+ mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/configuration.py,sha256=8XPz4OHhV4Gsv1PGHxzq22AzdIjF4tia0XYSdEgG7D8,12308
160
187
  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
188
  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
189
  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
190
+ mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py,sha256=nLnMwm_Dc4mYHYP3Yrz0qooqje38fOwaAecuXuf2jWE,12798
191
+ mat3ra/esse/models/materials_category/defects/two_dimensional/grain_boundary_plane/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
192
+ mat3ra/esse/models/materials_category/defects/two_dimensional/grain_boundary_plane/configuration.py,sha256=iReKVnULHSzR4SFJHuUG4jMW8t2BL3YiZCS8wpAADQg,27395
170
193
  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
194
+ mat3ra/esse/models/materials_category/defects/two_dimensional/island/condition_json.py,sha256=RnKPBWrycEr-fU4X7NKZ1tdRlYFcFM-y4cW44rb_wrE,863
195
+ mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py,sha256=ESb5xFkiXH42aqIltQQ-9WEJyYqIuY5g63AcwWESjks,12817
179
196
  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
197
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/configuration.py,sha256=lS0TGkwNhfpFlSHoCLpVbqsPCaQbVbzwL0oFnsc4_3s,33490
183
198
  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
199
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py,sha256=8yrw_WxsGg_s8b5gPV_5OF26gDj0mgNx8jzV-Spcc8c,13995
186
200
  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
201
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py,sha256=K-wsFIFxJI3_WtH6ZdhV3yIRD5yKV4nsn4yMB3BJq1o,14040
188
202
  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
203
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py,sha256=tlfIMAonNwQLv4Jax_xssBR8vEE0yThxplwdCbVoy8o,14044
190
204
  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
205
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py,sha256=piucwaXcimn031aiU_1A17bwPhpcx35pPeNC9z-lc60,14025
206
+ mat3ra/esse/models/materials_category/multi_material/interfaces/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
207
+ mat3ra/esse/models/materials_category/multi_material/interfaces/configuration.py,sha256=rgJqVlgQFS4N3Kc4sgq4j4htenA9Xf82IEm1hUp_KHI,16221
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=oVu_x3OSr6om8ctkVML6rixzi65qyf_PuG_nQ28HXe4,15720
194
212
  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
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=kfUPs9-yfsOx6-e9_6jLKWskd4ZGt9DkG1zo_5rY7AI,2406
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=z9Bh5HpHb-oV6d2xLk69wbdgWpcRkCv_m4fCGm6mQG4,580
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=YqmgmImIgBSICf1HHFCN_659kuG-Jb6aFbFCclsYcKU,12243
233
+ mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py,sha256=sWOBuM4-NR9tOX-GXpWZBSRne5DW4exhT5FDHIhl6kQ,12072
234
+ mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py,sha256=3cg_8SEi4FgJFNeEyVLdSaLELxwaVyGqPqQCBxJdTK4,12193
235
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
236
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers.py,sha256=aXI_Jl0Msj2eqXNLE914hML19DsFi8qcI5ODM-HKzWo,14492
237
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique.py,sha256=A0uvfMM_ouAG5F3uErfAypfuZTgeVBAKeqkXN8obZXw,14513
238
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique_repeated.py,sha256=o8LmcS9M96I-4Nfimx3NwWm54Bpya6RsOm7MC3VCErA,14644
239
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py,sha256=CCmr2kn0L9Z-PqPPOXLHjYmHOOS_PtMu6fzblFJgYtQ,12256
240
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_unit_cell.py,sha256=h8qXROfSqIejlhyf3Wqa4EIbPPYWWwomReiTUikonWw,15310
241
+ mat3ra/esse/models/materials_category_components/operations/core/combinations/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
242
+ mat3ra/esse/models/materials_category_components/operations/core/combinations/merge.py,sha256=2e2Kp1fPNZsl3tL_d4CRZq6JtYpMNu5Mimv5V80zXf8,13242
243
+ mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py,sha256=K8d03AUAypElGfkGk7qoloo0SgmQcGLa0DSSnMj-Qjg,12241
244
+ mat3ra/esse/models/materials_category_components/operations/core/combinations/stack_component.py,sha256=J6GEhlq0t9TvGlqS83eOqcbb_4kHoDfRLIXSQPWtmxA,12303
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
196
248
  mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
197
249
  mat3ra/esse/models/method/categorized_method.py,sha256=f2dQIPERDoY61WL-KR_6dmAftRyPv_d_J6XSaV5yjqE,2479
198
250
  mat3ra/esse/models/method/method_parameters.py,sha256=CH4qkchLAsq_L0iaet5dESnbTePbQYfXK47U8MemrxQ,1086
@@ -372,42 +424,42 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
372
424
  mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
373
425
  mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
374
426
  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
427
+ mat3ra/esse/models/properties_directory/derived_properties.py,sha256=UNiw9ni7w3LxQmkNWdX-qb0_xcgTFBK5Xn-sx1XyeRM,3010
376
428
  mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
377
429
  mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
378
430
  mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=VsSKIbLYl9GseztXyzggDAMyMH0qJ3s_9IS8lxYKz88,591
379
431
  mat3ra/esse/models/properties_directory/elemental/electronegativity.py,sha256=vkmKQDpw017QMJAHa9Pd3jr4ejBrMvt5j0BJ41_8zBg,395
380
432
  mat3ra/esse/models/properties_directory/elemental/ionization_potential.py,sha256=qw_mwkuBkuFho-Z8cfMZowqKMYZTTsO-Yhp2MA00RSM,597
381
433
  mat3ra/esse/models/properties_directory/non_scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
382
- 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
383
435
  mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=7ypgPAH8RgGlntishJctQeAFDsjBUbSoZ0GfRwue85I,1817
384
- 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
385
437
  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
438
+ mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=qO7fMAS23Qj9D_PT0s-UoJajvrTZBMi2RGF0k7n16nc,2010
387
439
  mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_1KlHVqxzjgh9Z36kpsjeHRi-SsjxhmLWt8wMYi_6rc,807
388
440
  mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkzH_EQ-aViO7aCxhPgNDXIAr2MqfF6vQfZaC6pc,1429
389
441
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
390
442
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
391
443
  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
444
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=QysNrth3l4bEwd5LkuqJeNVwINWGV8L_6qef8SQ3wFc,1382
445
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=I8225Mn68sjSA944YJl4LvQ6WL7yH-N0Pa9jh_b2GR8,1403
394
446
  mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
395
447
  mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
396
448
  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
449
+ mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=kzGeDlzZIL7OWzXIeUlHqYQ-RPbIA-PgwQL9fzKNspQ,4464
450
+ mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=4PQl3X_hqMFT7pvdSoe2dhBe_oGQK5El-dBE6Qtk7Bw,1564
399
451
  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
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
404
456
  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
457
+ mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=3D0C5z5vkc49yD8nYPw09Ei8fC32Qkaf6F1B9uLjaHI,635
458
+ mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=JR8w_mAI169UTf9IrhTJPFmo-AJa8LF_qk5bgS2_34U,600
459
+ mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=9XZl68knWcbA-LIDVLlu5nZD5JAyZVEYzn0-aux_m3g,592
408
460
  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
461
+ mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=hQmeSt2hdwNmjB8ZpdHqXkeTE9OqFTKeCVJq2mXBJk8,619
462
+ mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=EhFVo08L1G0P_RmLZEiURxOiaHnMKGRZqy6fHMiTUEM,613
411
463
  mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
412
464
  mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
413
465
  mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
@@ -415,11 +467,11 @@ mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP
415
467
  mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
416
468
  mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
417
469
  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
470
+ mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=2oDFx2MLr9sK2n_PlJVJzwkv2tAT3fmLBeZwefO1eys,1793
419
471
  mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
420
472
  mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
421
473
  mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
422
- 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
423
475
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraint.py,sha256=MJfolJSgvQ4zPWZi36Y-9fUUkfSnVBKW0HCDhxsEfHM,441
424
476
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints.py,sha256=GCngLkD-6_Xkn6WL0vqj5r14vJrnT-JE68TWMwCDAso,660
425
477
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py,sha256=BqRWld9jbvPw2hUYMu83QbFoZNvfXt2o-_w_TBB_aeY,779
@@ -447,7 +499,7 @@ mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=vZ7ts
447
499
  mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=KnVmYAti3CfLIds1wVM8qW_cN75VGGdWQ7Ew3VFPpSE,742
448
500
  mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
449
501
  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
502
+ mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=qYDT_FprEKq8lQLmayQD9LoHvzDU9j3fGvDrmQi5K9M,1306
451
503
  mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
452
504
  mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
453
505
  mat3ra/esse/models/property/base.py,sha256=mb5Q1XgYt7WrFhUir0O99ufQNzhiJog0yfoqECokquA,5003
@@ -584,8 +636,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
584
636
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
585
637
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
586
638
  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,,
639
+ mat3ra_esse-2025.6.5.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
640
+ mat3ra_esse-2025.6.5.post0.dist-info/METADATA,sha256=hUvmcYUxd4FXC_cLXVQiGQRVTRKHjlq38rN3w1KvS4U,8999
641
+ mat3ra_esse-2025.6.5.post0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
642
+ mat3ra_esse-2025.6.5.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
643
+ mat3ra_esse-2025.6.5.post0.dist-info/RECORD,,
@@ -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
 
@@ -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