mat3ra-esse 2025.8.6.post1__py3-none-any.whl → 2025.8.8.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.
Files changed (18) hide show
  1. mat3ra/esse/data/schemas.py +1 -1
  2. mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py +15 -12
  3. mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py +15 -12
  4. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py +9 -6
  5. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py +15 -12
  6. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py +11 -8
  7. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py +11 -8
  8. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py +9 -6
  9. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py +7 -4
  10. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +7 -4
  11. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py +7 -4
  12. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py +9 -6
  13. mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py +8 -5
  14. {mat3ra_esse-2025.8.6.post1.dist-info → mat3ra_esse-2025.8.8.post0.dist-info}/METADATA +1 -1
  15. {mat3ra_esse-2025.8.6.post1.dist-info → mat3ra_esse-2025.8.8.post0.dist-info}/RECORD +18 -18
  16. {mat3ra_esse-2025.8.6.post1.dist-info → mat3ra_esse-2025.8.8.post0.dist-info}/WHEEL +0 -0
  17. {mat3ra_esse-2025.8.6.post1.dist-info → mat3ra_esse-2025.8.8.post0.dist-info}/licenses/LICENSE.md +0 -0
  18. {mat3ra_esse-2025.8.6.post1.dist-info → mat3ra_esse-2025.8.8.post0.dist-info}/top_level.txt +0 -0
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
1117
1117
  """
1118
1118
 
1119
1119
 
1120
- class ObjectWithId(BaseModel):
1121
- value: Optional[confloat(ge=0.0)] = None
1120
+ class ObjectWithIdAndValueSchema(BaseModel):
1121
+ value: float
1122
+ """
1123
+ value of this entry
1124
+ """
1122
1125
  id: int
1123
1126
  """
1124
1127
  integer id of this entry
@@ -1133,9 +1136,9 @@ class SlabConfigurationSchema(BaseModel):
1133
1136
  """
1134
1137
  Enum for axis types
1135
1138
  """
1136
- gaps: Optional[List[ObjectWithId]] = None
1139
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1137
1140
  """
1138
- Gap distances between stack components as an array of objects with id and value
1141
+ Gap distances between stack components as array of objects with id and value
1139
1142
  """
1140
1143
 
1141
1144
 
@@ -2036,9 +2039,9 @@ class SlabStrainedSupercellConfigurationSchema(BaseModel):
2036
2039
  """
2037
2040
  Enum for axis types
2038
2041
  """
2039
- gaps: Optional[List[ObjectWithId]] = None
2042
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2040
2043
  """
2041
- Gap distances between stack components as an array of objects with id and value
2044
+ Gap distances between stack components as array of objects with id and value
2042
2045
  """
2043
2046
 
2044
2047
 
@@ -2919,9 +2922,9 @@ class SlabConfigurationSchema10(BaseModel):
2919
2922
  """
2920
2923
  Enum for axis types
2921
2924
  """
2922
- gaps: Optional[List[ObjectWithId]] = None
2925
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2923
2926
  """
2924
- Gap distances between stack components as an array of objects with id and value
2927
+ Gap distances between stack components as array of objects with id and value
2925
2928
  """
2926
2929
 
2927
2930
 
@@ -3814,9 +3817,9 @@ class SlabStrainedSupercellConfigurationSchema5(BaseModel):
3814
3817
  """
3815
3818
  Enum for axis types
3816
3819
  """
3817
- gaps: Optional[List[ObjectWithId]] = None
3820
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
3818
3821
  """
3819
- Gap distances between stack components as an array of objects with id and value
3822
+ Gap distances between stack components as array of objects with id and value
3820
3823
  """
3821
3824
 
3822
3825
 
@@ -4263,7 +4266,7 @@ class InterfaceConfigurationSchema(BaseModel):
4263
4266
  """
4264
4267
  xy shift for the film as cartesian 2D vector on the xy plane.
4265
4268
  """
4266
- gaps: Optional[List[ObjectWithId]] = None
4269
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
4267
4270
  """
4268
- Gap distances between stack components as an array of objects with id and value
4271
+ Gap distances between stack components as array of objects with id and value
4269
4272
  """
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
1117
1117
  """
1118
1118
 
1119
1119
 
1120
- class ObjectWithId(BaseModel):
1121
- value: Optional[confloat(ge=0.0)] = None
1120
+ class ObjectWithIdAndValueSchema(BaseModel):
1121
+ value: float
1122
+ """
1123
+ value of this entry
1124
+ """
1122
1125
  id: int
1123
1126
  """
