mat3ra-esse 2025.5.16.post0__py3-none-any.whl → 2025.5.16.post1__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 (67) 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 +8 -8
  4. mat3ra/esse/models/core/reusable/energy.py +2 -2
  5. mat3ra/esse/models/element.py +128 -10
  6. mat3ra/esse/models/enums/__init__.py +3 -0
  7. mat3ra/esse/models/enums/chemical_elements.py +13 -0
  8. mat3ra/esse/models/material/__init__.py +140 -14
  9. mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py +128 -4
  10. mat3ra/esse/models/material/reusable/slab/enums/__init__.py +3 -0
  11. mat3ra/esse/models/material/reusable/slab/enums/exposed_face.py +13 -0
  12. mat3ra/esse/models/material/reusable/slab/number_of_layers.py +1 -1
  13. mat3ra/esse/models/material/reusable/slab/termination.py +129 -3
  14. mat3ra/esse/models/material/reusable/slab/vacuum.py +2 -2
  15. mat3ra/esse/models/materials_category/defects/__init__.py +3 -0
  16. mat3ra/esse/models/materials_category/defects/configuration.py +538 -0
  17. mat3ra/esse/models/materials_category/defects/enums/__init__.py +3 -0
  18. mat3ra/esse/models/materials_category/defects/enums/atom_placement_method.py +22 -0
  19. mat3ra/esse/models/materials_category/defects/enums/complex_defect_type.py +18 -0
  20. mat3ra/esse/models/materials_category/defects/enums/coordinates_shape.py +21 -0
  21. mat3ra/esse/models/materials_category/defects/enums/point_defect_type.py +13 -0
  22. mat3ra/esse/models/materials_category/defects/enums/slab_defect_type.py +19 -0
  23. mat3ra/esse/models/materials_category/defects/enums.py +13 -0
  24. mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/__init__.py +3 -0
  25. mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py +425 -0
  26. mat3ra/esse/models/materials_category/defects/slab/__init__.py +3 -0
  27. mat3ra/esse/models/materials_category/defects/slab/configuration.py +412 -0
  28. mat3ra/esse/models/materials_category/defects/two_dimensional/island/__init__.py +3 -0
  29. mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py +449 -0
  30. mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/__init__.py +3 -0
  31. mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/configuration.py +1105 -0
  32. mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/__init__.py +3 -0
  33. mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/base_configuration.py +418 -0
  34. mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/configuration.py +418 -0
  35. mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/__init__.py +3 -0
  36. mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/configuration.py +1026 -0
  37. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/__init__.py +3 -0
  38. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/base_configuration.py +30 -0
  39. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py +672 -0
  40. mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/__init__.py +3 -0
  41. mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/configuration.py +434 -0
  42. mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py +142 -16
  43. mat3ra/esse/models/properties_directory/derived_properties.py +11 -11
  44. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +2 -2
  45. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
  46. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
  47. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
  48. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
  49. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +2 -2
  50. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +2 -2
  51. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +2 -2
  52. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +2 -2
  53. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
  54. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
  55. mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
  56. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
  57. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
  58. mat3ra/esse/models/properties_directory/structural/basis/__init__.py +128 -2
  59. mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py +131 -2
  60. mat3ra/esse/models/properties_directory/structural/basis/atomic_elements.py +130 -3
  61. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
  62. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +2 -2
  63. {mat3ra_esse-2025.5.16.post0.dist-info → mat3ra_esse-2025.5.16.post1.dist-info}/METADATA +1 -1
  64. {mat3ra_esse-2025.5.16.post0.dist-info → mat3ra_esse-2025.5.16.post1.dist-info}/RECORD +67 -36
  65. {mat3ra_esse-2025.5.16.post0.dist-info → mat3ra_esse-2025.5.16.post1.dist-info}/WHEEL +0 -0
  66. {mat3ra_esse-2025.5.16.post0.dist-info → mat3ra_esse-2025.5.16.post1.dist-info}/licenses/LICENSE.md +0 -0
  67. {mat3ra_esse-2025.5.16.post0.dist-info → mat3ra_esse-2025.5.16.post1.dist-info}/top_level.txt +0 -0
@@ -4,13 +4,142 @@
4
4
 
5
5
  from __future__ import annotations
6
6
 
7
+ from enum import Enum
8
+ from typing import Union
9
+
7
10
  from pydantic import BaseModel
8
11
 
9
12
 
