mat3ra-esse 2025.5.16.post1__py3-none-any.whl → 2025.5.17.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 (52) hide show
  1. mat3ra/esse/data/examples.py +1 -1
  2. mat3ra/esse/data/schemas.py +1 -1
  3. mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py +6 -6
  4. mat3ra/esse/models/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 +6 -6
  8. mat3ra/esse/models/material/__init__.py +14 -14
  9. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/__init__.py +3 -0
  10. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/__init__.py +3 -0
  11. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/adatom/configuration.py +672 -0
  12. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/configuration.py +550 -0
  13. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/__init__.py +3 -0
  14. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/layered/configuration.py +549 -0
  15. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/__init__.py +3 -0
  16. mat3ra/esse/models/materials_category/defects/by_host/two_dimensional/point/configuration.py +550 -0
  17. mat3ra/esse/models/materials_category/defects/configuration.py +8 -1
  18. mat3ra/esse/models/materials_category/defects/one_dimensional/terrace/configuration.py +157 -19
  19. mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/__init__.py +3 -0
  20. mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/__init__.py +3 -0
  21. mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair/configuration.py +1538 -0
  22. mat3ra/esse/models/materials_category/defects/zero_dimensional/complex/pair.py +1534 -0
  23. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/configuration.py +23 -23
  24. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/__init__.py +3 -0
  25. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/interstitial/configuration.py +672 -0
  26. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/__init__.py +3 -0
  27. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/substitution/configuration.py +672 -0
  28. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/__init__.py +3 -0
  29. mat3ra/esse/models/materials_category/defects/zero_dimensional/point/vacancy/configuration.py +672 -0
  30. mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py +14 -14
  31. mat3ra/esse/models/properties_directory/derived_properties.py +11 -11
  32. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +2 -2
  33. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
  34. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
  35. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
  36. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
  37. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +2 -2
  38. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +2 -2
  39. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +2 -2
  40. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +2 -2
  41. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
  42. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
  43. mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
  44. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
  45. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
  46. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
  47. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +2 -2
  48. {mat3ra_esse-2025.5.16.post1.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/METADATA +1 -1
  49. {mat3ra_esse-2025.5.16.post1.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/RECORD +52 -32
  50. {mat3ra_esse-2025.5.16.post1.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/WHEEL +0 -0
  51. {mat3ra_esse-2025.5.16.post1.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/licenses/LICENSE.md +0 -0
  52. {mat3ra_esse-2025.5.16.post1.dist-info → mat3ra_esse-2025.5.17.post1.dist-info}/top_level.txt +0 -0
@@ -131,13 +131,13 @@ class Value(Enum):
131
131
  Og = "Og"
132
132
 
133
133
 
134
- class Value13(Enum):
134
+ class Value33(Enum):
135
135
  X = "X"
136
136
  Vac = "Vac"
137
137
 
138
138
 
139
139
  class AtomicElementSchema(BaseModel):
140
- value: Union[Value, Value13]
140
+ value: Union[Value, Value33]
141
141
  """
142
142
  All elements, including extra elements
143
143
  """
@@ -285,30 +285,30 @@ class VolumeSchema(BaseModel):
285
285
  value: float
286
286
 
287
287
 
288
- class Name24(Enum):
288
+ class Name104(Enum):
289
289
  density = "density"
290
290
 
291
291
 
292
- class Units16(Enum):
292
+ class Units46(Enum):
293
293
  g_cm_3 = "g/cm^3"
294
294
 
295
295
 
296
296
  class DensitySchema(BaseModel):
297
297
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
298
- units: Optional[Units16] = None
298
+ units: Optional[Units46] = None
299
299
  value: float
300
300
 
301
301
 
302
- class Units17(Enum):
302
+ class Units47(Enum):
303
303
  angstrom = "angstrom"
304
304
 
305
305
 
306
306
  class ScalarSchema(BaseModel):
307
- units: Optional[Units17] = None
307
+ units: Optional[Units47] = None
308
308
  value: float
309
309
 
310
310
 
311
- class Name25(Enum):
311
+ class Name105(Enum):
312
312
  symmetry = "symmetry"
313
313
 
314
314
 
@@ -328,7 +328,7 @@ class SymmetrySchema(BaseModel):
328
328
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
329
329
 
330
330
 
331
- class Name26(Enum):
331
+ class Name106(Enum):
332
332
  elemental_ratio = "elemental_ratio"
333
333
 
334
334
 
@@ -341,7 +341,7 @@ class ElementalRatio(BaseModel):
341
341
  """
342
342
 
343
343
 
344
- class Name27(Enum):
344
+ class Name107(Enum):
345
345
  p_norm = "p-norm"
346
346
 
347
347
 
@@ -354,7 +354,7 @@ class PNorm(BaseModel):
354
354
  value: float
355
355
 
356
356
 
357
- class Name28(Enum):
357
+ class Name108(Enum):
358
358
  inchi = "inchi"
359
359
 
360
360
 
@@ -363,7 +363,7 @@ class InChIRepresentationSchema(BaseModel):
363
363
  value: str
364
364
 
365
365
 
366
- class Name29(Enum):
366
+ class Name109(Enum):
367
367
  inchi_key = "inchi_key"
368
368
 
369
369
 
@@ -442,7 +442,7 @@ class FileSourceSchema(BaseModel):
442
442
  """
443
443
 
444
444
 
445
- class Name30(Enum):
445
+ class Name110(Enum):
446
446
  default = "default"
447
447
  atomsTooClose = "atomsTooClose"
448
448
  atomsOverlap = "atomsOverlap"
@@ -455,7 +455,7 @@ class Severity(Enum):
455
455
 
456
456
 
457
457
  class MaterialConsistencyCheckSchema(BaseModel):
458
- name: Name30
458
+ name: Name110
459
459
  """
460
460
  Name of the consistency check that is performed, which is listed in an enum.
461
461
  """
@@ -24,30 +24,30 @@ class VolumeSchema(BaseModel):
24
24
  value: float
25
25
 
26
26
 
27
- class Name36(Enum):
27
+ class Name116(Enum):
28
28
  density = "density"
29
29
 
30
30
 
31
- class Units22(Enum):
31
+ class Units52(Enum):
32
32
  g_cm_3 = "g/cm^3"
33
33
 
34
34
 
35
35
  class DensitySchema(BaseModel):
36
36
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
37
- units: Optional[Units22] = None
37
+ units: Optional[Units52] = None
38
38
  value: float
39
39
 
40
40
 
41
- class Units23(Enum):
41
+ class Units53(Enum):
42
42
  angstrom = "angstrom"
43
43
 
44
44
 
45
45
  class ScalarSchema(BaseModel):
46
- units: Optional[Units23] = None
46
+ units: Optional[Units53] = None
47
47
  value: float
48
48
 
49
49
 
50
- class Name37(Enum):
50
+ class Name117(Enum):
51
51
  symmetry = "symmetry"
52
52
 
53
53
 
@@ -67,7 +67,7 @@ class SymmetrySchema(BaseModel):
67
67
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
68
68
 
69
69
 
70
- class Name38(Enum):
70
+ class Name118(Enum):
71
71
  elemental_ratio = "elemental_ratio"
72
72
 
73
73
 
@@ -80,7 +80,7 @@ class ElementalRatio(BaseModel):
80
80
  """
81
81
 
82
82
 
83
- class Name39(Enum):
83
+ class Name119(Enum):
84
84
  p_norm = "p-norm"
85
85
 
86
86
 
@@ -93,7 +93,7 @@ class PNorm(BaseModel):
93
93
  value: float
94
94
 
95
95
 
96
- class Name40(Enum):
96
+ class Name120(Enum):
97
97
  inchi = "inchi"
98
98
 
99
99
 
@@ -102,7 +102,7 @@ class InChIRepresentationSchema(BaseModel):
102
102
  value: str
103
103
 
104
104
 
105
- class Name41(Enum):
105
+ class Name121(Enum):
106
106
  inchi_key = "inchi_key"
107
107
 
108
108
 
@@ -135,5 +135,5 @@ class DerivedPropertiesSchema(
135
135
  ] = Field(..., discriminator="name")
136
136
 
137
137
 
138
- class DerivedPropertiesSchema3(RootModel[List[DerivedPropertiesSchema]]):
138
+ class DerivedPropertiesSchema13(RootModel[List[DerivedPropertiesSchema]]):
139
139
  root: List[DerivedPropertiesSchema] = Field(..., title="derived properties schema")
@@ -39,7 +39,7 @@ class Label7(Enum):
39
39
  density_of_states = "density of states"
40
40
 
41
41
 
42
- class Units20(Enum):
42
+ class Units50(Enum):
43
43
  states_unitcell = "states/unitcell"
44
44
 
45
45
 
@@ -48,7 +48,7 @@ class AxisSchema10(BaseModel):
48
48
  """
49
49
  label of an axis object
50
50
  """
51
- units: Optional[Units20] = None
51
+ units: Optional[Units50] = None
52
52
  """
53
53
  units for an axis
54
54
  """
@@ -34,7 +34,7 @@ class Label9(Enum):
34
34
  frequency = "frequency"
35
35
 
36
36
 
37
- class Units48(Enum):
37
+ class Units78(Enum):
38
38
  cm_1 = "cm-1"
39
39
  THz = "THz"
40
40
  meV = "meV"
@@ -45,7 +45,7 @@ class AxisSchema12(BaseModel):
45
45
  """
46
46
  label of an axis object
47
47
  """
48
- units: Optional[Units48] = None
48
+ units: Optional[Units78] = None
49
49
  """
50
50
  units for an axis
51
51
  """
@@ -35,7 +35,7 @@ class Label11(Enum):
35
35
  Phonon_DOS = "Phonon DOS"
36
36
 
37
37
 
38
- class Units50(Enum):
38
+ class Units80(Enum):
39
39
  states_cm_1 = "states/cm-1"
40
40
  states_THz = "states/THz"
41
41
  states_meV = "states/meV"
@@ -46,7 +46,7 @@ class AxisSchema14(BaseModel):
46
46
  """
47
47
  label of an axis object
48
48
  """
49
- units: Optional[Units50] = None
49
+ units: Optional[Units80] = None
50
50
  """
51
51
  units for an axis
52
52
  """
@@ -19,115 +19,115 @@ class ScalarSchema(BaseModel):
19
19
  value: float
20
20
 
21
21
 
22
- class Name98(Enum):
22
+ class Name178(Enum):
23
23
  harris_foulkes = "harris_foulkes"
24
24
 
25
25
 
26
- class ScalarSchema9(BaseModel):
27
- name: Optional[Name98] = None
26
+ class ScalarSchema19(BaseModel):
27
+ name: Optional[Name178] = None
28
28
  value: float
29
29
 
30
30
 
31
- class Name99(Enum):
31
+ class Name179(Enum):
32
32
  one_electron = "one_electron"
33
33
 
34
34
 
35
- class ScalarSchema10(BaseModel):
36
- name: Optional[Name99] = None
35
+ class ScalarSchema20(BaseModel):
36
+ name: Optional[Name179] = None
37
37
  value: float
38
38
 
39
39
 
40
- class Name100(Enum):
40
+ class Name180(Enum):
41
41
  hartree = "hartree"
42
42
 
43
43
 
44
- class ScalarSchema11(BaseModel):
45
- name: Optional[Name100] = None
44
+ class ScalarSchema21(BaseModel):
45
+ name: Optional[Name180] = None
46
46
  value: float
47
47
 
48
48
 
49
- class Name101(Enum):
49
+ class Name181(Enum):
50
50
  exchange = "exchange"
51
51
 
52
52
 
53
- class ScalarSchema12(BaseModel):
54
- name: Optional[Name101] = None
53
+ class ScalarSchema22(BaseModel):
54
+ name: Optional[Name181] = None
55
55
  value: float
56
56
 
57
57
 
58
- class Name102(Enum):
58
+ class Name182(Enum):
59
59
  exchange_correlation = "exchange_correlation"
60
60
 
61
61
 
62
- class ScalarSchema13(BaseModel):
63
- name: Optional[Name102] = None
62
+ class ScalarSchema23(BaseModel):
63
+ name: Optional[Name182] = None
64
64
  value: float
65
65
 
66
66
 
67
- class Name103(Enum):
67
+ class Name183(Enum):
68
68
  ewald = "ewald"
69
69
 
70
70
 
71
- class ScalarSchema14(BaseModel):
72
- name: Optional[Name103] = None
71
+ class ScalarSchema24(BaseModel):
72
+ name: Optional[Name183] = None
73
73
  value: float
74
74
 
75
75
 
76
- class Name104(Enum):
76
+ class Name184(Enum):
77
77
  alphaZ = "alphaZ"
78
78
 
79
79
 
80
- class ScalarSchema15(BaseModel):
81
- name: Optional[Name104] = None
80
+ class ScalarSchema25(BaseModel):
81
+ name: Optional[Name184] = None
82
82
  value: float
83
83
 
84
84
 
85
- class Name105(Enum):
85
+ class Name185(Enum):
86
86
  atomic_energy = "atomic_energy"
87
87
 
88
88
 
89
- class ScalarSchema16(BaseModel):
90
- name: Optional[Name105] = None
89
+ class ScalarSchema26(BaseModel):
90
+ name: Optional[Name185] = None
91
91
  value: float
92
92
 
93
93
 
94
- class Name106(Enum):
94
+ class Name186(Enum):
95
95
  eigenvalues = "eigenvalues"
96
96
 
97
97
 
98
- class ScalarSchema17(BaseModel):
99
- name: Optional[Name106] = None
98
+ class ScalarSchema27(BaseModel):
99
+ name: Optional[Name186] = None
100
100
  value: float
101
101
 
102
102
 
103
- class Name107(Enum):
103
+ class Name187(Enum):
104
104
  PAW_double_counting_correction_2 = "PAW_double-counting_correction_2"
105
105
 
106
106
 
107
- class ScalarSchema18(BaseModel):
108
- name: Optional[Name107] = None
107
+ class ScalarSchema28(BaseModel):
108
+ name: Optional[Name187] = None
109
109
  value: float
110
110
 
111
111
 
112
- class Name108(Enum):
112
+ class Name188(Enum):
113
113
  PAW_double_counting_correction_3 = "PAW_double-counting_correction_3"
114
114
 
115
115
 
116
- class ScalarSchema19(BaseModel):
117
- name: Optional[Name108] = None
116
+ class ScalarSchema29(BaseModel):
117
+ name: Optional[Name188] = None
118
118
  value: float
119
119
 
120
120
 
121
- class Name109(Enum):
121
+ class Name189(Enum):
122
122
  hartree_fock = "hartree_fock"
123
123
 
124
124
 
125
- class ScalarSchema20(BaseModel):
126
- name: Optional[Name109] = None
125
+ class ScalarSchema30(BaseModel):
126
+ name: Optional[Name189] = None
127
127
  value: float
128
128
 
129
129
 
130
- class Name110(Enum):
130
+ class Name190(Enum):
131
131
  total_energy_contributions = "total_energy_contributions"
132
132
 
133
133
 
@@ -146,53 +146,53 @@ class TotalEnergyContributionsSchema(BaseModel):
146
146
  """
147
147
  product of temperature and configurational entropy
148
148
  """
149
- harrisFoulkes: Optional[ScalarSchema9] = Field(None, title="scalar schema")
149
+ harrisFoulkes: Optional[ScalarSchema19] = Field(None, title="scalar schema")
150
150
  """
151
151
  non self-consitent energy based on an input charge density
152
152
  """
153
- oneElectron: Optional[ScalarSchema10] = Field(None, title="scalar schema")
153
+ oneElectron: Optional[ScalarSchema20] = Field(None, title="scalar schema")
154
154
  """
155
155
  kinetic + pseudopotential energy
156
156
  """
157
- hartree: Optional[ScalarSchema11] = Field(None, title="scalar schema")
157
+ hartree: Optional[ScalarSchema21] = Field(None, title="scalar schema")
158
158
  """
159
159
  energy due to coulomb potential
160
160
  """
161
- exchange: Optional[ScalarSchema12] = Field(None, title="scalar schema")
161
+ exchange: Optional[ScalarSchema22] = Field(None, title="scalar schema")
162
162
  """
163
163
  exchange energy
164
164
  """
165
- exchangeCorrelation: Optional[ScalarSchema13] = Field(None, title="scalar schema")
165
+ exchangeCorrelation: Optional[ScalarSchema23] = Field(None, title="scalar schema")
166
166
  """
167
167
  exchange and correlation energy per particle
168
168
  """
169
- ewald: Optional[ScalarSchema14] = Field(None, title="scalar schema")
169
+ ewald: Optional[ScalarSchema24] = Field(None, title="scalar schema")
170
170
  """
171
171
  summation of interaction energies at long length scales due to coloumbic interactions
172
172
  """
173
- alphaZ: Optional[ScalarSchema15] = Field(None, title="scalar schema")
173
+ alphaZ: Optional[ScalarSchema25] = Field(None, title="scalar schema")
174
174
  """
175
175
  divergent electrostatic ion interaction in compensating electron gas
176
176
  """
177
- atomicEnergy: Optional[ScalarSchema16] = Field(None, title="scalar schema")
177
+ atomicEnergy: Optional[ScalarSchema26] = Field(None, title="scalar schema")
178
178
  """
179
179
  kinetic energy of wavefunctions in the atomic limit
180
180
  """
181
- eigenvalues: Optional[ScalarSchema17] = Field(None, title="scalar schema")
181
+ eigenvalues: Optional[ScalarSchema27] = Field(None, title="scalar schema")
182
182
  """
183
183
  sum of one electron energies of kinetic, electrostatic, and exchange correlation
184
184
  """
185
- PAWDoubleCounting2: Optional[ScalarSchema18] = Field(None, title="scalar schema")
185
+ PAWDoubleCounting2: Optional[ScalarSchema28] = Field(None, title="scalar schema")
186
186
  """
187
187
  double counting correction 2
188
188
  """
189
- PAWDoubleCounting3: Optional[ScalarSchema19] = Field(None, title="scalar schema")
189
+ PAWDoubleCounting3: Optional[ScalarSchema29] = Field(None, title="scalar schema")
190
190
  """
191
191
  double counting correction 3
192
192
  """
193
- hartreeFock: Optional[ScalarSchema20] = Field(None, title="scalar schema")
193
+ hartreeFock: Optional[ScalarSchema30] = Field(None, title="scalar schema")
194
194
  """
195
195
  hartree-fock contribution
196
196
  """
197
- name: Optional[Name110] = None
197
+ name: Optional[Name190] = None
198
198
  units: Optional[Units] = None
@@ -38,7 +38,7 @@ class Label17(Enum):
38
38
  Absorption_coefficient = "Absorption coefficient"
39
39
 
40
40
 
41
- class Units67(Enum):
41
+ class Units97(Enum):
42
42
  field_debye_angstrom__2 = "(debye/angstrom)^2"
43
43
  km_mol = "km/mol"
44
44
  m_mol = "m/mol"
@@ -50,7 +50,7 @@ class AxisSchema20(BaseModel):
50
50
  """
51
51
  label of an axis object
52
52
  """
53
- units: Optional[Units67] = None
53
+ units: Optional[Units97] = None
54
54
  """
55
55
  units for an axis
56
56
  """
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units25(Enum):
27
+ class Units55(Enum):
28
28
  eV_A_2 = "eV/A^2"
29
29
 
30
30
 
31
31
  class ElectronAffinitySchema(BaseModel):
32
32
  name: Name
33
- units: Union[Units, Units25]
33
+ units: Union[Units, Units55]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units32(Enum):
27
+ class Units62(Enum):
28
28
  eV_A_2 = "eV/A^2"
29
29
 
30
30
 
31
31
  class FermiEnergySchema(BaseModel):
32
32
  name: Name
33
- units: Union[Units, Units32]
33
+ units: Union[Units, Units62]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units34(Enum):
27
+ class Units64(Enum):
28
28
  eV_A_2 = "eV/A^2"
29
29
 
30
30
 
31
31
  class FormationEnergySchema(BaseModel):
32
32
  name: Name
33
- units: Union[Units, Units34]
33
+ units: Union[Units, Units64]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units42(Enum):
27
+ class Units72(Enum):
28
28
  eV_A_2 = "eV/A^2"
29
29
 
30
30
 
31
31
  class IonizationPotentialSchema(BaseModel):
32
32
  name: Name
33
- units: Union[Units, Units42]
33
+ units: Union[Units, Units72]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units54(Enum):
27
+ class Units84(Enum):
28
28
  eV_A_2 = "eV/A^2"
29
29
 
30
30
 
31
31
  class ReactionEnergyBarrierSchema(BaseModel):
32
32
  name: Name
33
- units: Union[Units, Units54]
33
+ units: Union[Units, Units84]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units58(Enum):
27
+ class Units88(Enum):
28
28
  eV_A_2 = "eV/A^2"
29
29
 
30
30
 
31
31
  class SurfaceEnergySchema(BaseModel):
32
32
  name: Name
33
- units: Union[Units, Units58]
33
+ units: Union[Units, Units88]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units61(Enum):
27
+ class Units91(Enum):
28
28
  eV_A_2 = "eV/A^2"
29
29
 
30
30
 
31
31
  class TotalEnergySchema(BaseModel):
32
32
  name: Name
33
- units: Union[Units, Units61]
33
+ units: Union[Units, Units91]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units65(Enum):
27
+ class Units95(Enum):
28
28
  eV_A_2 = "eV/A^2"
29
29
 
30
30
 
31
31
  class ValenceBandOffsetSchema(BaseModel):
32
32
  name: Name
33
- units: Union[Units, Units65]
33
+ units: Union[Units, Units95]
34
34
  value: float
@@ -24,11 +24,11 @@ class Units(Enum):
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
27
- class Units70(Enum):
27
+ class Units100(Enum):
28
28
  eV_A_2 = "eV/A^2"
29
29
 
30
30
 
31
31
  class ZeroPointEnergySchema(BaseModel):
32
32
  name: Name
33
- units: Union[Units, Units70]
33
+ units: Union[Units, Units100]
34
34
  value: float
@@ -37,12 +37,12 @@ class FunctionalGroupPatternSchema(BaseModel):
37
37
  """
38
38
 
39
39
 
40
- class Name78(Enum):
40
+ class Name158(Enum):
41
41
  ring = "ring"
42
42
 
43
43
 
44
44
  class RingPatternSchema(BaseModel):
45
- name: Optional[Name78] = None
45
+ name: Optional[Name158] = 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 Name79(Enum):
53
+ class Name159(Enum):
54
54
  special_bond = "special_bond"
55
55
 
56
56
 
57
57
  class SpecialBondPatternSchema(BaseModel):
58
- name: Optional[Name79] = None
58
+ name: Optional[Name159] = 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 Units39(Enum):
21
+ class Units69(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[Units39] = None
28
+ units: Optional[Units69] = 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.post1
3
+ Version: 2025.5.17.post1
4
4
  Summary: Excellent Source of Schemas and Examples.
5
5
  Author-email: "Exabyte Inc." <info@mat3ra.com>
6
6
  License: # LICENSE