1124
1127
  integer id of this entry
@@ -1133,9 +1136,9 @@ class SlabConfigurationSchema(BaseModel):
1133
1136
  """
1134
1137
  Enum for axis types
1135
1138
  """
1136
- gaps: Optional[List[ObjectWithId]] = None
1139
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1137
1140
  """
1138
- Gap distances between stack components as an array of objects with id and value
1141
+ Gap distances between stack components as array of objects with id and value
1139
1142
  """
1140
1143
 
1141
1144
 
@@ -2036,9 +2039,9 @@ class SlabStrainedSupercellConfigurationSchema(BaseModel):
2036
2039
  """
2037
2040
  Enum for axis types
2038
2041
  """
2039
- gaps: Optional[List[ObjectWithId]] = None
2042
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2040
2043
  """
2041
- Gap distances between stack components as an array of objects with id and value
2044
+ Gap distances between stack components as array of objects with id and value
2042
2045
  """
2043
2046
 
2044
2047
 
@@ -2919,9 +2922,9 @@ class SlabConfigurationSchema8(BaseModel):
2919
2922
  """
2920
2923
  Enum for axis types
2921
2924
  """
2922
- gaps: Optional[List[ObjectWithId]] = None
2925
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2923
2926
  """
2924
- Gap distances between stack components as an array of objects with id and value
2927
+ Gap distances between stack components as array of objects with id and value
2925
2928
  """
2926
2929
 
2927
2930
 
@@ -3814,9 +3817,9 @@ class SlabStrainedSupercellConfigurationSchema3(BaseModel):
3814
3817
  """
3815
3818
  Enum for axis types
3816
3819
  """
3817
- gaps: Optional[List[ObjectWithId]] = None
3820
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
3818
3821
  """
3819
- Gap distances between stack components as an array of objects with id and value
3822
+ Gap distances between stack components as array of objects with id and value
3820
3823
  """
3821
3824
 
3822
3825
 
@@ -4267,7 +4270,7 @@ class GrainBoundaryLinearConfigurationSchema(BaseModel):
4267
4270
  """
4268
4271
  xy shift for the film as cartesian 2D vector on the xy plane.
4269
4272
  """
4270
- gaps: Optional[List[ObjectWithId]] = None
4273
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
4271
4274
  """
4272
- Gap distances between stack components as an array of objects with id and value
4275
+ Gap distances between stack components as array of objects with id and value
4273
4276
  """
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
1117
1117
  """
1118
1118
 
1119
1119
 
1120
- class ObjectWithId(BaseModel):
1121
- value: Optional[confloat(ge=0.0)] = None
1120
+ class ObjectWithIdAndValueSchema(BaseModel):
1121
+ value: float
1122
+ """
1123
+ value of this entry
1124
+ """
1122
1125
  id: int
1123
1126
  """
1124
1127
  integer id of this entry
@@ -1133,9 +1136,9 @@ class SlabConfigurationSchema(BaseModel):
1133
1136
  """
1134
1137
  Enum for axis types
1135
1138
  """
1136
- gaps: Optional[List[ObjectWithId]] = None
1139
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1137
1140
  """
1138
- Gap distances between stack components as an array of objects with id and value
1141
+ Gap distances between stack components as array of objects with id and value
1139
1142
  """
1140
1143
 
1141
1144
 
@@ -2126,7 +2129,7 @@ class AdatomDefectConfigurationSchema(BaseModel):
2126
2129
  """
2127
2130
  Enum for axis types
2128
2131
  """
2129
- gaps: Optional[List[ObjectWithId]] = None
2132
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2130
2133
  """
2131
- Gap distances between stack components as an array of objects with id and value
2134
+ Gap distances between stack components as array of objects with id and value
2132
2135
  """
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
1117
1117
  """
1118
1118
 
1119
1119
 
1120
- class ObjectWithId(BaseModel):
1121
- value: Optional[confloat(ge=0.0)] = None
1120
+ class ObjectWithIdAndValueSchema(BaseModel):
1121
+ value: float
1122
+ """
1123
+ value of this entry
1124
+ """
1122
1125
  id: int
1123
1126
  """