13
+ class Value(Enum):
14
+ H = "H"
15
+ He = "He"
16
+ Li = "Li"
17
+ Be = "Be"
18
+ B = "B"
19
+ C = "C"
20
+ N = "N"
21
+ O = "O"
22
+ F = "F"
23
+ Ne = "Ne"
24
+ Na = "Na"
25
+ Mg = "Mg"
26
+ Al = "Al"
27
+ Si = "Si"
28
+ P = "P"
29
+ S = "S"
30
+ Cl = "Cl"
31
+ Ar = "Ar"
32
+ K = "K"
33
+ Ca = "Ca"
34
+ Sc = "Sc"
35
+ Ti = "Ti"
36
+ V = "V"
37
+ Cr = "Cr"
38
+ Mn = "Mn"
39
+ Fe = "Fe"
40
+ Co = "Co"
41
+ Ni = "Ni"
42
+ Cu = "Cu"
43
+ Zn = "Zn"
44
+ Ga = "Ga"
45
+ Ge = "Ge"
46
+ As = "As"
47
+ Se = "Se"
48
+ Br = "Br"
49
+ Kr = "Kr"
50
+ Rb = "Rb"
51
+ Sr = "Sr"
52
+ Y = "Y"
53
+ Zr = "Zr"
54
+ Nb = "Nb"
55
+ Mo = "Mo"
56
+ Tc = "Tc"
57
+ Ru = "Ru"
58
+ Rh = "Rh"
59
+ Pd = "Pd"
60
+ Ag = "Ag"
61
+ Cd = "Cd"
62
+ In = "In"
63
+ Sn = "Sn"
64
+ Sb = "Sb"
65
+ Te = "Te"
66
+ I = "I"
67
+ Xe = "Xe"
68
+ Cs = "Cs"
69
+ Ba = "Ba"
70
+ La = "La"
71
+ Ce = "Ce"
72
+ Pr = "Pr"
73
+ Nd = "Nd"
74
+ Pm = "Pm"
75
+ Sm = "Sm"
76
+ Eu = "Eu"
77
+ Gd = "Gd"
78
+ Tb = "Tb"
79
+ Dy = "Dy"
80
+ Ho = "Ho"
81
+ Er = "Er"
82
+ Tm = "Tm"
83
+ Yb = "Yb"
84
+ Lu = "Lu"
85
+ Hf = "Hf"
86
+ Ta = "Ta"
87
+ W = "W"
88
+ Re = "Re"
89
+ Os = "Os"
90
+ Ir = "Ir"
91
+ Pt = "Pt"
92
+ Au = "Au"
93
+ Hg = "Hg"
94
+ Tl = "Tl"
95
+ Pb = "Pb"
96
+ Bi = "Bi"
97
+ Po = "Po"
98
+ At = "At"
99
+ Rn = "Rn"
100
+ Fr = "Fr"
101
+ Ra = "Ra"
102
+ Ac = "Ac"
103
+ Th = "Th"
104
+ Pa = "Pa"
105
+ U = "U"
106
+ Np = "Np"
107
+ Pu = "Pu"
108
+ Am = "Am"
109
+ Cm = "Cm"
110
+ Bk = "Bk"
111
+ Cf = "Cf"
112
+ Es = "Es"
113
+ Fm = "Fm"
114
+ Md = "Md"
115
+ No = "No"
116
+ Lr = "Lr"
117
+ Rf = "Rf"
118
+ Db = "Db"
119
+ Sg = "Sg"
120
+ Bh = "Bh"
121
+ Hs = "Hs"
122
+ Mt = "Mt"
123
+ Ds = "Ds"
124
+ Rg = "Rg"
125
+ Cn = "Cn"
126
+ Nh = "Nh"
127
+ Fl = "Fl"
128
+ Mc = "Mc"
129
+ Lv = "Lv"
130
+ Ts = "Ts"
131
+ Og = "Og"
132
+
133
+
134
+ class Value1(Enum):
135
+ X = "X"
136
+ Vac = "Vac"
137
+
138
+
10
139
  class AtomicElementSchema(BaseModel):
11
- value: str
140
+ value: Union[Value, Value1]
12
141
  """
13
- value of this entry
142
+ All elements, including extra elements
14
143
  """
15
144
  id: int
