mat3ra-esse 2025.5.16.post0__py3-none-any.whl → 2025.5.17.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 (81) 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/definitions/chemical_elements.py +13 -0
  6. mat3ra/esse/models/definitions/materials.py +13 -0
  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/single_material/two_dimensional/slab/selector_parameters.py +128 -4
  12. mat3ra/esse/models/material/reusable/slab/enums/__init__.py +3 -0
  13. mat3ra/esse/models/material/reusable/slab/enums/exposed_face.py +13 -0
  14. mat3ra/esse/models/material/reusable/slab/number_of_layers.py +1 -1
  15. mat3ra/esse/models/material/reusable/slab/termination.py +129 -3
  16. mat3ra/esse/models/material/reusable/slab/vacuum.py +2 -2
  17. mat3ra/esse/models/materials_category/defects/__init__.py +3 -0
  18. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/__init__.py +3 -0
  19. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/__init__.py +3 -0
  20. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/configuration.py +672 -0
  21. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/configuration.py +546 -0
  22. mat3ra/esse/models/materials_category/defects/configuration.py +541 -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/complex/__init__.py +3 -0
  42. mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair.py +1534 -0
  43. mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/__init__.py +3 -0
  44. mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/configuration.py +1026 -0
  45. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/__init__.py +3 -0
  46. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/base_configuration.py +30 -0
  47. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py +672 -0
  48. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/__init__.py +3 -0
  49. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py +672 -0
  50. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/__init__.py +3 -0
  51. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py +672 -0
  52. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/__init__.py +3 -0
  53. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py +672 -0
  54. mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/__init__.py +3 -0
  55. mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/configuration.py +434 -0
  56. mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py +142 -16
  57. mat3ra/esse/models/properties_directory/derived_properties.py +11 -11
  58. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +2 -2
  59. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
  60. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
  61. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
  62. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
  63. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +2 -2
  64. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +2 -2
  65. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +2 -2
  66. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +2 -2
  67. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
  68. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
  69. mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
  70. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
  71. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
  72. mat3ra/esse/models/properties_directory/structural/basis/__init__.py +128 -2
  73. mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py +131 -2
  74. mat3ra/esse/models/properties_directory/structural/basis/atomic_elements.py +130 -3
  75. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
  76. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +2 -2
  77. {mat3ra_esse-2025.5.16.post0.dist-info → mat3ra_esse-2025.5.17.post0.dist-info}/METADATA +1 -1
  78. {mat3ra_esse-2025.5.16.post0.dist-info → mat3ra_esse-2025.5.17.post0.dist-info}/RECORD +81 -36
  79. {mat3ra_esse-2025.5.16.post0.dist-info → mat3ra_esse-2025.5.17.post0.dist-info}/WHEEL +0 -0
  80. {mat3ra_esse-2025.5.16.post0.dist-info → mat3ra_esse-2025.5.17.post0.dist-info}/licenses/LICENSE.md +0 -0
  81. {mat3ra_esse-2025.5.16.post0.dist-info → mat3ra_esse-2025.5.17.post0.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 Name118(Enum):
41
41
  ring = "ring"
42
42
 
43
43
 
44
44
  class RingPatternSchema(BaseModel):
45
- name: Optional[Name62] = None
45
+ name: Optional[Name118] = 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 Name119(Enum):
54
54
  special_bond = "special_bond"
55
55
 
56
56
 
57
57
  class SpecialBondPatternSchema(BaseModel):
58
- name: Optional[Name63] = None
58
+ name: Optional[Name119] = 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 Units54(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[Units54] = 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.17.post0
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=ThOlaFxBZCJs3v8fSBP0XQZw0HL4JTi6KloWdIqx7hI,54800
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=dLxU-CGYrq0TTfJOwpnd5ghhDKZqwp8I-vl6VLIGY8U,1779407
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=BkbJnlxQ9b1uE9p9C4RfmTc5xCQ0Jzue66lSNHrHohw,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=Tz5Mz5r9W1qKZCoV-9NDsMMzzXWxzPBoA00kDFVeJis,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=qGAgrXgJrZWyt70pptomMlvLrSt8d6_DD7lWfI_FndQ,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
@@ -109,8 +109,12 @@ mat3ra/esse/models/core/reusable/energy_accuracy_levels/__init__.py,sha256=A62Az
109
109
  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
110
  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
111
111
  mat3ra/esse/models/definitions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
112
+ mat3ra/esse/models/definitions/chemical_elements.py,sha256=5Rc3-V1m7i_t20FgIVUs0njJL7s-JqYYTUqFufvH3AA,314
112
113
  mat3ra/esse/models/definitions/constants.py,sha256=53q7UtK31QOF3h4rVbOq4vNyXSqSjIL437A78i_5NaA,933
114
+ mat3ra/esse/models/definitions/materials.py,sha256=Qzx6wi3SzRfILeuJlpAoOdFmC5VB1UOW3RkrLTg4XWU,301
113
115
  mat3ra/esse/models/definitions/units.py,sha256=4yoh-9dCLZhM02beLXVCuA4TpkPgm-QgEoWTvLkTBEs,296
116
+ mat3ra/esse/models/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
117
+ mat3ra/esse/models/enums/chemical_elements.py,sha256=HeEgUBgIGHe7EpGVYQ0uthkg-UDNeWMksgvzbrHjhZA,308
114
118
  mat3ra/esse/models/in_memory_entity/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
115
119
  mat3ra/esse/models/in_memory_entity/base.py,sha256=amGKCTG4wJbOtfjciYGC35WEuExOIxU9k6Fc6Lk1vgk,574
116
120
  mat3ra/esse/models/in_memory_entity/defaultable.py,sha256=SAKO1RtMzKoz3d9JBokbzGHy0BOZcD5AfclytyVZ9zU,684
@@ -122,14 +126,14 @@ mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7
122
126
  mat3ra/esse/models/job/__init__.py,sha256=tQXT9GQRHDoVyW9AmI_Sjkqg78fkKSb4tL6TmWn--m4,64815
123
127
  mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
124
128
  mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
125
- mat3ra/esse/models/material/__init__.py,sha256=7CnepGoWJH7ENKsgm6y0Hplxajbpv2QravDZOEBXYvk,9940
129
+ mat3ra/esse/models/material/__init__.py,sha256=Jg6TeT-SA-lLUwfWHlnMkwVqLziik-r3isPxtjXT_ns,11681
126
130
  mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
127
131
  mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
128
132
  mat3ra/esse/models/material/builders/base/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
129
133
  mat3ra/esse/models/material/builders/base/selector_parameters.py,sha256=ePtuNvhoyfzmhQD1OEwIvzVyteyakcNBqvCoLCPofOw,370
130
134
  mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
131
135
  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
136
+ mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py,sha256=1RpA1SmyVMGZOcOwW30Vl470e2nQFJNKhUSvyQBKmRo,2611
133
137
  mat3ra/esse/models/material/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
134
138
  mat3ra/esse/models/material/reusable/repetitions.py,sha256=CpJjyQLz0MoQsp5fiLSCNDE1NfajQYTRjUJTzLb9YHc,754
135
139
  mat3ra/esse/models/material/reusable/supercell_matrix_2d.py,sha256=Ul--ruw2s6JRVwu4y6M-YKSZBmZb6uI-pfC-Ua0ZWus,722
@@ -137,11 +141,52 @@ mat3ra/esse/models/material/reusable/supercell_matrix_3d.py,sha256=tqKLcZyV3zaSq
137
141
  mat3ra/esse/models/material/reusable/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
138
142
  mat3ra/esse/models/material/reusable/slab/enums.py,sha256=ahZsneu0LQal4eYK3wo1YbFZKogytxYYMm0DEh8e4KQ,252
139
143
  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
144
+ mat3ra/esse/models/material/reusable/slab/number_of_layers.py,sha256=-tw5Z2q1eIXe3rm3XOCI_ux31QS6463sb3n0qHQ8Tkc,440
145
+ mat3ra/esse/models/material/reusable/slab/termination.py,sha256=-Zh961QVKipjdbEgcD5Ddqjyftyo0ikNNiUl9334rEo,2364
146
+ mat3ra/esse/models/material/reusable/slab/vacuum.py,sha256=GlJFBUUYc8JP-zqdLXaUf899-3fy1X2p_sdzbpwPlw8,421
147
+ mat3ra/esse/models/material/reusable/slab/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
148
+ mat3ra/esse/models/material/reusable/slab/enums/exposed_face.py,sha256=-MUlEELT-ec-0XtmZrsrs2HVviP-ITmhxJYiR_1ab5M,268
149
+ mat3ra/esse/models/materials_category/defects/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
150
+ mat3ra/esse/models/materials_category/defects/configuration.py,sha256=Dv9ik3_Q2yDp5Re_MNrXyr_dpJ9SPqyofBrKn2QWvGg,11953
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=KOgTM-Nf5dDcWd3jeaXRQqXMWSZUsWWBk1Rw4ZNXepk,12191
154
+ 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=fqCDslDtu05vFxoxoAHkdZK3pQeLTzhGY5MtMlpjWlA,14018
156
+ mat3ra/esse/models/materials_category/defects/enums/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
157
+ mat3ra/esse/models/materials_category/defects/enums/atom_placement_method.py,sha256=r2_0uqfUU5oq8EYwX9DJ387FkliyMI7g3ys1DmvdxKs,555
158
+ mat3ra/esse/models/materials_category/defects/enums/complex_defect_type.py,sha256=v9IU5XENca1s9-dezzmRxAQT-rtcUdBnHAU0DBkQJAY,399
159
+ mat3ra/esse/models/materials_category/defects/enums/coordinates_shape.py,sha256=gedgLkXg_RWGe1LvRx1QsXoqblZ6jdBIjb2h5VxPrc4,493
160
+ mat3ra/esse/models/materials_category/defects/enums/point_defect_type.py,sha256=Wsg5UOsO9cvpuATN0RMPIwuo8DsEBCQDa2X4pez22Ho,313
161
+ mat3ra/esse/models/materials_category/defects/enums/slab_defect_type.py,sha256=zbxuqPNU-KCFelxM1iLHNvKGpq0Dhb9fKxfIbf85lvc,412
162
+ mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
163
+ mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py,sha256=XX3KzkupsXZ66Lcogy2oBG4jYKQzTv4wb14el07sEjk,10832
164
+ mat3ra/esse/models/materials_category/defects/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
165
+ mat3ra/esse/models/materials_category/defects/slab/configuration.py,sha256=6yZFhYuWyfuYj8Y-VpDf0o52MMbzbf-o_gVrEIZXZhQ,10258
166
+ mat3ra/esse/models/materials_category/defects/two_dimensional/island/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
167
+ mat3ra/esse/models/materials_category/defects/two_dimensional/island/configuration.py,sha256=DwPZF0zzH4Lsit8dwP958kWLRi1eY1jPgMPH9zd4Trs,11602
168
+ mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
169
+ mat3ra/esse/models/materials_category/defects/two_dimensional/slab_grain_boundary/configuration.py,sha256=bOzQGR95bH5ZSiZFh-D9TEumK2cLqhbtKlQh2An3eJM,29926
170
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
171
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/base_configuration.py,sha256=-U147Otr9n7CED5TKyejcaH8fLXPkCUIBoPjr5EThvA,10456
172
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/adatom/configuration.py,sha256=gr70EtIa9rnmFuoEh2mmm6m_Jj3o1QTExS8u2pu9rOU,10431
173
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
174
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair.py,sha256=FqxYnlPdufEQPg4wnMKgZKBCX8pc660uffyu0OF0JKo,33469
175
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
176
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/defect_pair/configuration.py,sha256=P1pZbjMW3spvK0YHUrl3IJP_VojjHYmtgSUTiU7Mzhc,26775
177
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
178
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/base_configuration.py,sha256=v9wGMjyrHcAl1TVuDl-aMWP-QIsfzM1lczo-dE8MeaY,870
179
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py,sha256=Gy7sWvQSWUNwlhlcDQ7TAfbyJdvBU5_Dq0PPtWZcnCA,13995
180
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
181
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py,sha256=lDrwc13UQpnWr4wNwR0nEN17JFUqYxRKLp1hnERtjxI,14040
182
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
183
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py,sha256=lNZcty5QMn2kCbz6ZbYCUFT3t3ZASSTqiqePF8W9tMk,14040
184
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
185
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py,sha256=rwe0oJhuRiRHmJux5fwAmHMNtcmfizgiiAbwQC_nraM,14025
186
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
187
+ mat3ra/esse/models/materials_category/defects/zero_dimensional/slab/configuration.py,sha256=a-ib5sO9Sjn1PlbK0_kYBBonzJtbfnK6aaCeh0jOWlE,11018
143
188
  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
189
+ mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py,sha256=5DURmT0rsZe_ZV31G4SkLUEzXkpWWru49m2tE63TV8w,13161
145
190
  mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
146
191
  mat3ra/esse/models/method/categorized_method.py,sha256=f2dQIPERDoY61WL-KR_6dmAftRyPv_d_J6XSaV5yjqE,2479
147
192
  mat3ra/esse/models/method/method_parameters.py,sha256=CH4qkchLAsq_L0iaet5dESnbTePbQYfXK47U8MemrxQ,1086
@@ -321,7 +366,7 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
321
366
  mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
322
367
  mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
323
368
  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
369
+ mat3ra/esse/models/properties_directory/derived_properties.py,sha256=nu8IuB33ClDt8G-Su1zrJX80_MsVX3FTYrkE5An_-kw,3010
325
370
  mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
326
371
  mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
327
372
  mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=VsSKIbLYl9GseztXyzggDAMyMH0qJ3s_9IS8lxYKz88,591
@@ -332,31 +377,31 @@ mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,
332
377
  mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=7ypgPAH8RgGlntishJctQeAFDsjBUbSoZ0GfRwue85I,1817
333
378
  mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=W7-ZbbqDqEC42glSrpzvR__UvKeEA7rWEM5kDrp97BY,1588
334
379
  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
380
+ mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=1Skq2pXK1rwpQDNXmumfFuF8pGltE11mCX4O_nsstiA,2010
336
381
  mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_1KlHVqxzjgh9Z36kpsjeHRi-SsjxhmLWt8wMYi_6rc,807
337
382
  mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkzH_EQ-aViO7aCxhPgNDXIAr2MqfF6vQfZaC6pc,1429
338
383
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
339
384
  mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
340
385
  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
386
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=tp77uuAKFfHR6WSTePBYjZzeVQvPhb35nlw_MdoEspA,1382
387
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=1spxI8O-zHQbsyd5Rd7TWl3s9VP2Bu1aQWVmURqS8_Q,1403
343
388
  mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
344
389
  mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
345
390
  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
391
+ mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=adCWQ6kk7P9OzLbl69UA6Xn1dDa3yN2aarZLEg_k_l4,4464
392
+ mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=HxQzNK9nTg-Ry1chN4hkJknDi-YZzCXlBRFCHQf2D1Q,1562
348
393
  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
394
+ mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=4qE8A7FOkee3-P3pYsHxQ0fFYy_Z1uLS2Nxjqc2nX04,612
395
+ mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=7FzkZGoAmO-NZsFTa-bt1PexLg2SgpmU1T5OgnmKvEg,592
396
+ mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=Hau0IGtPnMYkz5iBt7Gs06EqTOQgXX4iU7Nc3SZtOQ8,608
397
+ mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=A4zXxYMyLmskW-Io3ufvclzsyk6UUonxlmkLKNn9ieo,624
353
398
  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
399
+ mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=8VDAWeE8Q4Paj96mq3YTRoV6hGBUVbyR3lQBFashds8,635
400
+ mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=nXwX95qA8ON06D_OCn6KVMsgB5EZyuNZdezACp49upA,600
401
+ mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=86ImesKD5rSsnOKGUywQM9HyrdUtTiOWBgbfIe2YK_I,592
357
402
  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
403
+ mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=uLA6zm2S-AXiupOTHObJmdpP4PPMl5rBgKR_wMxJZ8o,619
404
+ mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=CTHmszzH5cSpMhTMAFMpnCcFy7IU35FjHo8DX6wwX5g,611
360
405
  mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
361
406
  mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
362
407
  mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
@@ -364,18 +409,18 @@ mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP
364
409
  mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
365
410
  mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
366
411
  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
412
+ mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=A0rzbku9mEXMt6HY-x1rz0UPTifBLzo0lW9JiOLWbMA,1793
368
413
  mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
369
414
  mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
370
415
  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
416
+ mat3ra/esse/models/properties_directory/structural/basis/__init__.py,sha256=cMUCwNAUqF7vV6pJXl81N9Pry9fLqu4l09a_p4AlBBE,3168
372
417
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraint.py,sha256=MJfolJSgvQ4zPWZi36Y-9fUUkfSnVBKW0HCDhxsEfHM,441
373
418
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints.py,sha256=GCngLkD-6_Xkn6WL0vqj5r14vJrnT-JE68TWMwCDAso,660
374
419
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py,sha256=BqRWld9jbvPw2hUYMu83QbFoZNvfXt2o-_w_TBB_aeY,779
375
420
  mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinate.py,sha256=JTRnk_xltFjOg-pS8-pS_h6WPL60FrY4t2HJyqJ2zaA,466
376
421
  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
422
+ mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py,sha256=d03qfKF6W9tacxYSvtpTJSY3KSRRNtSA1zsXzd6HpOg,2128
423
+ mat3ra/esse/models/properties_directory/structural/basis/atomic_elements.py,sha256=8Qdu54enkbZNT3HdisGiNMGNxpFaqIugEKNQoSoSU6k,2345
379
424
  mat3ra/esse/models/properties_directory/structural/basis/atomic_label.py,sha256=njbXBHakrcBeA5sAN-rd5vKFln-9UmSFcP52o-UiEYs,425
380
425
  mat3ra/esse/models/properties_directory/structural/basis/atomic_labels.py,sha256=Iuug5ZGmvd0rGOedso9uJX-qRTR64XXeYiMjmMpLWIM,632
381
426
  mat3ra/esse/models/properties_directory/structural/basis/bonds.py,sha256=cToJoqVarNjMvpFfAYFUpQ0dYUFFeIToj6sDXk3pbkA,929
@@ -396,7 +441,7 @@ mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=vZ7ts
396
441
  mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=KnVmYAti3CfLIds1wVM8qW_cN75VGGdWQ7Ew3VFPpSE,742
397
442
  mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
398
443
  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
444
+ mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=1fl3oDEDH4jnT_CtBAqY-HwUnJMi1OYUjrZhqfWqVaQ,1306
400
445
  mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
401
446
  mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
402
447
  mat3ra/esse/models/property/base.py,sha256=mb5Q1XgYt7WrFhUir0O99ufQNzhiJog0yfoqECokquA,5003
@@ -533,8 +578,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
533
578
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
534
579
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
535
580
  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,,
581
+ mat3ra_esse-2025.5.17.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
582
+ mat3ra_esse-2025.5.17.post0.dist-info/METADATA,sha256=JqIBHiIdcnXYnWG4CANlAg0tozd3PXhklQLuei6CDZI,9000
583
+ mat3ra_esse-2025.5.17.post0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
584
+ mat3ra_esse-2025.5.17.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
585
+ mat3ra_esse-2025.5.17.post0.dist-info/RECORD,,