1124
1127
  integer id of this entry
@@ -1133,9 +1136,9 @@ class SlabConfigurationSchema(BaseModel):
1133
1136
  """
1134
1137
  Enum for axis types
1135
1138
  """
1136
- gaps: Optional[List[ObjectWithId]] = None
1139
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1137
1140
  """
1138
- Gap distances between stack components as an array of objects with id and value
1141
+ Gap distances between stack components as array of objects with id and value
1139
1142
  """
1140
1143
 
1141
1144
 
@@ -2036,9 +2039,9 @@ class SlabStrainedSupercellConfigurationSchema(BaseModel):
2036
2039
  """
2037
2040
  Enum for axis types
2038
2041
  """
2039
- gaps: Optional[List[ObjectWithId]] = None
2042
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2040
2043
  """
2041
- Gap distances between stack components as an array of objects with id and value
2044
+ Gap distances between stack components as array of objects with id and value
2042
2045
  """
2043
2046
 
2044
2047
 
@@ -2919,9 +2922,9 @@ class SlabConfigurationSchema1(BaseModel):
2919
2922
  """
2920
2923
  Enum for axis types
2921
2924
  """
2922
- gaps: Optional[List[ObjectWithId]] = None
2925
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2923
2926
  """
2924
- Gap distances between stack components as an array of objects with id and value
2927
+ Gap distances between stack components as array of objects with id and value
2925
2928
  """
2926
2929
 
2927
2930
 
@@ -3814,9 +3817,9 @@ class SlabStrainedSupercellConfigurationSchema1(BaseModel):
3814
3817
  """
3815
3818
  Enum for axis types
3816
3819
  """
3817
- gaps: Optional[List[ObjectWithId]] = None
3820
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
3818
3821
  """
3819
- Gap distances between stack components as an array of objects with id and value
3822
+ Gap distances between stack components as array of objects with id and value
3820
3823
  """
3821
3824
 
3822
3825
 
@@ -4263,7 +4266,7 @@ class GrainBoundaryPlanarConfigurationSchema(BaseModel):
4263
4266
  """
4264
4267
  xy shift for the film as cartesian 2D vector on the xy plane.
4265
4268
  """
4266
- gaps: Optional[List[ObjectWithId]] = None
4269
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
4267
4270
  """
4268
- Gap distances between stack components as an array of objects with id and value
4271
+ Gap distances between stack components as array of objects with id and value
4269
4272
  """
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
1117
1117
  """
1118
1118
 
1119
1119
 
1120
- class ObjectWithId(BaseModel):
1121
- value: Optional[confloat(ge=0.0)] = None
1120
+ class ObjectWithIdAndValueSchema(BaseModel):
1121
+ value: float
1122
+ """
1123
+ value of this entry
1124
+ """
1122
1125
  id: int
1123
1126
  """
1124
1127
  integer id of this entry
@@ -1133,9 +1136,9 @@ class SlabConfigurationSchema(BaseModel):
1133
1136
  """
1134
1137
  Enum for axis types
1135
1138
  """
1136
- gaps: Optional[List[ObjectWithId]] = None
1139
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1137
1140
  """
1138
- Gap distances between stack components as an array of objects with id and value
1141
+ Gap distances between stack components as array of objects with id and value
1139
1142
  """
1140
1143
 
1141
1144
 
@@ -2016,9 +2019,9 @@ class SlabConfigurationSchema6(BaseModel):
2016
2019
  """
2017
2020
  Enum for axis types
2018
2021
  """
2019
- gaps: Optional[List[ObjectWithId]] = None
2022
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2020
2023
  """
2021
- Gap distances between stack components as an array of objects with id and value
2024
+ Gap distances between stack components as array of objects with id and value
2022
2025
  """
2023
2026
 
2024
2027
 
@@ -2902,7 +2905,7 @@ class IslandDefectConfigurationSchema(BaseModel):
2902
2905
  """
2903
2906
  Enum for axis types
2904
2907
  """
2905
- gaps: Optional[List[ObjectWithId]] = None
2908
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2906
2909
  """
2907
- Gap distances between stack components as an array of objects with id and value
2910
+ Gap distances between stack components as array of objects with id and value
2908
2911
  """
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
1117
1117
  """
1118
1118
 
1119
1119
 
1120
- class ObjectWithId(BaseModel):
1121
- value: Optional[confloat(ge=0.0)] = None
1120
+ class ObjectWithIdAndValueSchema(BaseModel):
1121
+ value: float
1122
+ """
1123
+ value of this entry
1124
+ """
1122
1125
  id: int
1123
1126
  """