16
145
  """
@@ -4,15 +4,142 @@
4
4
 
5
5
  from __future__ import annotations
6
6
 
7
- from typing import List
7
+ from enum import Enum
8
+ from typing import List, Union
8
9
 
9
10
  from pydantic import BaseModel, Field, RootModel
10
11
 
11
12
 
13
+ class Value(Enum):
14
+ H = "H"
15
+ He = "He"
16
+ Li = "Li"
17
+ Be = "Be"
18
+ B = "B"
19
+ C = "C"
20
+ N = "N"
21
+ O = "O"
22
+ F = "F"
23
+ Ne = "Ne"
24
+ Na = "Na"
25
+ Mg = "Mg"
26
+ Al = "Al"
27
+ Si = "Si"
28
+ P = "P"
29
+ S = "S"
30
+ Cl = "Cl"
31
+ Ar = "Ar"
32
+ K = "K"
33
+ Ca = "Ca"
34
+ Sc = "Sc"
35
+ Ti = "Ti"
36
+ V = "V"
37
+ Cr = "Cr"
38
+ Mn = "Mn"
39
+ Fe = "Fe"
40
+ Co = "Co"
41
+ Ni = "Ni"
42
+ Cu = "Cu"
43
+ Zn = "Zn"
44
+ Ga = "Ga"
45
+ Ge = "Ge"
46
+ As = "As"
47
+ Se = "Se"
48
+ Br = "Br"
49
+ Kr = "Kr"
50
+ Rb = "Rb"
51
+ Sr = "Sr"
52
+ Y = "Y"
53
+ Zr = "Zr"
54
+ Nb = "Nb"
55
+ Mo = "Mo"
56
+ Tc = "Tc"
57
+ Ru = "Ru"
58
+ Rh = "Rh"
59
+ Pd = "Pd"
60
+ Ag = "Ag"
61
+ Cd = "Cd"
62
+ In = "In"
63
+ Sn = "Sn"
64
+ Sb = "Sb"
65
+ Te = "Te"
66
+ I = "I"
67
+ Xe = "Xe"
68
+ Cs = "Cs"
69
+ Ba = "Ba"
70
+ La = "La"
71
+ Ce = "Ce"
72
+ Pr = "Pr"
73
+ Nd = "Nd"
74
+ Pm = "Pm"
75
+ Sm = "Sm"
76
+ Eu = "Eu"
77
+ Gd = "Gd"
78
+ Tb = "Tb"
79
+ Dy = "Dy"
80
+ Ho = "Ho"
81
+ Er = "Er"
82
+ Tm = "Tm"
83
+ Yb = "Yb"
84
+ Lu = "Lu"
85
+ Hf = "Hf"
86
+ Ta = "Ta"
87
+ W = "W"
88
+ Re = "Re"
89
+ Os = "Os"
90
+ Ir = "Ir"
91
+ Pt = "Pt"
92
+ Au = "Au"
93
+ Hg = "Hg"
94
+ Tl = "Tl"
95
+ Pb = "Pb"
96
+ Bi = "Bi"
97
+ Po = "Po"
98
+ At = "At"
99
+ Rn = "Rn"
100
+ Fr = "Fr"
101
+ Ra = "Ra"
102
+ Ac = "Ac"
103
+ Th = "Th"
104
+ Pa = "Pa"
105
+ U = "U"
106
+ Np = "Np"
107
+ Pu = "Pu"
108
+ Am = "Am"
109
+ Cm = "Cm"
110
+ Bk = "Bk"
111
+ Cf = "Cf"
112
+ Es = "Es"
113
+ Fm = "Fm"
114
+ Md = "Md"
115
+ No = "No"
116
+ Lr = "Lr"
117
+ Rf = "Rf"
118
+ Db = "Db"
119
+ Sg = "Sg"
120
+ Bh = "Bh"
121
+ Hs = "Hs"
122
+ Mt = "Mt"
123
+ Ds = "Ds"
124
+ Rg = "Rg"
125
+ Cn = "Cn"
126
+ Nh = "Nh"
127
+ Fl = "Fl"
128
+ Mc = "Mc"
129
+ Lv = "Lv"
130
+ Ts = "Ts"
131
+ Og = "Og"
132
+
133
+
134
+ class Value3(Enum):
135
+ X = "X"
136
+ Vac = "Vac"
137
+
138
+
12
139
  class AtomicElementSchema(BaseModel):
13
- value: str
140
+ value: Union[Value, Value3]
14
141
  """
15
- value of this entry
142
+ All elements, including extra elements
16
143
  """
17
144
  id: int
18
145
  """
@@ -37,12 +37,12 @@ class FunctionalGroupPatternSchema(BaseModel):
37
37
  """
38
38
 
39
39
 
40
- class Name62(Enum):
40
+ class Name78(Enum):
41
41
  ring = "ring"
42
42
 
43
43
 
44
44
  class RingPatternSchema(BaseModel):
45
- name: Optional[Name62] = None
45
+ name: Optional[Name78] = None
46
46
  atoms: Optional[List[ObjectWithId]] = Field(None, title="array of ids")
47
47
  """
48
48
  array of objects containing integer id each
@@ -50,12 +50,12 @@ class RingPatternSchema(BaseModel):
50
50
  isAromatic: Optional[bool] = None
51
51
 
52
52
 
53
- class Name63(Enum):
53
+ class Name79(Enum):
54
54
  special_bond = "special_bond"
55
55
 
56
56
 
57
57
  class SpecialBondPatternSchema(BaseModel):
58
- name: Optional[Name63] = None
58
+ name: Optional[Name79] = None
59
59
  atoms: Optional[List[ObjectWithId]] = Field(None, title="array of ids")
