mat3ra-esse 2025.5.13.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 (74) 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/apse/materials/builders/slab/pymatgen/__init__.py +3 -0
  5. mat3ra/esse/models/apse/materials/builders/slab/pymatgen/parameters.py +28 -0
  6. mat3ra/esse/models/core/reusable/energy.py +2 -2
  7. mat3ra/esse/models/element.py +128 -10
  8. mat3ra/esse/models/enums/__init__.py +3 -0
  9. mat3ra/esse/models/enums/chemical_elements.py +13 -0
  10. mat3ra/esse/models/material/__init__.py +140 -14
  11. mat3ra/esse/models/material/builders/base/__init__.py +3 -0
  12. mat3ra/esse/models/material/builders/base/selector_parameters.py +16 -0
  13. mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/__init__.py +3 -0
  14. mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/builder_parameters.py +28 -0
  15. mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py +151 -0
  16. mat3ra/esse/models/material/reusable/slab/enums/__init__.py +3 -0
  17. mat3ra/esse/models/material/reusable/slab/enums/exposed_face.py +13 -0
  18. mat3ra/esse/models/material/reusable/slab/number_of_layers.py +1 -1
  19. mat3ra/esse/models/material/reusable/slab/termination.py +129 -3
  20. mat3ra/esse/models/material/reusable/slab/vacuum.py +2 -2
  21. mat3ra/esse/models/materials_category/defects/__init__.py +3 -0
  22. mat3ra/esse/models/materials_category/defects/configuration.py +538 -0
  23. mat3ra/esse/models/materials_category/defects/enums/__init__.py +3 -0
  24. mat3ra/esse/models/materials_category/defects/enums/atom_placement_method.py +22 -0
  25. mat3ra/esse/models/materials_category/defects/enums/complex_defect_type.py +18 -0
  26. mat3ra/esse/models/materials_category/defects/enums/coordinates_shape.py +21 -0
  27. mat3ra/esse/models/materials_category/defects/enums/point_defect_type.py +13 -0
  28. mat3ra/esse/models/materials_category/defects/enums/slab_defect_type.py +19 -0
  29. mat3ra/esse/models/materials_category/defects/enums.py +13 -0
  30. mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/__init__.py +3 -0
  31. mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py +425 -0
  32. mat3ra/esse/models/materials_category/defects/slab/__init__.py +3 -0
  33. mat3ra/esse/models/materials_category/defects/slab/configuration.py +412 -0
  34. mat3ra/esse/models/materials_category/defects/two_dimensional/island/__init__.py +3 -0
  35. mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py +449 -0
  36. mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/__init__.py +3 -0
  37. mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/configuration.py +1105 -0
  38. mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/__init__.py +3 -0
  39. mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/base_configuration.py +418 -0
  40. mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/configuration.py +418 -0
  41. mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/__init__.py +3 -0
  42. mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/configuration.py +1026 -0
  43. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/__init__.py +3 -0
  44. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/base_configuration.py +30 -0
  45. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py +672 -0
  46. mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/__init__.py +3 -0
  47. mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/configuration.py +434 -0
  48. mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py +142 -16
  49. mat3ra/esse/models/properties_directory/derived_properties.py +11 -11
  50. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +2 -2
  51. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
  52. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
  53. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
  54. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
  55. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +2 -2
  56. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +2 -2
  57. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +2 -2
  58. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +2 -2
  59. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
  60. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
  61. mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
  62. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
  63. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
  64. mat3ra/esse/models/properties_directory/structural/basis/__init__.py +128 -2
  65. mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py +131 -2
  66. mat3ra/esse/models/properties_directory/structural/basis/atomic_elements.py +130 -3
  67. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
  68. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +2 -2
  69. {mat3ra_esse-2025.5.13.post0.dist-info → mat3ra_esse-2025.5.16.post1.dist-info}/METADATA +1 -1
  70. {mat3ra_esse-2025.5.13.post0.dist-info → mat3ra_esse-2025.5.16.post1.dist-info}/RECORD +73 -36
  71. {mat3ra_esse-2025.5.13.post0.dist-info → mat3ra_esse-2025.5.16.post1.dist-info}/WHEEL +1 -1
  72. mat3ra/esse/models/material/reusable/slab/thickness.py +0 -16
  73. {mat3ra_esse-2025.5.13.post0.dist-info → mat3ra_esse-2025.5.16.post1.dist-info}/licenses/LICENSE.md +0 -0
  74. {mat3ra_esse-2025.5.13.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.13.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=F3zA1HDTRS-UeCrJfOqws4Rn4pxUpFUz8oB6iEL4YIU,48407
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=8W5IEjOODsqZ9XgvrjCi0gev2Bk8EVkOxzx0KaGZKLU,1605255
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
@@ -24,6 +24,8 @@ mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/hubbard.py,sha256=e8
24
24
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/ions.py,sha256=CH5m46RhLybNzUCwZDKMPxO8S7flgigMeHOjYgt7xNI,15280
25
25
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/k_points.py,sha256=N2fxAVS3Bt-bwIpslNqyrQb2f3mCXY_S6Uc4heCz19E,1602
26
26
  mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/system.py,sha256=k1G0aNawyd6Y1gPWeH4tFZxpd5wNXwpQiwMQMHUEI5k,34350
27
+ 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
27
29
  mat3ra/esse/models/core/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
28
30
  mat3ra/esse/models/core/abstract/2d_data.py,sha256=QiWkaGXriph7QwLWF3LuRddSal7fLEakNMh2DkuCNCc,426
29
31
  mat3ra/esse/models/core/abstract/2d_plot.py,sha256=q2qJuDQ10UtiJvZcGzWWv9T9qHJ8HwP-kING3w6cUWM,812
@@ -92,7 +94,7 @@ mat3ra/esse/models/core/reusable/band_gap.py,sha256=_L79BKX80sAH7ZuyxFSdomJLS2dq
92
94
  mat3ra/esse/models/core/reusable/categories.py,sha256=Z90c6gdSMUdEYwoThEyusMXb5ufqoQh-tISYafPWwME,1350
93
95
  mat3ra/esse/models/core/reusable/category_path.py,sha256=SFyMHOXwrIewKkr4lCZRfSO-oszEx29XEK6TuLJrBtQ,359
94
96
  mat3ra/esse/models/core/reusable/dielectric_tensor_component.py,sha256=_rr6oeTSxUp9iIwaDNt84oeu32_EMXB2vb-MeuxosjY,623
95
- mat3ra/esse/models/core/reusable/energy.py,sha256=Zs5Qxv64yae9Xkhh4YTlpfK8MeuVZefsOMVjvGmeNVM,512
97
+ mat3ra/esse/models/core/reusable/energy.py,sha256=yoi6fsqro_BZ9pclhknXCbHEnbDuwMnNLrkr7c61B3Y,512
96
98
  mat3ra/esse/models/core/reusable/energy_accuracy_levels.py,sha256=ndCRZOzYZZ-Ok-mjANEKtvOuMSQvE2WzCXqXvrJrNtA,655
97
99
  mat3ra/esse/models/core/reusable/file_metadata.py,sha256=DyPL1zQJR3HTyOGgvQzE7BxasTCkVRffeG_4WKfxf-8,520
98
100
  mat3ra/esse/models/core/reusable/frequency_function_matrix.py,sha256=I4B-ukMJ_aGpP_PHDd63bW8Jav1mreGeMiLqtrElIno,429
@@ -109,6 +111,8 @@ mat3ra/esse/models/core/reusable/energy_accuracy_levels/Reusable_schema_for_ener
109
111
  mat3ra/esse/models/definitions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
110
112
  mat3ra/esse/models/definitions/constants.py,sha256=53q7UtK31QOF3h4rVbOq4vNyXSqSjIL437A78i_5NaA,933
111
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
112
116
  mat3ra/esse/models/in_memory_entity/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
113
117
  mat3ra/esse/models/in_memory_entity/base.py,sha256=amGKCTG4wJbOtfjciYGC35WEuExOIxU9k6Fc6Lk1vgk,574
114
118
  mat3ra/esse/models/in_memory_entity/defaultable.py,sha256=SAKO1RtMzKoz3d9JBokbzGHy0BOZcD5AfclytyVZ9zU,684
@@ -120,9 +124,14 @@ mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7
120
124
  mat3ra/esse/models/job/__init__.py,sha256=tQXT9GQRHDoVyW9AmI_Sjkqg78fkKSb4tL6TmWn--m4,64815
121
125
  mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
122
126
  mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
123
- mat3ra/esse/models/material/__init__.py,sha256=7CnepGoWJH7ENKsgm6y0Hplxajbpv2QravDZOEBXYvk,9940
127
+ mat3ra/esse/models/material/__init__.py,sha256=rk8tAZN-0ZbMsSWjY_LuEDEERf6Qmf02i_CZpP9uapk,11673
124
128
  mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
125
129
  mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
130
+ mat3ra/esse/models/material/builders/base/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
131
+ mat3ra/esse/models/material/builders/base/selector_parameters.py,sha256=ePtuNvhoyfzmhQD1OEwIvzVyteyakcNBqvCoLCPofOw,370
132
+ mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
133
+ mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/builder_parameters.py,sha256=4vq5IwymOgpi24Eu1tus6pByU6z27BVTClH9lhjg5Mg,743
134
+ mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py,sha256=1RpA1SmyVMGZOcOwW30Vl470e2nQFJNKhUSvyQBKmRo,2611
126
135
  mat3ra/esse/models/material/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
127
136
  mat3ra/esse/models/material/reusable/repetitions.py,sha256=CpJjyQLz0MoQsp5fiLSCNDE1NfajQYTRjUJTzLb9YHc,754
128
137
  mat3ra/esse/models/material/reusable/supercell_matrix_2d.py,sha256=Ul--ruw2s6JRVwu4y6M-YKSZBmZb6uI-pfC-Ua0ZWus,722
@@ -130,12 +139,40 @@ mat3ra/esse/models/material/reusable/supercell_matrix_3d.py,sha256=tqKLcZyV3zaSq
130
139
  mat3ra/esse/models/material/reusable/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
131
140
  mat3ra/esse/models/material/reusable/slab/enums.py,sha256=ahZsneu0LQal4eYK3wo1YbFZKogytxYYMm0DEh8e4KQ,252
132
141
  mat3ra/esse/models/material/reusable/slab/miller_indices.py,sha256=FIqFq2U34Q0g5zA8QF9twGHEc3vbkeyJb8fcexQJn8Q,467
133
- mat3ra/esse/models/material/reusable/slab/number_of_layers.py,sha256=qtAuqvDHj1WJLnGTvvkROC0n6m30RVzcMsLUufjpUOs,440
134
- mat3ra/esse/models/material/reusable/slab/termination.py,sha256=XyejfZbAafuE00ghnaf3YX7pY6IX0IgaXnYA6ps3FpQ,506
135
- mat3ra/esse/models/material/reusable/slab/thickness.py,sha256=XHpdMvU4gd3qRKeTUgycKD4hk32ZyLKcE-3ehDUCk7c,442
136
- mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=FKs9OwwTICl2OyJ1xXmd7FqpFa-bxf-KLScOYLxLfBo,402
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
137
174
  mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
138
- mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=cNK2sdXgr2F0Y6KSZyb9iygI0gbKeiX4ANZ4k7AuIMM,11416
175
+ mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=n-EXP-Pb3ixpOwhi1GfoLq4yZG1o-ZwX2EXK_Z-U0Gg,13161
139
176
  mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
140
177
  mat3ra/esse/models/method/categorized_method.py,sha256=f2dQIPERDoY61WL-KR_6dmAftRyPv_d_J6XSaV5yjqE,2479
141
178
  mat3ra/esse/models/method/method_parameters.py,sha256=CH4qkchLAsq_L0iaet5dESnbTePbQYfXK47U8MemrxQ,1086
@@ -315,7 +352,7 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
315
352
  mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
316
353
  mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
317
354
  mat3ra/esse/models/properties_directory/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
318
- 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
319
356
  mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
320
357
  mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
321
358
  mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=VsSKIbLYl9GseztXyzggDAMyMH0qJ3s_9IS8lxYKz88,591
@@ -326,31 +363,31 @@ mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,
326
363
  mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=7ypgPAH8RgGlntishJctQeAFDsjBUbSoZ0GfRwue85I,1817
327
364
  mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=W7-ZbbqDqEC42glSrpzvR__UvKeEA7rWEM5kDrp97BY,1588
328
365
  mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py,sha256=PSA9V0WCP0Zur_OmzFPLD_3X8Ovttl1z4yzMeWBDOy8,1295
329
- 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
330
367
  mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_1KlHVqxzjgh9Z36kpsjeHRi-SsjxhmLWt8wMYi_6rc,807
331
368
  mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkzH_EQ-aViO7aCxhPgNDXIAr2MqfF6vQfZaC6pc,1429
332
369
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
333
370
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
334
371
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py,sha256=xDW1U9JsHKdoPZlTPmm-mDepEqHoOEomQNFDc1pPtbk,1278
335
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=NW5BXeR0o7Co-eVCoMAlt9xVtPaaaUD88jL0k1JeL_k,1382
336
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=LcVLzyPOezgMf_q4iyEPMuPrncXqYA6skQiMntfcgF8,1403
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
337
374
  mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
338
375
  mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
339
376
  mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py,sha256=dFsa5qUQo8PDiZG_tZ-DQX7YiXflvb_gcGQHm9NXmMc,758
340
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=oVXzpB-uZlsCw6BKowcdz4KV9focMEJkNJwxVe2NTDU,4432
341
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=5NgUTOnQag75Y2TprLH8KVaM3h4sW9ZY7ycRblHY0CU,1562
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
342
379
  mat3ra/esse/models/properties_directory/scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
343
- mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=jGHVe-rZY0bPJ1_lcZcZ4RVGlweUxh03n75N_eGGWwo,612
344
- mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=zq9cRpy8x5TGnDNmfZFuIx29j8qxPBR6kkyDWFn7wfM,592
345
- mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=GKpU_PD7KFfW_w4Kwk-lM5SaygNR2pSdg9h6d8k-6ak,608
346
- mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=9Uf5RimZZSsLJU6iP3vFNzJiTZRqu_P3MDb16Lj-Av4,624
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
347
384
  mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=I6OrUOgvCUmXr1dD7Gfn17wAObEWVJW5vy6bdHf5qYE,443
348
- mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=qyAdk4ukgKzEu7Brgo82kyGrBU4z-1-EZeYxvaed1LI,635
349
- mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=L3GyBbKRyBJPAKtzWmHzwPv4qdcKX35tM2bi8AwulZE,600
350
- mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=V9_HcGO8WUS-whtPTFUWR6R0Z0yG-S3dUavE9hOnllA,592
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
351
388
  mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=l8X_eaNZNgm5rT_vEsNm5uaxBhAs3zGAcY-3MQHKLss,581
352
- mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=1m2X4i5UdE3rYJ-QK0FQD5iClW9d-Lut7cSKLbbUqDE,619
353
- mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=Xire0iYsPAR-dOzyfOieBvkfeumVDlnfjCVtcN5-gus,611
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
354
391
  mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
355
392
  mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
356
393
  mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
@@ -358,18 +395,18 @@ mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP
358
395
  mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
359
396
  mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
360
397
  mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=sgvKUcrr5iVhWTbalWt_-aGxUo9MFU9qLivCfmbr-nI,774
361
- 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
362
399
  mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
363
400
  mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
364
401
  mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
365
- 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
366
403
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraint.py,sha256=MJfolJSgvQ4zPWZi36Y-9fUUkfSnVBKW0HCDhxsEfHM,441
367
404
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints.py,sha256=GCngLkD-6_Xkn6WL0vqj5r14vJrnT-JE68TWMwCDAso,660
368
405
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py,sha256=BqRWld9jbvPw2hUYMu83QbFoZNvfXt2o-_w_TBB_aeY,779
369
406
  mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinate.py,sha256=JTRnk_xltFjOg-pS8-pS_h6WPL60FrY4t2HJyqJ2zaA,466
370
407
  mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinates.py,sha256=m0aJfvZ2j_H2zzB-dt5jr0e9V-tT9t4DUAA6klL4jtE,685
371
- mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py,sha256=d6cCqJjOU5vun-Wat42YbZCp-xZ9vAGLg9jfVOhTFYU,349
372
- 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
373
410
  mat3ra/esse/models/properties_directory/structural/basis/atomic_label.py,sha256=njbXBHakrcBeA5sAN-rd5vKFln-9UmSFcP52o-UiEYs,425
374
411
  mat3ra/esse/models/properties_directory/structural/basis/atomic_labels.py,sha256=Iuug5ZGmvd0rGOedso9uJX-qRTR64XXeYiMjmMpLWIM,632
375
412
  mat3ra/esse/models/properties_directory/structural/basis/bonds.py,sha256=cToJoqVarNjMvpFfAYFUpQ0dYUFFeIToj6sDXk3pbkA,929
@@ -390,7 +427,7 @@ mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=vZ7ts
390
427
  mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=KnVmYAti3CfLIds1wVM8qW_cN75VGGdWQ7Ew3VFPpSE,742
391
428
  mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
392
429
  mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=MuMgO1Gq1285cvnjASCcFsHOD2ArcSjrV2OOWISF-M4,558
393
- 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
394
431
  mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
395
432
  mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
396
433
  mat3ra/esse/models/property/base.py,sha256=mb5Q1XgYt7WrFhUir0O99ufQNzhiJog0yfoqECokquA,5003
@@ -527,8 +564,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
527
564
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
528
565
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
529
566
  mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
530
- mat3ra_esse-2025.5.13.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
531
- mat3ra_esse-2025.5.13.post0.dist-info/METADATA,sha256=WV1OaGpBmyAiLxP7dvlilPLoVcbJZqc494qJbB4-riM,9000
532
- mat3ra_esse-2025.5.13.post0.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
533
- mat3ra_esse-2025.5.13.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
534
- mat3ra_esse-2025.5.13.post0.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.4.0)
2
+ Generator: setuptools (80.7.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,16 +0,0 @@
1
- # generated by datamodel-codegen:
2
- # filename: material/reusable/slab/number_of_layers.json
3
- # version: 0.28.5
4
-
5
- from __future__ import annotations
6
-
7
- from typing import Optional
8
-
9
- from pydantic import Field, RootModel, conint
10
-
11
-
12
- class number_of_layersSchema(RootModel[Optional[conint(ge=1)]]):
13
- root: Optional[conint(ge=1)] = Field(1, title="number_of_layers Schema")
14
- """
15
- Number of atomic layers in a structural component
16
- """