1124
1127
  integer id of this entry
@@ -1133,9 +1136,9 @@ class SlabConfigurationSchema(BaseModel):
1133
1136
  """
1134
1137
  Enum for axis types
1135
1138
  """
1136
- gaps: Optional[List[ObjectWithId]] = None
1139
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1137
1140
  """
1138
- Gap distances between stack components as an array of objects with id and value
1141
+ Gap distances between stack components as array of objects with id and value
1139
1142
  """
1140
1143
 
1141
1144
 
@@ -2016,9 +2019,9 @@ class SlabConfigurationSchema3(BaseModel):
2016
2019
  """
2017
2020
  Enum for axis types
2018
2021
  """
2019
- gaps: Optional[List[ObjectWithId]] = None
2022
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2020
2023
  """
2021
- Gap distances between stack components as an array of objects with id and value
2024
+ Gap distances between stack components as array of objects with id and value
2022
2025
  """
2023
2026
 
2024
2027
 
@@ -2906,7 +2909,7 @@ class TerraceDefectConfigurationSchema(BaseModel):
2906
2909
  """
2907
2910
  Enum for axis types
2908
2911
  """
2909
- gaps: Optional[List[ObjectWithId]] = None
2912
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
2910
2913
  """
2911
- Gap distances between stack components as an array of objects with id and value
2914
+ Gap distances between stack components as array of objects with id and value
2912
2915
  """
@@ -1138,8 +1138,11 @@ class VacuumConfigurationSchema(BaseModel):
1138
1138
  """
1139
1139
 
1140
1140
 
1141
- class ObjectWithId(BaseModel):
1142
- value: Optional[confloat(ge=0.0)] = None
1141
+ class ObjectWithIdAndValueSchema(BaseModel):
1142
+ value: float
1143
+ """
1144
+ value of this entry
1145
+ """
1143
1146
  id: int
1144
1147
  """
1145
1148
  integer id of this entry
@@ -1154,9 +1157,9 @@ class NanoTapeConfigurationSchema(BaseModel):
1154
1157
  """
1155
1158
  Enum for axis types
1156
1159
  """
1157
- gaps: Optional[List[ObjectWithId]] = None
1160
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1158
1161
  """
1159
- Gap distances between stack components as an array of objects with id and value
1162
+ Gap distances between stack components as array of objects with id and value
1160
1163
  """
1161
1164
 
1162
1165
 
@@ -1592,7 +1595,7 @@ class NanoribbonConfigurationSchema(BaseModel):
1592
1595
  """
1593
1596
  Enum for axis types
1594
1597
  """
1595
- gaps: Optional[List[ObjectWithId]] = None
1598
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1596
1599
  """
1597
- Gap distances between stack components as an array of objects with id and value
1600
+ Gap distances between stack components as array of objects with id and value
1598
1601
  """
@@ -1138,8 +1138,11 @@ class VacuumConfigurationSchema(BaseModel):
1138
1138
  """
1139
1139
 
1140
1140
 
1141
- class ObjectWithId(BaseModel):
1142
- value: Optional[confloat(ge=0.0)] = None
1141
+ class ObjectWithIdAndValueSchema(BaseModel):
1142
+ value: float
1143
+ """
1144
+ value of this entry
1145
+ """
1143
1146
  id: int
1144
1147
  """
1145
1148
  integer id of this entry
@@ -1154,7 +1157,7 @@ class NanoTapeConfigurationSchema(BaseModel):
1154
1157
  """
1155
1158
  Enum for axis types
1156
1159
  """
1157
- gaps: Optional[List[ObjectWithId]] = None
1160
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1158
1161
  """
1159
- Gap distances between stack components as an array of objects with id and value
1162
+ Gap distances between stack components as array of objects with id and value
1160
1163
  """
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
1117
1117
  """
1118
1118
 
1119
1119
 
1120
- class ObjectWithId(BaseModel):
1121
- value: Optional[confloat(ge=0.0)] = None
1120
+ class ObjectWithIdAndValueSchema(BaseModel):
1121
+ value: float
1122
+ """
1123
+ value of this entry
1124
+ """
1122
1125
  id: int
1123
1126
  """