60
60
  """
61
61
  array of objects containing integer id each
@@ -18,14 +18,14 @@ class Units(Enum):
18
18
  eV = "eV"
19
19
 
20
20
 
21
- class Units33(Enum):
21
+ class Units39(Enum):
22
22
  eV = "eV"
23
23
  Ry = "Ry"
24
24
  hartree = "hartree"
25
25
 
26
26
 
27
27
  class Electronic(BaseModel):
28
- units: Optional[Units33] = None
28
+ units: Optional[Units39] = None
29
29
  """
30
30
  units for force tolerance
31
31
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mat3ra-esse
3
- Version: 2025.5.16.post0
3
+ Version: 2025.5.16.post1
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,17 @@ 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=r9blOLqlaKWZQjPET2AQsF8iR3Dlogz_GvtLfEl1cn0,48815
5
+ mat3ra/esse/data/examples.py,sha256=z40D4Xfl-7Zj7A_kDDIZFBKjxHozg7B1QQ64MR90YQY,51775
6
6
  mat3ra/esse/data/properties.py,sha256=geWFIVIJbdn2Q_JG3Mz36oQ_dXeZZwnmlS_NgszvHUY,6099
7
- mat3ra/esse/data/schemas.py,sha256=OZrsAkknw-AJ0nHKCQHu7H5MGZKxdDqn39C6HhDE2lA,1608184
7
+ mat3ra/esse/data/schemas.py,sha256=_GZZMbyB7dYi2E6iUNmtoeSPqHUpnVeid-XvBD9_kTU,1647231
8
8
  mat3ra/esse/models/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
9
- mat3ra/esse/models/element.py,sha256=Huew2YZoEc9VNXfamRami9hB-9ZJ8M0YDVV8l1vxjsY,1331
9
+ mat3ra/esse/models/element.py,sha256=7dQRv2TN0q874odIyI5UII7A2-zsTkX60PxUikCBqlY,2944
10
10
  mat3ra/esse/models/project.py,sha256=fqUckRBLyCzVc_77-EtQUg_zFDV_zTYfnLmOoE77zPE,1148
11
11
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
12
12
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/atoms.py,sha256=KJoqkT9hV3J_xJmaHCLx7bAEBxvGxz0_ZC76b9Auu2k,1451
13
13
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/db_entry.py,sha256=U1u7lcPwZCymrEfiOrkjT0nbvDDaiz83LiVUGKtx18s,1909
14
14
  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=k5g-qfBm6wQDseJlnBjhd-zhxGXj851ttxbdCRQfBhE,74719
15
+ mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py,sha256=TKHdmLpKbGB3ymtsYcKGzqO-LuroocN45Jh8uq6ALZ8,74723
16
16
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
17
17
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/atomic_positions.py,sha256=mnHklX-WdQl7yHBykTvnpid3zOzOVv6fr9kLCIhK85c,1271
18
18
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/atomic_species.py,sha256=DEYl0xPnsY2XIyRIJhvny8BmaKLASkdBbIN1Xc-o--c,1180
@@ -94,7 +94,7 @@ mat3ra/esse/models/core/reusable/band_gap.py,sha256=_L79BKX80sAH7ZuyxFSdomJLS2dq
94
94
  mat3ra/esse/models/core/reusable/categories.py,sha256=Z90c6gdSMUdEYwoThEyusMXb5ufqoQh-tISYafPWwME,1350
95
95
  mat3ra/esse/models/core/reusable/category_path.py,sha256=SFyMHOXwrIewKkr4lCZRfSO-oszEx29XEK6TuLJrBtQ,359
96
96
  mat3ra/esse/models/core/reusable/dielectric_tensor_component.py,sha256=_rr6oeTSxUp9iIwaDNt84oeu32_EMXB2vb-MeuxosjY,623
97
- mat3ra/esse/models/core/reusable/energy.py,sha256=Zs5Qxv64yae9Xkhh4YTlpfK8MeuVZefsOMVjvGmeNVM,512
97
+ mat3ra/esse/models/core/reusable/energy.py,sha256=yoi6fsqro_BZ9pclhknXCbHEnbDuwMnNLrkr7c61B3Y,512
98
98
  mat3ra/esse/models/core/reusable/energy_accuracy_levels.py,sha256=ndCRZOzYZZ-Ok-mjANEKtvOuMSQvE2WzCXqXvrJrNtA,655
99
99
  mat3ra/esse/models/core/reusable/file_metadata.py,sha256=DyPL1zQJR3HTyOGgvQzE7BxasTCkVRffeG_4WKfxf-8,520
100
100
  mat3ra/esse/models/core/reusable/frequency_function_matrix.py,sha256=I4B-ukMJ_aGpP_PHDd63bW8Jav1mreGeMiLqtrElIno,429
@@ -111,6 +111,8 @@ mat3ra/esse/models/core/reusable/energy_accuracy_levels/Reusable_schema_for_ener
111
111
  mat3ra/esse/models/definitions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
