mat3ra-esse 2025.8.6.post0__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.
- mat3ra/esse/data/examples.py +1 -1
- mat3ra/esse/data/schemas.py +1 -1
- mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py +15 -12
- mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py +15 -12
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py +9 -6
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py +15 -12
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py +11 -8
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py +11 -8
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py +9 -6
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py +7 -4
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +7 -4
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py +7 -4
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py +9 -6
- mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py +8 -5
- mat3ra/esse/models/software/template.py +4 -0
- mat3ra/esse/models/software_directory/modeling/unit/execution.py +4 -0
- mat3ra/esse/models/software_directory/scripting/unit/execution.py +4 -0
- mat3ra/esse/models/workflow/unit/input/_input.py +4 -0
- mat3ra/esse/models/workflow/unit/input/_inputItem.py +4 -0
- {mat3ra_esse-2025.8.6.post0.dist-info → mat3ra_esse-2025.8.8.post0.dist-info}/METADATA +1 -1
- {mat3ra_esse-2025.8.6.post0.dist-info → mat3ra_esse-2025.8.8.post0.dist-info}/RECORD +24 -24
- {mat3ra_esse-2025.8.6.post0.dist-info → mat3ra_esse-2025.8.8.post0.dist-info}/WHEEL +0 -0
- {mat3ra_esse-2025.8.6.post0.dist-info → mat3ra_esse-2025.8.8.post0.dist-info}/licenses/LICENSE.md +0 -0
- {mat3ra_esse-2025.8.6.post0.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
|
|
1121
|
-
value:
|
|
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[
|
|
1139
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1137
1140
|
"""
|
|
1138
|
-
Gap distances between stack components as
|
|
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[
|
|
2042
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2040
2043
|
"""
|
|
2041
|
-
Gap distances between stack components as
|
|
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[
|
|
2925
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2923
2926
|
"""
|
|
2924
|
-
Gap distances between stack components as
|
|
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[
|
|
3820
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
3818
3821
|
"""
|
|
3819
|
-
Gap distances between stack components as
|
|
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[
|
|
4269
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
4267
4270
|
"""
|
|
4268
|
-
Gap distances between stack components as
|
|
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
|
|
1121
|
-
value:
|
|
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[
|
|
1139
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1137
1140
|
"""
|
|
1138
|
-
Gap distances between stack components as
|
|
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[
|
|
2042
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2040
2043
|
"""
|
|
2041
|
-
Gap distances between stack components as
|
|
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[
|
|
2925
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2923
2926
|
"""
|
|
2924
|
-
Gap distances between stack components as
|
|
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[
|
|
3820
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
3818
3821
|
"""
|
|
3819
|
-
Gap distances between stack components as
|
|
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[
|
|
4273
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
4271
4274
|
"""
|
|
4272
|
-
Gap distances between stack components as
|
|
4275
|
+
Gap distances between stack components as array of objects with id and value
|
|
4273
4276
|
"""
|
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py
CHANGED
|
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
|
|
|
1117
1117
|
"""
|
|
1118
1118
|
|
|
1119
1119
|
|
|
1120
|
-
class
|
|
1121
|
-
value:
|
|
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[
|
|
1139
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1137
1140
|
"""
|
|
1138
|
-
Gap distances between stack components as
|
|
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[
|
|
2132
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2130
2133
|
"""
|
|
2131
|
-
Gap distances between stack components as
|
|
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
|
|
1121
|
-
value:
|
|
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[
|
|
1139
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1137
1140
|
"""
|
|
1138
|
-
Gap distances between stack components as
|
|
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[
|
|
2042
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2040
2043
|
"""
|
|
2041
|
-
Gap distances between stack components as
|
|
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[
|
|
2925
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2923
2926
|
"""
|
|
2924
|
-
Gap distances between stack components as
|
|
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[
|
|
3820
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
3818
3821
|
"""
|
|
3819
|
-
Gap distances between stack components as
|
|
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[
|
|
4269
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
4267
4270
|
"""
|
|
4268
|
-
Gap distances between stack components as
|
|
4271
|
+
Gap distances between stack components as array of objects with id and value
|
|
4269
4272
|
"""
|
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py
CHANGED
|
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
|
|
|
1117
1117
|
"""
|
|
1118
1118
|
|
|
1119
1119
|
|
|
1120
|
-
class
|
|
1121
|
-
value:
|
|
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[
|
|
1139
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1137
1140
|
"""
|
|
1138
|
-
Gap distances between stack components as
|
|
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[
|
|
2022
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2020
2023
|
"""
|
|
2021
|
-
Gap distances between stack components as
|
|
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[
|
|
2908
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2906
2909
|
"""
|
|
2907
|
-
Gap distances between stack components as
|
|
2910
|
+
Gap distances between stack components as array of objects with id and value
|
|
2908
2911
|
"""
|
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py
CHANGED
|
@@ -1117,8 +1117,11 @@ class VacuumConfigurationSchema(BaseModel):
|
|
|
1117
1117
|
"""
|
|
1118
1118
|
|
|
1119
1119
|
|
|
1120
|
-
class
|
|
1121
|
-
value:
|
|
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[
|
|
1139
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1137
1140
|
"""
|
|
1138
|
-
Gap distances between stack components as
|
|
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[
|
|
2022
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2020
2023
|
"""
|
|
2021
|
-
Gap distances between stack components as
|
|
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[
|
|
2912
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
2910
2913
|
"""
|
|
2911
|
-
Gap distances between stack components as
|
|
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
|
|
1142
|
-
value:
|
|
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[
|
|
1160
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1158
1161
|
"""
|
|
1159
|
-
Gap distances between stack components as
|
|
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[
|
|
1598
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1596
1599
|
"""
|
|
1597
|
-
Gap distances between stack components as
|
|
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
|
|
1142
|
-
value:
|
|
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[
|
|
1160
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1158
1161
|
"""
|
|
1159
|
-
Gap distances between stack components as
|
|
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
|
|
1121
|
-
value:
|
|
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[
|
|
1139
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1137
1140
|
"""
|
|
1138
|
-
Gap distances between stack components as
|
|
1141
|
+
Gap distances between stack components as array of objects with id and value
|
|
1139
1142
|
"""
|
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py
CHANGED
|
@@ -1125,8 +1125,11 @@ class VacuumConfigurationSchema(BaseModel):
|
|
|
1125
1125
|
"""
|
|
1126
1126
|
|
|
1127
1127
|
|
|
1128
|
-
class
|
|
1129
|
-
value:
|
|
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[
|
|
1159
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1157
1160
|
"""
|
|
1158
|
-
Gap distances between stack components as
|
|
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
|
|
1121
|
-
value:
|
|
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[
|
|
1139
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1137
1140
|
"""
|
|
1138
|
-
Gap distances between stack components as
|
|
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[
|
|
1577
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
1575
1578
|
"""
|
|
1576
|
-
Gap distances between stack components as
|
|
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
|
|
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
|
|
20
|
-
value:
|
|
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[
|
|
36
|
+
gaps: Optional[List[ObjectWithIdAndValueSchema]] = None
|
|
34
37
|
"""
|
|
35
|
-
Gap distances between stack components as
|
|
38
|
+
Gap distances between stack components as array of objects with id and value
|
|
36
39
|
"""
|
|
@@ -29,6 +29,10 @@ class TemplateSchema(BaseModel):
|
|
|
29
29
|
"""
|
|
30
30
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
31
31
|
"""
|
|
32
|
+
rendered: str
|
|
33
|
+
"""
|
|
34
|
+
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
35
|
+
"""
|
|
32
36
|
field_id: Optional[str] = Field(None, alias="_id")
|
|
33
37
|
"""
|
|
34
38
|
entity identity
|
|
@@ -200,6 +200,10 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|
|
|
200
200
|
"""
|
|
201
201
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
202
202
|
"""
|
|
203
|
+
rendered: str
|
|
204
|
+
"""
|
|
205
|
+
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
206
|
+
"""
|
|
203
207
|
|
|
204
208
|
|
|
205
209
|
class Status(Enum):
|
|
@@ -200,6 +200,10 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|
|
|
200
200
|
"""
|
|
201
201
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
202
202
|
"""
|
|
203
|
+
rendered: str
|
|
204
|
+
"""
|
|
205
|
+
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
206
|
+
"""
|
|
203
207
|
|
|
204
208
|
|
|
205
209
|
class Status(Enum):
|
|
@@ -18,6 +18,10 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|
|
|
18
18
|
"""
|
|
19
19
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
20
20
|
"""
|
|
21
|
+
rendered: str
|
|
22
|
+
"""
|
|
23
|
+
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
24
|
+
"""
|
|
21
25
|
|
|
22
26
|
|
|
23
27
|
class ExecutionUnitInputIdItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|