1124
1127
  integer id of this entry
@@ -1133,7 +1136,7 @@ class SlabConfigurationSchema(BaseModel):
1133
1136
  """
1134
1137
  Enum for axis types
1135
1138
  """
1136
- gaps: Optional[List[ObjectWithId]] = None
1139
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1137
1140
  """
1138
- Gap distances between stack components as an array of objects with id and value
1141
+ Gap distances between stack components as array of objects with id and value
1139
1142
  """
@@ -1125,8 +1125,11 @@ class VacuumConfigurationSchema(BaseModel):
1125
1125
  """
1126
1126
 
1127
1127
 
1128
- class ObjectWithId(BaseModel):
1129
- value: Optional[confloat(ge=0.0)] = None
1128
+ class ObjectWithIdAndValueSchema(BaseModel):
1129
+ value: float
1130
+ """
1131
+ value of this entry
1132
+ """
1130
1133
  id: int
1131
1134
  """
1132
1135
  integer id of this entry
@@ -1153,7 +1156,7 @@ class SlabStrainedSupercellConfigurationSchema(BaseModel):
1153
1156
  """
1154
1157
  Enum for axis types
1155
1158
  """
1156
- gaps: Optional[List[ObjectWithId]] = None
1159
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1157
1160
  """
1158
- Gap distances between stack components as an array of objects with id and value
1161
+ Gap distances between stack components as array of objects with id and value
1159
1162
  """
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
1117
1117
  """
1118
1118
 
1119
1119
 
1120
- class ObjectWithId(BaseModel):
1121
- value: Optional[confloat(ge=0.0)] = None
1120
+ class ObjectWithIdAndValueSchema(BaseModel):
1121
+ value: float
1122
+ """
1123
+ value of this entry
1124
+ """
1122
1125
  id: int
1123
1126
  """
1124
1127
  integer id of this entry
@@ -1133,9 +1136,9 @@ class SlabConfigurationSchema(BaseModel):
1133
1136
  """
1134
1137
  Enum for axis types
1135
1138
  """
1136
- gaps: Optional[List[ObjectWithId]] = None
1139
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1137
1140
  """
1138
- Gap distances between stack components as an array of objects with id and value
1141
+ Gap distances between stack components as array of objects with id and value
1139
1142
  """
1140
1143
 
1141
1144
 
@@ -1571,7 +1574,7 @@ class SlabStackConfigurationSchema(BaseModel):
1571
1574
  """
1572
1575
  Enum for axis types
1573
1576
  """
1574
- gaps: Optional[List[ObjectWithId]] = None
1577
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
1575
1578
  """
1576
- Gap distances between stack components as an array of objects with id and value
1579
+ Gap distances between stack components as array of objects with id and value
1577
1580
  """
@@ -7,7 +7,7 @@ from __future__ import annotations
7
7
  from enum import Enum
8
8
  from typing import List, Optional
9
9
 
10
- from pydantic import BaseModel, Field, confloat
10
+ from pydantic import BaseModel, Field
11
11
 
12
12
 
13
13
  class AxisEnum(Enum):
@@ -16,8 +16,11 @@ class AxisEnum(Enum):
16
16
  z = "z"
17
17
 
18
18
 
19
- class ObjectWithId(BaseModel):
20
- value: Optional[confloat(ge=0.0)] = None
19
+ class ObjectWithIdAndValueSchema(BaseModel):
20
+ value: float
21
+ """
22
+ value of this entry
23
+ """
21
24
  id: int
22
25
  """
23
26
  integer id of this entry
@@ -30,7 +33,7 @@ class StackSchema(BaseModel):
30
33
  """
31
34
  Enum for axis types
32
35
  """
33
- gaps: Optional[List[ObjectWithId]] = None
36
+ gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
34
37
  """
35
- Gap distances between stack components as an array of objects with id and value
38
+ Gap distances between stack components as array of objects with id and value
36
39
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mat3ra-esse
3
- Version: 2025.8.6.post1
3
+ Version: 2025.8.8.post0
4
4
  Summary: Excellent Source of Schemas and Examples.
5
5
  Author-email: "Exabyte Inc." <info@mat3ra.com>
6
6
  License: # LICENSE