112
112
  mat3ra/esse/models/definitions/constants.py,sha256=53q7UtK31QOF3h4rVbOq4vNyXSqSjIL437A78i_5NaA,933
113
113
  mat3ra/esse/models/definitions/units.py,sha256=4yoh-9dCLZhM02beLXVCuA4TpkPgm-QgEoWTvLkTBEs,296
114
+ mat3ra/esse/models/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
115
+ mat3ra/esse/models/enums/chemical_elements.py,sha256=HeEgUBgIGHe7EpGVYQ0uthkg-UDNeWMksgvzbrHjhZA,308
114
116
  mat3ra/esse/models/in_memory_entity/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
115
117
  mat3ra/esse/models/in_memory_entity/base.py,sha256=amGKCTG4wJbOtfjciYGC35WEuExOIxU9k6Fc6Lk1vgk,574
116
118
  mat3ra/esse/models/in_memory_entity/defaultable.py,sha256=SAKO1RtMzKoz3d9JBokbzGHy0BOZcD5AfclytyVZ9zU,684
@@ -122,14 +124,14 @@ mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7
122
124
  mat3ra/esse/models/job/__init__.py,sha256=tQXT9GQRHDoVyW9AmI_Sjkqg78fkKSb4tL6TmWn--m4,64815
123
125
  mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
124
126
  mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
125
- mat3ra/esse/models/material/__init__.py,sha256=7CnepGoWJH7ENKsgm6y0Hplxajbpv2QravDZOEBXYvk,9940
127
+ mat3ra/esse/models/material/__init__.py,sha256=rk8tAZN-0ZbMsSWjY_LuEDEERf6Qmf02i_CZpP9uapk,11673
126
128
  mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
127
129
  mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
128
130
  mat3ra/esse/models/material/builders/base/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
129
131
  mat3ra/esse/models/material/builders/base/selector_parameters.py,sha256=ePtuNvhoyfzmhQD1OEwIvzVyteyakcNBqvCoLCPofOw,370
130
132
  mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
131
133
  mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/builder_parameters.py,sha256=4vq5IwymOgpi24Eu1tus6pByU6z27BVTClH9lhjg5Mg,743
132
- mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py,sha256=dJDvqQG4TkYDY1MZ2FaXGiMMCx7U68LPOPqdeYk5sD8,772
134
+ mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py,sha256=1RpA1SmyVMGZOcOwW30Vl470e2nQFJNKhUSvyQBKmRo,2611
133
135
  mat3ra/esse/models/material/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
134
136
  mat3ra/esse/models/material/reusable/repetitions.py,sha256=CpJjyQLz0MoQsp5fiLSCNDE1NfajQYTRjUJTzLb9YHc,754
135
137
  mat3ra/esse/models/material/reusable/supercell_matrix_2d.py,sha256=Ul--ruw2s6JRVwu4y6M-YKSZBmZb6uI-pfC-Ua0ZWus,722
@@ -137,11 +139,40 @@ mat3ra/esse/models/material/reusable/supercell_matrix_3d.py,sha256=tqKLcZyV3zaSq
137
139
  mat3ra/esse/models/material/reusable/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
138
140
  mat3ra/esse/models/material/reusable/slab/enums.py,sha256=ahZsneu0LQal4eYK3wo1YbFZKogytxYYMm0DEh8e4KQ,252
139
141
  mat3ra/esse/models/material/reusable/slab/miller_indices.py,sha256=FIqFq2U34Q0g5zA8QF9twGHEc3vbkeyJb8fcexQJn8Q,467
