mat3ra-esse 2025.8.9.post0__py3-none-any.whl → 2025.8.20.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.
- mat3ra/esse/data/examples.py +1 -1
- mat3ra/esse/data/schemas.py +1 -1
- mat3ra/esse/models/core/reference/__init__.py +5 -5
- mat3ra/esse/models/core/reference/experiment/__init__.py +2 -2
- mat3ra/esse/models/job/__init__.py +21 -21
- mat3ra/esse/models/material/__init__.py +8 -8
- mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py +17 -17
- mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/substitutional.py +17 -17
- mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/vacancy.py +8 -8
- mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py +8 -8
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py +26 -26
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py +17 -17
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +17 -17
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py +17 -17
- mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/point_defect_site.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py +26 -26
- mat3ra/esse/models/materials_category_components/operations/core/modifications/perturb.py +8 -8
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +26 -26
- mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
- mat3ra/esse/models/property/meta.py +2 -2
- mat3ra/esse/models/property/raw.py +2 -2
- mat3ra/esse/models/property/source.py +2 -2
- mat3ra/esse/models/software/template.py +2 -1
- mat3ra/esse/models/software_directory/modeling/unit/execution.py +1 -1
- mat3ra/esse/models/software_directory/scripting/unit/execution.py +1 -1
- mat3ra/esse/models/workflow/__init__.py +19 -19
- mat3ra/esse/models/workflow/subworkflow/__init__.py +6 -6
- mat3ra/esse/models/workflow/subworkflow/unit.py +6 -6
- mat3ra/esse/models/workflow/unit/__init__.py +8 -8
- mat3ra/esse/models/workflow/unit/input/_input.py +1 -1
- mat3ra/esse/models/workflow/unit/input/_inputItem.py +3 -1
- {mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.20.post0.dist-info}/METADATA +1 -1
- {mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.20.post0.dist-info}/RECORD +41 -56
- mat3ra/esse/models/software_directory/ml/__init__.py +0 -3
- mat3ra/esse/models/software_directory/ml/exabyteml.py +0 -28
- mat3ra/esse/models/software_directory/ml/unit/__init__.py +0 -3
- mat3ra/esse/models/software_directory/ml/unit/execution/__init__.py +0 -879
- mat3ra/esse/models/software_directory/ml/unit/execution/evaluate/__init__.py +0 -3
- mat3ra/esse/models/software_directory/ml/unit/execution/evaluate/cross_validate.py +0 -293
- mat3ra/esse/models/software_directory/ml/unit/execution/initialize.py +0 -293
- mat3ra/esse/models/software_directory/ml/unit/execution/score.py +0 -286
- mat3ra/esse/models/software_directory/ml/unit/execution/train.py +0 -297
- mat3ra/esse/models/software_directory/ml/unit/processing/__init__.py +0 -276
- mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/__init__.py +0 -167
- mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/manipulation.py +0 -144
- mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/scale_and_reduce.py +0 -163
- mat3ra/esse/models/software_directory/ml/unit/processing/feature_selection/__init__.py +0 -148
- mat3ra/esse/models/software_directory/ml/unit/processing/feature_selection/filter_based.py +0 -144
- {mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.20.post0.dist-info}/WHEEL +0 -0
- {mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.20.post0.dist-info}/licenses/LICENSE.md +0 -0
- {mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.20.post0.dist-info}/top_level.txt +0 -0
|
@@ -419,7 +419,7 @@ class VolumeSchema(BaseModel):
|
|
|
419
419
|
value: float
|
|
420
420
|
|
|
421
421
|
|
|
422
|
-
class
|
|
422
|
+
class Name604(Enum):
|
|
423
423
|
density = "density"
|
|
424
424
|
|
|
425
425
|
|
|
@@ -442,7 +442,7 @@ class ScalarSchema(BaseModel):
|
|
|
442
442
|
value: float
|
|
443
443
|
|
|
444
444
|
|
|
445
|
-
class
|
|
445
|
+
class Name605(Enum):
|
|
446
446
|
symmetry = "symmetry"
|
|
447
447
|
|
|
448
448
|
|
|
@@ -462,7 +462,7 @@ class SymmetrySchema(BaseModel):
|
|
|
462
462
|
name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
|
|
463
463
|
|
|
464
464
|
|
|
465
|
-
class
|
|
465
|
+
class Name606(Enum):
|
|
466
466
|
elemental_ratio = "elemental_ratio"
|
|
467
467
|
|
|
468
468
|
|
|
@@ -475,7 +475,7 @@ class ElementalRatio(BaseModel):
|
|
|
475
475
|
"""
|
|
476
476
|
|
|
477
477
|
|
|
478
|
-
class
|
|
478
|
+
class Name607(Enum):
|
|
479
479
|
p_norm = "p-norm"
|
|
480
480
|
|
|
481
481
|
|
|
@@ -488,7 +488,7 @@ class PNorm(BaseModel):
|
|
|
488
488
|
value: float
|
|
489
489
|
|
|
490
490
|
|
|
491
|
-
class
|
|
491
|
+
class Name608(Enum):
|
|
492
492
|
inchi = "inchi"
|
|
493
493
|
|
|
494
494
|
|
|
@@ -497,7 +497,7 @@ class InChIRepresentationSchema(BaseModel):
|
|
|
497
497
|
value: str
|
|
498
498
|
|
|
499
499
|
|
|
500
|
-
class
|
|
500
|
+
class Name609(Enum):
|
|
501
501
|
inchi_key = "inchi_key"
|
|
502
502
|
|
|
503
503
|
|
|
@@ -576,7 +576,7 @@ class FileSourceSchema(BaseModel):
|
|
|
576
576
|
"""
|
|
577
577
|
|
|
578
578
|
|
|
579
|
-
class
|
|
579
|
+
class Name610(Enum):
|
|
580
580
|
default = "default"
|
|
581
581
|
atomsTooClose = "atomsTooClose"
|
|
582
582
|
atomsOverlap = "atomsOverlap"
|
|
@@ -589,7 +589,7 @@ class Severity(Enum):
|
|
|
589
589
|
|
|
590
590
|
|
|
591
591
|
class MaterialConsistencyCheckSchema(BaseModel):
|
|
592
|
-
name:
|
|
592
|
+
name: Name610
|
|
593
593
|
"""
|
|
594
594
|
Name of the consistency check that is performed, which is listed in an enum.
|
|
595
595
|
"""
|
|
@@ -895,7 +895,7 @@ class LatticeSchema70(BaseModel):
|
|
|
895
895
|
)
|
|
896
896
|
|
|
897
897
|
|
|
898
|
-
class
|
|
898
|
+
class Name611(Enum):
|
|
899
899
|
volume = "volume"
|
|
900
900
|
|
|
901
901
|
|
|
@@ -909,7 +909,7 @@ class VolumeSchema70(BaseModel):
|
|
|
909
909
|
value: float
|
|
910
910
|
|
|
911
911
|
|
|
912
|
-
class
|
|
912
|
+
class Name612(Enum):
|
|
913
913
|
density = "density"
|
|
914
914
|
|
|
915
915
|
|
|
@@ -932,7 +932,7 @@ class ScalarSchema72(BaseModel):
|
|
|
932
932
|
value: float
|
|
933
933
|
|
|
934
934
|
|
|
935
|
-
class
|
|
935
|
+
class Name613(Enum):
|
|
936
936
|
symmetry = "symmetry"
|
|
937
937
|
|
|
938
938
|
|
|
@@ -952,7 +952,7 @@ class SymmetrySchema70(BaseModel):
|
|
|
952
952
|
name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
|
|
953
953
|
|
|
954
954
|
|
|
955
|
-
class
|
|
955
|
+
class Name614(Enum):
|
|
956
956
|
elemental_ratio = "elemental_ratio"
|
|
957
957
|
|
|
958
958
|
|
|
@@ -965,7 +965,7 @@ class ElementalRatio71(BaseModel):
|
|
|
965
965
|
"""
|
|
966
966
|
|
|
967
967
|
|
|
968
|
-
class
|
|
968
|
+
class Name615(Enum):
|
|
969
969
|
p_norm = "p-norm"
|
|
970
970
|
|
|
971
971
|
|
|
@@ -978,7 +978,7 @@ class PNorm71(BaseModel):
|
|
|
978
978
|
value: float
|
|
979
979
|
|
|
980
980
|
|
|
981
|
-
class
|
|
981
|
+
class Name616(Enum):
|
|
982
982
|
inchi = "inchi"
|
|
983
983
|
|
|
984
984
|
|
|
@@ -987,7 +987,7 @@ class InChIRepresentationSchema71(BaseModel):
|
|
|
987
987
|
value: str
|
|
988
988
|
|
|
989
989
|
|
|
990
|
-
class
|
|
990
|
+
class Name617(Enum):
|
|
991
991
|
inchi_key = "inchi_key"
|
|
992
992
|
|
|
993
993
|
|
|
@@ -1020,14 +1020,14 @@ class DerivedPropertiesSchema71(
|
|
|
1020
1020
|
] = Field(..., discriminator="name")
|
|
1021
1021
|
|
|
1022
1022
|
|
|
1023
|
-
class
|
|
1023
|
+
class Name618(Enum):
|
|
1024
1024
|
default = "default"
|
|
1025
1025
|
atomsTooClose = "atomsTooClose"
|
|
1026
1026
|
atomsOverlap = "atomsOverlap"
|
|
1027
1027
|
|
|
1028
1028
|
|
|
1029
1029
|
class MaterialConsistencyCheckSchema70(BaseModel):
|
|
1030
|
-
name:
|
|
1030
|
+
name: Name618
|
|
1031
1031
|
"""
|
|
1032
1032
|
Name of the consistency check that is performed, which is listed in an enum.
|
|
1033
1033
|
"""
|
|
@@ -1344,7 +1344,7 @@ class LatticeSchema71(BaseModel):
|
|
|
1344
1344
|
)
|
|
1345
1345
|
|
|
1346
1346
|
|
|
1347
|
-
class
|
|
1347
|
+
class Name619(Enum):
|
|
1348
1348
|
volume = "volume"
|
|
1349
1349
|
|
|
1350
1350
|
|
|
@@ -1358,7 +1358,7 @@ class VolumeSchema71(BaseModel):
|
|
|
1358
1358
|
value: float
|
|
1359
1359
|
|
|
1360
1360
|
|
|
1361
|
-
class
|
|
1361
|
+
class Name620(Enum):
|
|
1362
1362
|
density = "density"
|
|
1363
1363
|
|
|
1364
1364
|
|
|
@@ -1381,7 +1381,7 @@ class ScalarSchema73(BaseModel):
|
|
|
1381
1381
|
value: float
|
|
1382
1382
|
|
|
1383
1383
|
|
|
1384
|
-
class
|
|
1384
|
+
class Name621(Enum):
|
|
1385
1385
|
symmetry = "symmetry"
|
|
1386
1386
|
|
|
1387
1387
|
|
|
@@ -1401,7 +1401,7 @@ class SymmetrySchema71(BaseModel):
|
|
|
1401
1401
|
name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
|
|
1402
1402
|
|
|
1403
1403
|
|
|
1404
|
-
class
|
|
1404
|
+
class Name622(Enum):
|
|
1405
1405
|
elemental_ratio = "elemental_ratio"
|
|
1406
1406
|
|
|
1407
1407
|
|
|
@@ -1414,7 +1414,7 @@ class ElementalRatio72(BaseModel):
|
|
|
1414
1414
|
"""
|
|
1415
1415
|
|
|
1416
1416
|
|
|
1417
|
-
class
|
|
1417
|
+
class Name623(Enum):
|
|
1418
1418
|
p_norm = "p-norm"
|
|
1419
1419
|
|
|
1420
1420
|
|
|
@@ -1427,7 +1427,7 @@ class PNorm72(BaseModel):
|
|
|
1427
1427
|
value: float
|
|
1428
1428
|
|
|
1429
1429
|
|
|
1430
|
-
class
|
|
1430
|
+
class Name624(Enum):
|
|
1431
1431
|
inchi = "inchi"
|
|
1432
1432
|
|
|
1433
1433
|
|
|
@@ -1436,7 +1436,7 @@ class InChIRepresentationSchema72(BaseModel):
|
|
|
1436
1436
|
value: str
|
|
1437
1437
|
|
|
1438
1438
|
|
|
1439
|
-
class
|
|
1439
|
+
class Name625(Enum):
|
|
1440
1440
|
inchi_key = "inchi_key"
|
|
1441
1441
|
|
|
1442
1442
|
|
|
@@ -1469,14 +1469,14 @@ class DerivedPropertiesSchema72(
|
|
|
1469
1469
|
] = Field(..., discriminator="name")
|
|
1470
1470
|
|
|
1471
1471
|
|
|
1472
|
-
class
|
|
1472
|
+
class Name626(Enum):
|
|
1473
1473
|
default = "default"
|
|
1474
1474
|
atomsTooClose = "atomsTooClose"
|
|
1475
1475
|
atomsOverlap = "atomsOverlap"
|
|
1476
1476
|
|
|
1477
1477
|
|
|
1478
1478
|
class MaterialConsistencyCheckSchema71(BaseModel):
|
|
1479
|
-
name:
|
|
1479
|
+
name: Name626
|
|
1480
1480
|
"""
|
|
1481
1481
|
Name of the consistency check that is performed, which is listed in an enum.
|
|
1482
1482
|
"""
|
|
@@ -285,7 +285,7 @@ class VolumeSchema(BaseModel):
|
|
|
285
285
|
value: float
|
|
286
286
|
|
|
287
287
|
|
|
288
|
-
class
|
|
288
|
+
class Name562(Enum):
|
|
289
289
|
density = "density"
|
|
290
290
|
|
|
291
291
|
|
|
@@ -308,7 +308,7 @@ class ScalarSchema(BaseModel):
|
|
|
308
308
|
value: float
|
|
309
309
|
|
|
310
310
|
|
|
311
|
-
class
|
|
311
|
+
class Name563(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
|
|
331
|
+
class Name564(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
|
|
344
|
+
class Name565(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
|
|
357
|
+
class Name566(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
|
|
366
|
+
class Name567(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
|
|
445
|
+
class Name568(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:
|
|
458
|
+
name: Name568
|
|
459
459
|
"""
|
|
460
460
|
Name of the consistency check that is performed, which is listed in an enum.
|
|
461
461
|
"""
|
|
@@ -19,115 +19,115 @@ class ScalarSchema(BaseModel):
|
|
|
19
19
|
value: float
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
class
|
|
22
|
+
class Name689(Enum):
|
|
23
23
|
harris_foulkes = "harris_foulkes"
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
class ScalarSchema83(BaseModel):
|
|
27
|
-
name: Optional[
|
|
27
|
+
name: Optional[Name689] = None
|
|
28
28
|
value: float
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
class
|
|
31
|
+
class Name690(Enum):
|
|
32
32
|
one_electron = "one_electron"
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
class ScalarSchema84(BaseModel):
|
|
36
|
-
name: Optional[
|
|
36
|
+
name: Optional[Name690] = None
|
|
37
37
|
value: float
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
class
|
|
40
|
+
class Name691(Enum):
|
|
41
41
|
hartree = "hartree"
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
class ScalarSchema85(BaseModel):
|
|
45
|
-
name: Optional[
|
|
45
|
+
name: Optional[Name691] = None
|
|
46
46
|
value: float
|
|
47
47
|
|
|
48
48
|
|
|
49
|
-
class
|
|
49
|
+
class Name692(Enum):
|
|
50
50
|
exchange = "exchange"
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
class ScalarSchema86(BaseModel):
|
|
54
|
-
name: Optional[
|
|
54
|
+
name: Optional[Name692] = None
|
|
55
55
|
value: float
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
class
|
|
58
|
+
class Name693(Enum):
|
|
59
59
|
exchange_correlation = "exchange_correlation"
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
class ScalarSchema87(BaseModel):
|
|
63
|
-
name: Optional[
|
|
63
|
+
name: Optional[Name693] = None
|
|
64
64
|
value: float
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
class
|
|
67
|
+
class Name694(Enum):
|
|
68
68
|
ewald = "ewald"
|
|
69
69
|
|
|
70
70
|
|
|
71
71
|
class ScalarSchema88(BaseModel):
|
|
72
|
-
name: Optional[
|
|
72
|
+
name: Optional[Name694] = None
|
|
73
73
|
value: float
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
class
|
|
76
|
+
class Name695(Enum):
|
|
77
77
|
alphaZ = "alphaZ"
|
|
78
78
|
|
|
79
79
|
|
|
80
80
|
class ScalarSchema89(BaseModel):
|
|
81
|
-
name: Optional[
|
|
81
|
+
name: Optional[Name695] = None
|
|
82
82
|
value: float
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
class
|
|
85
|
+
class Name696(Enum):
|
|
86
86
|
atomic_energy = "atomic_energy"
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
class ScalarSchema90(BaseModel):
|
|
90
|
-
name: Optional[
|
|
90
|
+
name: Optional[Name696] = None
|
|
91
91
|
value: float
|
|
92
92
|
|
|
93
93
|
|
|
94
|
-
class
|
|
94
|
+
class Name697(Enum):
|
|
95
95
|
eigenvalues = "eigenvalues"
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
class ScalarSchema91(BaseModel):
|
|
99
|
-
name: Optional[
|
|
99
|
+
name: Optional[Name697] = None
|
|
100
100
|
value: float
|
|
101
101
|
|
|
102
102
|
|
|
103
|
-
class
|
|
103
|
+
class Name698(Enum):
|
|
104
104
|
PAW_double_counting_correction_2 = "PAW_double-counting_correction_2"
|
|
105
105
|
|
|
106
106
|
|
|
107
107
|
class ScalarSchema92(BaseModel):
|
|
108
|
-
name: Optional[
|
|
108
|
+
name: Optional[Name698] = None
|
|
109
109
|
value: float
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
class
|
|
112
|
+
class Name699(Enum):
|
|
113
113
|
PAW_double_counting_correction_3 = "PAW_double-counting_correction_3"
|
|
114
114
|
|
|
115
115
|
|
|
116
116
|
class ScalarSchema93(BaseModel):
|
|
117
|
-
name: Optional[
|
|
117
|
+
name: Optional[Name699] = None
|
|
118
118
|
value: float
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
class
|
|
121
|
+
class Name700(Enum):
|
|
122
122
|
hartree_fock = "hartree_fock"
|
|
123
123
|
|
|
124
124
|
|
|
125
125
|
class ScalarSchema94(BaseModel):
|
|
126
|
-
name: Optional[
|
|
126
|
+
name: Optional[Name700] = None
|
|
127
127
|
value: float
|
|
128
128
|
|
|
129
129
|
|
|
130
|
-
class
|
|
130
|
+
class Name701(Enum):
|
|
131
131
|
total_energy_contributions = "total_energy_contributions"
|
|
132
132
|
|
|
133
133
|
|
|
@@ -194,5 +194,5 @@ class TotalEnergyContributionsSchema(BaseModel):
|
|
|
194
194
|
"""
|
|
195
195
|
hartree-fock contribution
|
|
196
196
|
"""
|
|
197
|
-
name: Optional[
|
|
197
|
+
name: Optional[Name701] = None
|
|
198
198
|
units: Optional[Units] = None
|
|
@@ -37,12 +37,12 @@ class FunctionalGroupPatternSchema(BaseModel):
|
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
class
|
|
40
|
+
class Name517(Enum):
|
|
41
41
|
ring = "ring"
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
class RingPatternSchema(BaseModel):
|
|
45
|
-
name: Optional[
|
|
45
|
+
name: Optional[Name517] = 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
|
|
53
|
+
class Name518(Enum):
|
|
54
54
|
special_bond = "special_bond"
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
class SpecialBondPatternSchema(BaseModel):
|
|
58
|
-
name: Optional[
|
|
58
|
+
name: Optional[Name518] = None
|
|
59
59
|
atoms: Optional[List[ObjectWithId]] = Field(None, title="array of ids")
|
|
60
60
|
"""
|
|
61
61
|
array of objects containing integer id each
|
|
@@ -55,7 +55,7 @@ class LocationSchema(BaseModel):
|
|
|
55
55
|
"""
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
class
|
|
58
|
+
class Type46(Enum):
|
|
59
59
|
literature = "literature"
|
|
60
60
|
|
|
61
61
|
|
|
@@ -65,7 +65,7 @@ class PagesSchema(BaseModel):
|
|
|
65
65
|
|
|
66
66
|
|
|
67
67
|
class LiteratureReferenceSchema(BaseModel):
|
|
68
|
-
type: Optional[
|
|
68
|
+
type: Optional[Type46] = None
|
|
69
69
|
doi: Optional[str] = None
|
|
70
70
|
"""
|
|
71
71
|
Digital Object Identifier of the reference.
|
|
@@ -55,7 +55,7 @@ class LocationSchema(BaseModel):
|
|
|
55
55
|
"""
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
class
|
|
58
|
+
class Type55(Enum):
|
|
59
59
|
literature = "literature"
|
|
60
60
|
|
|
61
61
|
|
|
@@ -65,7 +65,7 @@ class PagesSchema(BaseModel):
|
|
|
65
65
|
|
|
66
66
|
|
|
67
67
|
class LiteratureReferenceSchema(BaseModel):
|
|
68
|
-
type: Optional[
|
|
68
|
+
type: Optional[Type55] = None
|
|
69
69
|
doi: Optional[str] = None
|
|
70
70
|
"""
|
|
71
71
|
Digital Object Identifier of the reference.
|
|
@@ -51,7 +51,7 @@ class LocationSchema(BaseModel):
|
|
|
51
51
|
"""
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
class
|
|
54
|
+
class Type64(Enum):
|
|
55
55
|
literature = "literature"
|
|
56
56
|
|
|
57
57
|
|
|
@@ -61,7 +61,7 @@ class PagesSchema(BaseModel):
|
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
class LiteratureReferenceSchema(BaseModel):
|
|
64
|
-
type: Optional[
|
|
64
|
+
type: Optional[Type64] = None
|
|
65
65
|
doi: Optional[str] = None
|
|
66
66
|
"""
|
|
67
67
|
Digital Object Identifier of the reference.
|
|
@@ -21,6 +21,7 @@ class TemplateSchema(BaseModel):
|
|
|
21
21
|
applicationVersion: Optional[str] = None
|
|
22
22
|
executableName: Optional[str] = None
|
|
23
23
|
contextProviders: Optional[List[NameResultSchema]] = None
|
|
24
|
+
isManuallyChanged: Optional[bool] = None
|
|
24
25
|
name: str
|
|
25
26
|
"""
|
|
26
27
|
Input file name. e.g. pw_scf.in
|
|
@@ -29,7 +30,7 @@ class TemplateSchema(BaseModel):
|
|
|
29
30
|
"""
|
|
30
31
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
31
32
|
"""
|
|
32
|
-
rendered: str
|
|
33
|
+
rendered: Optional[str] = None
|
|
33
34
|
"""
|
|
34
35
|
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
35
36
|
"""
|
|
@@ -200,7 +200,7 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|
|
|
200
200
|
"""
|
|
201
201
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
202
202
|
"""
|
|
203
|
-
rendered: str
|
|
203
|
+
rendered: Optional[str] = None
|
|
204
204
|
"""
|
|
205
205
|
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
206
206
|
"""
|
|
@@ -200,7 +200,7 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|
|
|
200
200
|
"""
|
|
201
201
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
202
202
|
"""
|
|
203
|
-
rendered: str
|
|
203
|
+
rendered: Optional[str] = None
|
|
204
204
|
"""
|
|
205
205
|
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
206
206
|
"""
|