@@ -4,7 +4,7 @@ mat3ra/esse/utils.py,sha256=-FexdtkOYGEWmwJUwWDuJferibc7M1YzUH738Bffuxo,1727
4
4
  mat3ra/esse/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  mat3ra/esse/data/examples.py,sha256=IRKlXpR535KjfwLGC7w5tFS2kRswZY5RMyQlWTyGBmE,145089
6
6
  mat3ra/esse/data/properties.py,sha256=geWFIVIJbdn2Q_JG3Mz36oQ_dXeZZwnmlS_NgszvHUY,6099
7
- mat3ra/esse/data/schemas.py,sha256=6LoF62EifzgOwfqNErJ29jRjnyog88_bIQ6Su1l-vBU,3160298
7
+ mat3ra/esse/data/schemas.py,sha256=Ksu9u7XKDciuBRArmaDjXgG4UFhj6n0N-diLheF5nnQ,3168934
8
8
  mat3ra/esse/models/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
9
9
  mat3ra/esse/models/element.py,sha256=xuuFQRP6wE4SFXggipRsAexGPo10DorQqoWUG_pUnPA,2950
10
10
  mat3ra/esse/models/project.py,sha256=fqUckRBLyCzVc_77-EtQUg_zFDV_zTYfnLmOoE77zPE,1148
@@ -120,19 +120,19 @@ mat3ra/esse/models/material/__init__.py,sha256=ZMAUxmfDM0DSDb4cMbOYmGG6DVfFhqvSC
120
120
  mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
121
121
  mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
122
122
  mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
123
- mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py,sha256=Lss6YpLPEMc0qs-uOP_w_5_DS9rIi3PaGGBUlgP82is,97025
123
+ mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py,sha256=nL8M94tAa0Qqwtmd-M87MmlcTcuq1oar8HcPMq_WhdA,97106
124
124
  mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
125
- mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py,sha256=zubibL2yTa343fO4scincqVe72EnpnfRufl46_7sExo,97149
125
+ mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py,sha256=2WEyPVnlyurT4aBEPmQBM9BQuV2eUkv2aYiThLazvIg,97230
126
126
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
127
127
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/base_configuration.py,sha256=NAvvdY-Y96fJJF2-dIQT_RUULnsba89HTeEcUB9QA7A,34124
128
128
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
129
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py,sha256=zeuPPxKU5by-gg9-uHN-XFT86oPqDnQG7QWT3bwq0v4,46017
129
+ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py,sha256=i9QkCYsmPIAPv8WvBw1_UOCMFQlGdajUUQkH_0A0Ew8,46065
130
130
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
131
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py,sha256=p8Ymxq_DIDGahz8PoGgFFVShur9qnZmkY81M738frog,96704
131
+ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py,sha256=IuLezWyDLXQgxocR8-cZk9Eaw7Pu-o_UCZyslsF-TqY,96785
132
132
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
133
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py,sha256=KaE8HQBXGO1JdnWCFQbPvT5nrjxKNHFAShMYURkbaOY,65197
133
+ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py,sha256=Ywaw0XuOdhyXtuYgu5tjRCtNKnwUa4S3yxx4HpFcYy0,65256
134
134
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
135
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py,sha256=lPSIhaIOYDkoheWohie0z-kHHCPOtSwyIYaECQ6QoVw,65388
135
+ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py,sha256=6J7Ar2zcQyIFw_CM5FZ0lra1rg5xOei9vK7QPZTY5Fc,65447
136
136
  mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
137
137
  mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/base_configuration.py,sha256=I3pZiB4ivSxKo_8_VkOOmGk_GcKe-Q4bJSUfgd6JTHE,12135
138
138
  mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py,sha256=agQO-24UY_HExqjbcIb9JrnTT9baoDDEem9NxTCZpCs,23526
@@ -141,10 +141,10 @@ mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/poin
141
141
  mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
142
142
  mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py,sha256=_c4rgXKiN8vtiPBDCq2I0QSo92vHWNkx3ctC7NeePa4,11753
143
143
  mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