140
- mat3ra/esse/models/material/reusable/slab/number_of_layers.py,sha256=qtAuqvDHj1WJLnGTvvkROC0n6m30RVzcMsLUufjpUOs,440
141
- mat3ra/esse/models/material/reusable/slab/termination.py,sha256=XyejfZbAafuE00ghnaf3YX7pY6IX0IgaXnYA6ps3FpQ,506
142
- mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=FKs9OwwTICl2OyJ1xXmd7FqpFa-bxf-KLScOYLxLfBo,402
142
+ mat3ra/esse/models/material/reusable/slab/number_of_layers.py,sha256=-tw5Z2q1eIXe3rm3XOCI_ux31QS6463sb3n0qHQ8Tkc,440
143
+ mat3ra/esse/models/material/reusable/slab/termination.py,sha256=-Zh961QVKipjdbEgcD5Ddqjyftyo0ikNNiUl9334rEo,2364
144
+ mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=GlJFBUUYc8JP-zqdLXaUf899-3fy1X2p_sdzbpwPlw8,421
145
+ mat3ra/esse/models/material/reusable/slab/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
146
+ mat3ra/esse/models/material/reusable/slab/enums/exposed_face.py,sha256=-MUlEELT-ec-0XtmZrsrs2HVviP-ITmhxJYiR_1ab5M,268
147
+ mat3ra/esse/models/materials_category/defects/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
148
+ mat3ra/esse/models/materials_category/defects/configuration.py,sha256=OmdHq82gfc-mTwKTvTx_n-vrLj7HAmsbJuEr8vp6wPk,11925
149
+ mat3ra/esse/models/materials_category/defects/enums.py,sha256=mRxMaTANr1UiHyO2zBN2j5OchPCCf8FGOTKV1Ja6cSQ,245
150
+ mat3ra/esse/models/materials_category/defects/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
151
+ mat3ra/esse/models/materials_category/defects/enums/atom_placement_method.py,sha256=r2_0uqfUU5oq8EYwX9DJ387FkliyMI7g3ys1DmvdxKs,555
152
+ mat3ra/esse/models/materials_category/defects/enums/complex_defect_type.py,sha256=v9IU5XENca1s9-dezzmRxAQT-rtcUdBnHAU0DBkQJAY,399
153
+ mat3ra/esse/models/materials_category/defects/enums/coordinates_shape.py,sha256=gedgLkXg_RWGe1LvRx1QsXoqblZ6jdBIjb2h5VxPrc4,493
154
+ mat3ra/esse/models/materials_category/defects/enums/point_defect_type.py,sha256=Wsg5UOsO9cvpuATN0RMPIwuo8DsEBCQDa2X4pez22Ho,313
155
+ mat3ra/esse/models/materials_category/defects/enums/slab_defect_type.py,sha256=zbxuqPNU-KCFelxM1iLHNvKGpq0Dhb9fKxfIbf85lvc,412
156
+ mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
157
+ mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py,sha256=XX3KzkupsXZ66Lcogy2oBG4jYKQzTv4wb14el07sEjk,10832
158
+ mat3ra/esse/models/materials_category/defects/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
159
+ mat3ra/esse/models/materials_category/defects/slab/configuration.py,sha256=6yZFhYuWyfuYj8Y-VpDf0o52MMbzbf-o_gVrEIZXZhQ,10258
160
+ mat3ra/esse/models/materials_category/defects/two_dimensional/island/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
161
+ mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py,sha256=DwPZF0zzH4Lsit8dwP958kWLRi1eY1jPgMPH9zd4Trs,11602
162
+ mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
163
+ mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/configuration.py,sha256=bOzQGR95bH5ZSiZFh-D9TEumK2cLqhbtKlQh2An3eJM,29926
164
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
165
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/base_configuration.py,sha256=-U147Otr9n7CED5TKyejcaH8fLXPkCUIBoPjr5EThvA,10456
166
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/configuration.py,sha256=gr70EtIa9rnmFuoEh2mmm6m_Jj3o1QTExS8u2pu9rOU,10431
167
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
168
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/configuration.py,sha256=P1pZbjMW3spvK0YHUrl3IJP_VojjHYmtgSUTiU7Mzhc,26775
169
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
170
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/base_configuration.py,sha256=v9wGMjyrHcAl1TVuDl-aMWP-QIsfzM1lczo-dE8MeaY,870
171
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py,sha256=2ChmM5k0mzUy9Uz6isSAE7HWSu17fouMvLYo9woatg4,14132
172
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
173
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/configuration.py,sha256=a-ib5sO9Sjn1PlbK0_kYBBonzJtbfnK6aaCeh0jOWlE,11018
143
174
  mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
144
- mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=cNK2sdXgr2F0Y6KSZyb9iygI0gbKeiX4ANZ4k7AuIMM,11416
175
+ mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=n-EXP-Pb3ixpOwhi1GfoLq4yZG1o-ZwX2EXK_Z-U0Gg,13161
145
176
  mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
146
177
  mat3ra/esse/models/method/categorized_method.py,sha256=f2dQIPERDoY61WL-KR_6dmAftRyPv_d_J6XSaV5yjqE,2479
147
178
  mat3ra/esse/models/method/method_parameters.py,sha256=CH4qkchLAsq_L0iaet5dESnbTePbQYfXK47U8MemrxQ,1086
@@ -321,7 +352,7 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
321
352
  mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
322
353
  mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
323
354
  mat3ra/esse/models/properties_directory/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
324
- mat3ra/esse/models/properties_directory/derived_properties.py,sha256=GTCvUFZ5gB1Uu3jJiTrEH-gORT3FuT4letDIHh4rB40,3010
355
+ mat3ra/esse/models/properties_directory/derived_properties.py,sha256=581g11RxSUAbbhlr-XJv2GKnJPfkuOy034s-aXEdnlY,3010
325
356
  mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
326
357
  mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
327
358
  mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=VsSKIbLYl9GseztXyzggDAMyMH0qJ3s_9IS8lxYKz88,591
@@ -332,31 +363,31 @@ mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,
332
363
  mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=7ypgPAH8RgGlntishJctQeAFDsjBUbSoZ0GfRwue85I,1817
333
364
  mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=W7-ZbbqDqEC42glSrpzvR__UvKeEA7rWEM5kDrp97BY,1588
334
365
  mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py,sha256=PSA9V0WCP0Zur_OmzFPLD_3X8Ovttl1z4yzMeWBDOy8,1295
335
- mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=GxGvIvKXi-pevLs9oUWWZjMI3hQQCcnfZDWE5CwqS3A,2010
366
+ mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=_yg81L8sGD9CRId-4isg1AVUma2wmxOWN1qu7uSsvW4,2010
336
367
  mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_1KlHVqxzjgh9Z36kpsjeHRi-SsjxhmLWt8wMYi_6rc,807
337
368
  mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkzH_EQ-aViO7aCxhPgNDXIAr2MqfF6vQfZaC6pc,1429
338
369
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
339
370
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
340
371
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py,sha256=xDW1U9JsHKdoPZlTPmm-mDepEqHoOEomQNFDc1pPtbk,1278
341
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=NW5BXeR0o7Co-eVCoMAlt9xVtPaaaUD88jL0k1JeL_k,1382
342
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=LcVLzyPOezgMf_q4iyEPMuPrncXqYA6skQiMntfcgF8,1403
372
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=czRkdDeljCnCAXZ0gQ755g4o43RBykyJd9Tcss2xbVI,1382
373
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=EISxSp_sZMf0w0uuRJlLrJbw2pV9O2bSi36DzZCVKN0,1403
343
374
  mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
344
375
  mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
345
376
  mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py,sha256=dFsa5qUQo8PDiZG_tZ-DQX7YiXflvb_gcGQHm9NXmMc,758
346
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=oVXzpB-uZlsCw6BKowcdz4KV9focMEJkNJwxVe2NTDU,4432
347
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=5NgUTOnQag75Y2TprLH8KVaM3h4sW9ZY7ycRblHY0CU,1562
377
+ mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=8Vfmq8_EeWpqHh6_MGFMpR8GPCdwF9HsQGyYSlzV0gI,4458
378
+ mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=N-r9hNGdDh7c_PcsHHs3FqTMtPWwl5Lw-t3SVhr2Vvs,1562
348
379
  mat3ra/esse/models/properties_directory/scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
349
- mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=jGHVe-rZY0bPJ1_lcZcZ4RVGlweUxh03n75N_eGGWwo,612
350
- mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=zq9cRpy8x5TGnDNmfZFuIx29j8qxPBR6kkyDWFn7wfM,592
351
- mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=GKpU_PD7KFfW_w4Kwk-lM5SaygNR2pSdg9h6d8k-6ak,608
352
- mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=9Uf5RimZZSsLJU6iP3vFNzJiTZRqu_P3MDb16Lj-Av4,624
380
+ mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=eMtP2Or3BFOfGUWYafbjqs6aDpHN4fRPL1s07W7sfl0,612
381
+ mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=cP3EYFQTPso83nNPwD-qrdCgtouSlvMorWazzRjuY5U,592
382
+ mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=b2oKi7kAGRTvBJbHX663X8c64fmkPcZutOE2A-KeOk4,608
383
+ mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=VPBXXE36KW5YQxRk5C39fHfZzbL8c5qGSSbo5_FshBM,624
353
384
  mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=I6OrUOgvCUmXr1dD7Gfn17wAObEWVJW5vy6bdHf5qYE,443
354
- mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=qyAdk4ukgKzEu7Brgo82kyGrBU4z-1-EZeYxvaed1LI,635
355
- mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=L3GyBbKRyBJPAKtzWmHzwPv4qdcKX35tM2bi8AwulZE,600
356
- mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=V9_HcGO8WUS-whtPTFUWR6R0Z0yG-S3dUavE9hOnllA,592
385
+ mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=Yd1CDnSzXBV7Nw8hZb8jzyKII2ck00KC-aTxHM61K3o,635
386
+ mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=y3bG3HgGda0QIV6eRtm03P0asIebhY6ONTRt5nPFFnM,600
387
+ mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=DdrvrboiaTOwJOqllzE3pyyFuyaE3FUn0OPuIburkLQ,592
357
388
  mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=l8X_eaNZNgm5rT_vEsNm5uaxBhAs3zGAcY-3MQHKLss,581
358
- mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=1m2X4i5UdE3rYJ-QK0FQD5iClW9d-Lut7cSKLbbUqDE,619
359
- mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=Xire0iYsPAR-dOzyfOieBvkfeumVDlnfjCVtcN5-gus,611
389
+ mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=sxeVsL1PMjrfDdCDHCpBjMwqN9WPCUNheeJfLjfbyHc,619
390
+ mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=ZDZJvN5zDm3HV8nE-qsVbLRQOH3eUnJhO0lbWIEj0EQ,611
360
391
  mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
361
392
  mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
362
393
  mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