144
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py,sha256=Gr8nn5VNui5L-PPMt1KjUBpqoyANczLb8Otj01v5ydE,35417
145
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py,sha256=F7IR9SoaGUqjIImWY08S4ohQnlROTEwndaD0w9DFjEo,25493
146
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py,sha256=HxDISOLJruAOttTyJQu7ZRDPbSTF4qavcbo9MQNeYGg,24737
147
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py,sha256=IhTDPwY3uGX15UBmXwlSHfLOkLJmhrbNNA8vn6R_vww,25473
144
+ mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py,sha256=LaO2IuxTr33p_gzLD45rSbS7WanbR8pByQlhTyK2Jqo,35465
145
+ mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py,sha256=rlq44liXvAH7Nq11oCvk5Sds2FHNrJC3YANvsjWSMCM,25530
146
+ mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py,sha256=UOTv3LoXrcQTMWZamTnJ66vLWScq-PtCqiJS2NWMEmQ,24774
147
+ mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py,sha256=cjDaNyOtgnTxzE2hWirloJPdMYor_OB-Ur0BO8HFZhQ,25510
148
148
  mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
149
149
  mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/configuration.py,sha256=DPYIs_ICWnjFkZlWArImG_j6l3YH1zBdHb3crQSxsaE,25469
150
150
  mat3ra/esse/models/materials_category_components/entities/auxiliary/one_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -184,12 +184,12 @@ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimension
184
184
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique.py,sha256=03j_Oi4mKrTx5k5xu-XE3HSt9GOBh0g5cJ-OX0sDcV4,14508
185
185
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique_repeated.py,sha256=8fg-uAnNQZUWS2ohE0cKstoJ2mbN34jm1iXrI4FsEAs,14639
186
186
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py,sha256=JVssz7P3ceZx5MgrXKvDauCVAmeViXmQCEUV0VrIS0w,12270
187
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py,sha256=WOyBwqpxcUUsNlu-0vlBNOtyENJEHkzkqsxdVUuNL8E,34699
187
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py,sha256=EW7CFruuiob5Tuaw-IU3m2DvgLubn-Vw9vvV86PFSY0,34747
188
188
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_unit_cell.py,sha256=kO8vyBXFcXzMB-RH-Y5KKJHlIhj4-1pQ3447PDZxDMM,24464
189
189
  mat3ra/esse/models/materials_category_components/operations/core/combinations/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
190
190
  mat3ra/esse/models/materials_category_components/operations/core/combinations/enums.py,sha256=4IGswkEqNbfL-KM4jUG4Sb2GUWv9HwLu6onoPoQbB1I,292
191
191
  mat3ra/esse/models/materials_category_components/operations/core/combinations/merge.py,sha256=tSpvUjSLW3FKxS4bG9989wV9KjXa-JbPTeF0UBk27n8,551
192
- mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py,sha256=hMNteD31qQ6lX05GJSoGlF8I9TdArCjSEhWjgNqmL00,779
192
+ mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py,sha256=p3pdL7qhxTKCfosOaZMw2q4OC4MkSZhEnAh0z9XcKV0,806
193
193
  mat3ra/esse/models/materials_category_components/operations/core/combinations/stack_component.py,sha256=JMxOvdKjNolVy1JHQF75bkpKDYM4iYHB058h0JmqE5c,21523
194
194
  mat3ra/esse/models/materials_category_components/operations/core/modifications/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
195
195
  mat3ra/esse/models/materials_category_components/operations/core/modifications/perturb.py,sha256=Xy5XI468xs1Vd1SLsUwBYV_EnHl6LFB0t4gaE4a5XVo,12036
@@ -563,8 +563,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
563
563
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
564
564
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
565
565
  mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
566
- mat3ra_esse-2025.8.6.post1.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
567
- mat3ra_esse-2025.8.6.post1.dist-info/METADATA,sha256=KvOoV0cSG8jWDiC0ElSgsmcQMFzocDxsgnEDS65MLmY,9012
568
- mat3ra_esse-2025.8.6.post1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
569
- mat3ra_esse-2025.8.6.post1.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
570
- mat3ra_esse-2025.8.6.post1.dist-info/RECORD,,
566
+ mat3ra_esse-2025.8.8.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
567
+ mat3ra_esse-2025.8.8.post0.dist-info/METADATA,sha256=g2aPMFVqgQY-SXeP2DZaGS2oZ5tj71rEDbFtv74B8Wc,9012
568
+ mat3ra_esse-2025.8.8.post0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
569
+ mat3ra_esse-2025.8.8.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
570
+ mat3ra_esse-2025.8.8.post0.dist-info/RECORD,,