@@ -364,18 +395,18 @@ mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP
364
395
  mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
365
396
  mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
366
397
  mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=sgvKUcrr5iVhWTbalWt_-aGxUo9MFU9qLivCfmbr-nI,774
367
- mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=GmVlLnf8d-4wouDNIoNqMyCWjHlapDoAVd75Ny9rXm4,1789
398
+ mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=i5GbSpFq2jK6ecAU91HQZbIal5etHCZ6e7LnCe7W4WA,1789
368
399
  mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
369
400
  mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
370
401
  mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
371
- mat3ra/esse/models/properties_directory/structural/basis/__init__.py,sha256=yy7xMEaJlBACN3qUWryJNlDxKRHxRyGmUtMpm6GeLv4,1437
402
+ mat3ra/esse/models/properties_directory/structural/basis/__init__.py,sha256=cMUCwNAUqF7vV6pJXl81N9Pry9fLqu4l09a_p4AlBBE,3168
372
403
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraint.py,sha256=MJfolJSgvQ4zPWZi36Y-9fUUkfSnVBKW0HCDhxsEfHM,441
373
404
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints.py,sha256=GCngLkD-6_Xkn6WL0vqj5r14vJrnT-JE68TWMwCDAso,660
374
405
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py,sha256=BqRWld9jbvPw2hUYMu83QbFoZNvfXt2o-_w_TBB_aeY,779
375
406
  mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinate.py,sha256=JTRnk_xltFjOg-pS8-pS_h6WPL60FrY4t2HJyqJ2zaA,466
376
407
  mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinates.py,sha256=m0aJfvZ2j_H2zzB-dt5jr0e9V-tT9t4DUAA6klL4jtE,685
377
- mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py,sha256=d6cCqJjOU5vun-Wat42YbZCp-xZ9vAGLg9jfVOhTFYU,349
378
- mat3ra/esse/models/properties_directory/structural/basis/atomic_elements.py,sha256=wjiLkPdmIAvFIq3X4pu3DqiyCjZuhQcvFZ1KGA-5qco,585
408
+ mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py,sha256=d03qfKF6W9tacxYSvtpTJSY3KSRRNtSA1zsXzd6HpOg,2128
409
+ mat3ra/esse/models/properties_directory/structural/basis/atomic_elements.py,sha256=8Qdu54enkbZNT3HdisGiNMGNxpFaqIugEKNQoSoSU6k,2345
379
410
  mat3ra/esse/models/properties_directory/structural/basis/atomic_label.py,sha256=njbXBHakrcBeA5sAN-rd5vKFln-9UmSFcP52o-UiEYs,425
380
411
  mat3ra/esse/models/properties_directory/structural/basis/atomic_labels.py,sha256=Iuug5ZGmvd0rGOedso9uJX-qRTR64XXeYiMjmMpLWIM,632
381
412
  mat3ra/esse/models/properties_directory/structural/basis/bonds.py,sha256=cToJoqVarNjMvpFfAYFUpQ0dYUFFeIToj6sDXk3pbkA,929
@@ -396,7 +427,7 @@ mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=vZ7ts
396
427
  mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=KnVmYAti3CfLIds1wVM8qW_cN75VGGdWQ7Ew3VFPpSE,742
397
428
  mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
398
429
  mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=MuMgO1Gq1285cvnjASCcFsHOD2ArcSjrV2OOWISF-M4,558
399
- mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=q4xQSEceNkGIe1RFUY2u3_lffn2v_X7ZcOaUW5v1KRk,1306
430
+ mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=Ov8NV4CcOwNtrpftDDupnGdgOIQKLyErwED_-HZ-xbg,1306
400
431
  mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
401
432
  mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
402
433
  mat3ra/esse/models/property/base.py,sha256=mb5Q1XgYt7WrFhUir0O99ufQNzhiJog0yfoqECokquA,5003
@@ -533,8 +564,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
533
564
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
534
565
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
535
566
  mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
536
- mat3ra_esse-2025.5.16.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
537
- mat3ra_esse-2025.5.16.post0.dist-info/METADATA,sha256=04lS7Ed5xaQgwfyPsfFG_rJuU6xGMvWim4avVPx4rzw,9000
538
- mat3ra_esse-2025.5.16.post0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
539
- mat3ra_esse-2025.5.16.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
540
- mat3ra_esse-2025.5.16.post0.dist-info/RECORD,,
567
+ mat3ra_esse-2025.5.16.post1.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
568
+ mat3ra_esse-2025.5.16.post1.dist-info/METADATA,sha256=b4VJOAhW7fdX3K7P7GuIE27MngHs7tvZJ4kRf1Ew5IA,9000
569
+ mat3ra_esse-2025.5.16.post1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
570
+ mat3ra_esse-2025.5.16.post1.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
571
+ mat3ra_esse-2025.5.16.post1.dist-info/RECORD,,