mat3ra-esse 2025.8.8.post0__py3-none-any.whl → 2025.8.14.post0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mat3ra-esse might be problematic. Click here for more details.

Files changed (22) hide show
  1. mat3ra/esse/data/examples.py +1 -1
  2. mat3ra/esse/data/schemas.py +1 -1
  3. mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py +54 -5
  4. mat3ra/esse/models/core/reusable/coordinate_conditions/box.py +1 -1
  5. mat3ra/esse/models/core/reusable/coordinate_conditions/cylinder.py +25 -0
  6. mat3ra/esse/models/core/reusable/coordinate_conditions/plane.py +24 -0
  7. mat3ra/esse/models/core/reusable/coordinate_conditions/sphere.py +23 -0
  8. mat3ra/esse/models/core/reusable/coordinate_conditions/triangular_prism.py +33 -0
  9. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py +41 -2
  10. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py +41 -2
  11. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py +41 -2
  12. mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/void.py +43 -4
  13. mat3ra/esse/models/software/template.py +2 -1
  14. mat3ra/esse/models/software_directory/modeling/unit/execution.py +1 -1
  15. mat3ra/esse/models/software_directory/scripting/unit/execution.py +1 -1
  16. mat3ra/esse/models/workflow/unit/input/_input.py +1 -1
  17. mat3ra/esse/models/workflow/unit/input/_inputItem.py +3 -1
  18. {mat3ra_esse-2025.8.8.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/METADATA +1 -1
  19. {mat3ra_esse-2025.8.8.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/RECORD +22 -18
  20. {mat3ra_esse-2025.8.8.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/WHEEL +0 -0
  21. {mat3ra_esse-2025.8.8.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/licenses/LICENSE.md +0 -0
  22. {mat3ra_esse-2025.8.8.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/top_level.txt +0 -0
@@ -5,9 +5,9 @@
5
5
  from __future__ import annotations
6
6
 
7
7
  from enum import Enum
8
- from typing import List, Literal
8
+ from typing import List, Literal, Union
9
9
 
10
- from pydantic import BaseModel, Field, RootModel
10
+ from pydantic import BaseModel, Field, RootModel, confloat
11
11
 
12
12
 
13
13
  class CoordinateShapeEnum(Enum):
@@ -19,13 +19,62 @@ class CoordinateShapeEnum(Enum):
19
19
 
20
20
 
21
21
  class BoxCoordinateConditionSchema(BaseModel):
22
- shape: Literal["box"] = Field(..., title="Coordinate Shape Enum")
22
+ shape: Literal["box"] = Field("box", title="Coordinate Shape Enum")
23
23
  min_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
24
24
  max_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
25
25
 
26
26
 
27
- class ESSE(RootModel[BoxCoordinateConditionSchema]):
28
- root: BoxCoordinateConditionSchema = Field(..., title="Coordinate Conditions Schema")
27
+ class SphereCoordinateConditionSchema(BaseModel):
28
+ shape: Literal["sphere"] = Field("sphere", title="Coordinate Shape Enum")
29
+ radius: confloat(ge=0.0)
30
+
31
+
32
+ class CylinderCoordinateConditionSchema(BaseModel):
33
+ shape: Literal["cylinder"] = Field("cylinder", title="Coordinate Shape Enum")
34
+ radius: confloat(ge=0.0)
35
+ min_z: float
36
+ max_z: float
37
+
38
+
39
+ class TriangularPrismCoordinateConditionSchema(BaseModel):
40
+ shape: Literal["triangular_prism"] = Field("triangular_prism", title="Coordinate Shape Enum")
41
+ position_on_surface_1: List[float] = Field(
42
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
43
+ )
44
+ position_on_surface_2: List[float] = Field(
45
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
46
+ )
47
+ position_on_surface_3: List[float] = Field(
48
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
49
+ )
50
+ min_z: float
51
+ max_z: float
52
+
53
+
54
+ class PlaneCoordinateConditionSchema(BaseModel):
55
+ shape: Literal["plane"] = Field("plane", title="Coordinate Shape Enum")
56
+ plane_normal: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
57
+ plane_point_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
58
+
59
+
60
+ class ESSE(
61
+ RootModel[
62
+ Union[
63
+ BoxCoordinateConditionSchema,
64
+ SphereCoordinateConditionSchema,
65
+ CylinderCoordinateConditionSchema,
66
+ TriangularPrismCoordinateConditionSchema,
67
+ PlaneCoordinateConditionSchema,
68
+ ]
69
+ ]
70
+ ):
71
+ root: Union[
72
+ BoxCoordinateConditionSchema,
73
+ SphereCoordinateConditionSchema,
74
+ CylinderCoordinateConditionSchema,
75
+ TriangularPrismCoordinateConditionSchema,
76
+ PlaneCoordinateConditionSchema,
77
+ ] = Field(..., title="Coordinate Conditions Schema")
29
78
  """
30
79
  Combined schema for all coordinate condition types
31
80
  """
@@ -19,6 +19,6 @@ class CoordinateShapeEnum(Enum):
19
19
 
20
20
 
21
21
  class BoxCoordinateConditionSchema(BaseModel):
22
- shape: Literal["box"] = Field(..., title="Coordinate Shape Enum")
22
+ shape: Literal["box"] = Field("box", title="Coordinate Shape Enum")
23
23
  min_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
24
24
  max_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
@@ -0,0 +1,25 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: core/reusable/coordinate_conditions/cylinder.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+ from typing import Literal
9
+
10
+ from pydantic import BaseModel, Field, confloat
11
+
12
+
13
+ class CoordinateShapeEnum(Enum):
14
+ cylinder = "cylinder"
15
+ sphere = "sphere"
16
+ box = "box"
17
+ triangular_prism = "triangular_prism"
18
+ plane = "plane"
19
+
20
+
21
+ class CylinderCoordinateConditionSchema(BaseModel):
22
+ shape: Literal["cylinder"] = Field("cylinder", title="Coordinate Shape Enum")
23
+ radius: confloat(ge=0.0)
24
+ min_z: float
25
+ max_z: float
@@ -0,0 +1,24 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: core/reusable/coordinate_conditions/plane.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+ from typing import List, Literal
9
+
10
+ from pydantic import BaseModel, Field
11
+
12
+
13
+ class CoordinateShapeEnum(Enum):
14
+ cylinder = "cylinder"
15
+ sphere = "sphere"
16
+ box = "box"
17
+ triangular_prism = "triangular_prism"
18
+ plane = "plane"
19
+
20
+
21
+ class PlaneCoordinateConditionSchema(BaseModel):
22
+ shape: Literal["plane"] = Field("plane", title="Coordinate Shape Enum")
23
+ plane_normal: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
24
+ plane_point_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
@@ -0,0 +1,23 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: core/reusable/coordinate_conditions/sphere.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+ from typing import Literal
9
+
10
+ from pydantic import BaseModel, Field, confloat
11
+
12
+
13
+ class CoordinateShapeEnum(Enum):
14
+ cylinder = "cylinder"
15
+ sphere = "sphere"
16
+ box = "box"
17
+ triangular_prism = "triangular_prism"
18
+ plane = "plane"
19
+
20
+
21
+ class SphereCoordinateConditionSchema(BaseModel):
22
+ shape: Literal["sphere"] = Field("sphere", title="Coordinate Shape Enum")
23
+ radius: confloat(ge=0.0)
@@ -0,0 +1,33 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: core/reusable/coordinate_conditions/triangular_prism.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+ from typing import List, Literal
9
+
10
+ from pydantic import BaseModel, Field
11
+
12
+
13
+ class CoordinateShapeEnum(Enum):
14
+ cylinder = "cylinder"
15
+ sphere = "sphere"
16
+ box = "box"
17
+ triangular_prism = "triangular_prism"
18
+ plane = "plane"
19
+
20
+
21
+ class TriangularPrismCoordinateConditionSchema(BaseModel):
22
+ shape: Literal["triangular_prism"] = Field("triangular_prism", title="Coordinate Shape Enum")
23
+ position_on_surface_1: List[float] = Field(
24
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
25
+ )
26
+ position_on_surface_2: List[float] = Field(
27
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
28
+ )
29
+ position_on_surface_3: List[float] = Field(
30
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
31
+ )
32
+ min_z: float
33
+ max_z: float
@@ -2443,17 +2443,56 @@ class CoordinateShapeEnum(Enum):
2443
2443
 
2444
2444
 
2445
2445
  class BoxCoordinateConditionSchema(BaseModel):
2446
- shape: Literal["box"] = Field(..., title="Coordinate Shape Enum")
2446
+ shape: Literal["box"] = Field("box", title="Coordinate Shape Enum")
2447
2447
  min_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
2448
2448
  max_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
2449
2449
 
2450
2450
 
2451
+ class SphereCoordinateConditionSchema(BaseModel):
2452
+ shape: Literal["sphere"] = Field("sphere", title="Coordinate Shape Enum")
2453
+ radius: confloat(ge=0.0)
2454
+
2455
+
2456
+ class CylinderCoordinateConditionSchema(BaseModel):
2457
+ shape: Literal["cylinder"] = Field("cylinder", title="Coordinate Shape Enum")
2458
+ radius: confloat(ge=0.0)
2459
+ min_z: float
2460
+ max_z: float
2461
+
2462
+
2463
+ class TriangularPrismCoordinateConditionSchema(BaseModel):
2464
+ shape: Literal["triangular_prism"] = Field("triangular_prism", title="Coordinate Shape Enum")
2465
+ position_on_surface_1: List[float] = Field(
2466
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
2467
+ )
2468
+ position_on_surface_2: List[float] = Field(
2469
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
2470
+ )
2471
+ position_on_surface_3: List[float] = Field(
2472
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
2473
+ )
2474
+ min_z: float
2475
+ max_z: float
2476
+
2477
+
2478
+ class PlaneCoordinateConditionSchema(BaseModel):
2479
+ shape: Literal["plane"] = Field("plane", title="Coordinate Shape Enum")
2480
+ plane_normal: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
2481
+ plane_point_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
2482
+
2483
+
2451
2484
  class VoidRegionSchema(BaseModel):
2452
2485
  crystal: CrystalSchema27 = Field(..., title="Crystal Schema")
2453
2486
  """
2454
2487
  A crystal structure, referencing the base material schema
2455
2488
  """
2456
- coordinate_condition: BoxCoordinateConditionSchema = Field(..., title="Coordinate Conditions Schema")
2489
+ coordinate_condition: Union[
2490
+ BoxCoordinateConditionSchema,
2491
+ SphereCoordinateConditionSchema,
2492
+ CylinderCoordinateConditionSchema,
2493
+ TriangularPrismCoordinateConditionSchema,
2494
+ PlaneCoordinateConditionSchema,
2495
+ ] = Field(..., title="Coordinate Conditions Schema")
2457
2496
  """
2458
2497
  Combined schema for all coordinate condition types
2459
2498
  """
@@ -2443,17 +2443,56 @@ class CoordinateShapeEnum(Enum):
2443
2443
 
2444
2444
 
2445
2445
  class BoxCoordinateConditionSchema(BaseModel):
2446
- shape: Literal["box"] = Field(..., title="Coordinate Shape Enum")
2446
+ shape: Literal["box"] = Field("box", title="Coordinate Shape Enum")
2447
2447
  min_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
2448
2448
  max_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
2449
2449
 
2450
2450
 
2451
+ class SphereCoordinateConditionSchema(BaseModel):
2452
+ shape: Literal["sphere"] = Field("sphere", title="Coordinate Shape Enum")
2453
+ radius: confloat(ge=0.0)
2454
+
2455
+
2456
+ class CylinderCoordinateConditionSchema(BaseModel):
2457
+ shape: Literal["cylinder"] = Field("cylinder", title="Coordinate Shape Enum")
2458
+ radius: confloat(ge=0.0)
2459
+ min_z: float
2460
+ max_z: float
2461
+
2462
+
2463
+ class TriangularPrismCoordinateConditionSchema(BaseModel):
2464
+ shape: Literal["triangular_prism"] = Field("triangular_prism", title="Coordinate Shape Enum")
2465
+ position_on_surface_1: List[float] = Field(
2466
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
2467
+ )
2468
+ position_on_surface_2: List[float] = Field(
2469
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
2470
+ )
2471
+ position_on_surface_3: List[float] = Field(
2472
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
2473
+ )
2474
+ min_z: float
2475
+ max_z: float
2476
+
2477
+
2478
+ class PlaneCoordinateConditionSchema(BaseModel):
2479
+ shape: Literal["plane"] = Field("plane", title="Coordinate Shape Enum")
2480
+ plane_normal: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
2481
+ plane_point_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
2482
+
2483
+
2451
2484
  class VoidRegionSchema(BaseModel):
2452
2485
  crystal: CrystalSchema17 = Field(..., title="Crystal Schema")
2453
2486
  """
2454
2487
  A crystal structure, referencing the base material schema
2455
2488
  """
2456
- coordinate_condition: BoxCoordinateConditionSchema = Field(..., title="Coordinate Conditions Schema")
2489
+ coordinate_condition: Union[
2490
+ BoxCoordinateConditionSchema,
2491
+ SphereCoordinateConditionSchema,
2492
+ CylinderCoordinateConditionSchema,
2493
+ TriangularPrismCoordinateConditionSchema,
2494
+ PlaneCoordinateConditionSchema,
2495
+ ] = Field(..., title="Coordinate Conditions Schema")
2457
2496
  """
2458
2497
  Combined schema for all coordinate condition types
2459
2498
  """
@@ -539,17 +539,56 @@ class CoordinateShapeEnum(Enum):
539
539
 
540
540
 
541
541
  class BoxCoordinateConditionSchema(BaseModel):
542
- shape: Literal["box"] = Field(..., title="Coordinate Shape Enum")
542
+ shape: Literal["box"] = Field("box", title="Coordinate Shape Enum")
543
543
  min_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
544
544
  max_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
545
545
 
546
546
 
547
+ class SphereCoordinateConditionSchema(BaseModel):
548
+ shape: Literal["sphere"] = Field("sphere", title="Coordinate Shape Enum")
549
+ radius: confloat(ge=0.0)
550
+
551
+
552
+ class CylinderCoordinateConditionSchema(BaseModel):
553
+ shape: Literal["cylinder"] = Field("cylinder", title="Coordinate Shape Enum")
554
+ radius: confloat(ge=0.0)
555
+ min_z: float
556
+ max_z: float
557
+
558
+
559
+ class TriangularPrismCoordinateConditionSchema(BaseModel):
560
+ shape: Literal["triangular_prism"] = Field("triangular_prism", title="Coordinate Shape Enum")
561
+ position_on_surface_1: List[float] = Field(
562
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
563
+ )
564
+ position_on_surface_2: List[float] = Field(
565
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
566
+ )
567
+ position_on_surface_3: List[float] = Field(
568
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
569
+ )
570
+ min_z: float
571
+ max_z: float
572
+
573
+
574
+ class PlaneCoordinateConditionSchema(BaseModel):
575
+ shape: Literal["plane"] = Field("plane", title="Coordinate Shape Enum")
576
+ plane_normal: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
577
+ plane_point_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
578
+
579
+
547
580
  class VoidRegionSchema(BaseModel):
548
581
  crystal: CrystalSchema = Field(..., title="Crystal Schema")
549
582
  """
550
583
  A crystal structure, referencing the base material schema
551
584
  """
552
- coordinate_condition: BoxCoordinateConditionSchema = Field(..., title="Coordinate Conditions Schema")
585
+ coordinate_condition: Union[
586
+ BoxCoordinateConditionSchema,
587
+ SphereCoordinateConditionSchema,
588
+ CylinderCoordinateConditionSchema,
589
+ TriangularPrismCoordinateConditionSchema,
590
+ PlaneCoordinateConditionSchema,
591
+ ] = Field(..., title="Coordinate Conditions Schema")
553
592
  """
554
593
  Combined schema for all coordinate condition types
555
594
  """
@@ -5,9 +5,9 @@
5
5
  from __future__ import annotations
6
6
 
7
7
  from enum import Enum
8
- from typing import List, Literal
8
+ from typing import List, Literal, Union
9
9
 
10
- from pydantic import BaseModel, Field
10
+ from pydantic import BaseModel, Field, confloat
11
11
 
12
12
 
13
13
  class CoordinateShapeEnum(Enum):
@@ -19,14 +19,53 @@ class CoordinateShapeEnum(Enum):
19
19
 
20
20
 
21
21
  class BoxCoordinateConditionSchema(BaseModel):
22
- shape: Literal["box"] = Field(..., title="Coordinate Shape Enum")
22
+ shape: Literal["box"] = Field("box", title="Coordinate Shape Enum")
23
23
  min_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
24
24
  max_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
25
25
 
26
26
 
27
+ class SphereCoordinateConditionSchema(BaseModel):
28
+ shape: Literal["sphere"] = Field("sphere", title="Coordinate Shape Enum")
29
+ radius: confloat(ge=0.0)
30
+
31
+
32
+ class CylinderCoordinateConditionSchema(BaseModel):
33
+ shape: Literal["cylinder"] = Field("cylinder", title="Coordinate Shape Enum")
34
+ radius: confloat(ge=0.0)
35
+ min_z: float
36
+ max_z: float
37
+
38
+
39
+ class TriangularPrismCoordinateConditionSchema(BaseModel):
40
+ shape: Literal["triangular_prism"] = Field("triangular_prism", title="Coordinate Shape Enum")
41
+ position_on_surface_1: List[float] = Field(
42
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
43
+ )
44
+ position_on_surface_2: List[float] = Field(
45
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
46
+ )
47
+ position_on_surface_3: List[float] = Field(
48
+ ..., max_length=2, min_length=2, title="array of 2 number elements schema"
49
+ )
50
+ min_z: float
51
+ max_z: float
52
+
53
+
54
+ class PlaneCoordinateConditionSchema(BaseModel):
55
+ shape: Literal["plane"] = Field("plane", title="Coordinate Shape Enum")
56
+ plane_normal: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
57
+ plane_point_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
58
+
59
+
27
60
  class VoidSchema(BaseModel):
28
61
  center_coordinate: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
29
- shape: BoxCoordinateConditionSchema = Field(..., title="Coordinate Conditions Schema")
62
+ shape: Union[
63
+ BoxCoordinateConditionSchema,
64
+ SphereCoordinateConditionSchema,
65
+ CylinderCoordinateConditionSchema,
66
+ TriangularPrismCoordinateConditionSchema,
67
+ PlaneCoordinateConditionSchema,
68
+ ] = Field(..., title="Coordinate Conditions Schema")
30
69
  """
31
70
  Combined schema for all coordinate condition types
32
71
  """
@@ -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
  """
@@ -18,7 +18,7 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
18
18
  """
19
19
  Content of the input file. e.g. &CONTROL calculation='scf' ...
20
20
  """
21
- rendered: str
21
+ rendered: Optional[str] = None
22
22
  """
23
23
  Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
24
24
  """
@@ -4,6 +4,8 @@
4
4
 
5
5
  from __future__ import annotations
6
6
 
7
+ from typing import Optional
8
+
7
9
  from pydantic import BaseModel
8
10
 
9
11
 
@@ -16,7 +18,7 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
16
18
  """
17
19
  Content of the input file. e.g. &CONTROL calculation='scf' ...
18
20
  """
19
- rendered: str
21
+ rendered: Optional[str] = None
20
22
  """
21
23
  Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
22
24
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mat3ra-esse
3
- Version: 2025.8.8.post0
3
+ Version: 2025.8.14.post0
4
4
  Summary: Excellent Source of Schemas and Examples.
5
5
  Author-email: "Exabyte Inc." <info@mat3ra.com>
6
6
  License: # LICENSE
@@ -2,9 +2,9 @@ mat3ra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  mat3ra/esse/__init__.py,sha256=nN0dOkxbOK6sWOTNr8aBGi9bQsI9sy6B2nn0UP29-sI,1244
3
3
  mat3ra/esse/utils.py,sha256=-FexdtkOYGEWmwJUwWDuJferibc7M1YzUH738Bffuxo,1727
4
4
  mat3ra/esse/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- mat3ra/esse/data/examples.py,sha256=IRKlXpR535KjfwLGC7w5tFS2kRswZY5RMyQlWTyGBmE,145089
5
+ mat3ra/esse/data/examples.py,sha256=4RnMfttGXa_mRh7w5KHZS8RDpI2dIXPSGdQyWPLnbrY,145664
6
6
  mat3ra/esse/data/properties.py,sha256=geWFIVIJbdn2Q_JG3Mz36oQ_dXeZZwnmlS_NgszvHUY,6099
7
- mat3ra/esse/data/schemas.py,sha256=Ksu9u7XKDciuBRArmaDjXgG4UFhj6n0N-diLheF5nnQ,3168934
7
+ mat3ra/esse/data/schemas.py,sha256=5xfSeOWHwZY7pBEIH-8ummGTFJPqOWwxAZvGsmIRfqA,3191669
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
@@ -94,10 +94,14 @@ mat3ra/esse/models/core/reusable/atomic_data/per_orbital.py,sha256=pd3oG1FfLevoA
94
94
  mat3ra/esse/models/core/reusable/atomic_data/per_orbital_pair.py,sha256=gLJkxLpRfNAixmVV1LCz-UHp-C55iq7SM7QJQnFSLWM,919
95
95
  mat3ra/esse/models/core/reusable/atomic_data/value_number.py,sha256=nEF8VBqob3JNGFogaJsaHWOchl_lGyh9MHDbFLF4h78,376
96
96
  mat3ra/esse/models/core/reusable/atomic_data/value_string.py,sha256=vwk-4oyLWQB7Qbw5dpUt79oaojZsJVlbZvPfp-3JH7U,348
97
- mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py,sha256=x3F0hTWnquvTngAvmbwwKJ547QuAvn_oLk6FRfY3Egg,956
97
+ mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py,sha256=PbSAyxw3bkHm7ozSAApXVjQVwfKqxDskdP-l5tRFjr8,2712
98
98
  mat3ra/esse/models/core/reusable/coordinate_conditions/base.py,sha256=L7zYSATgDrli55qZhAutLnzOUXCp1PqTxL8-0XRO940,497
99
- mat3ra/esse/models/core/reusable/coordinate_conditions/box.py,sha256=MldQtO6zNM-C40C4EKR8k4p29RaGGJh_Hc8N2gCTfX8,733
99
+ mat3ra/esse/models/core/reusable/coordinate_conditions/box.py,sha256=eOjqGLjZD1EoVmBkh-s8-5aTFX4E7Se3thmOq4RjruE,735
100
+ mat3ra/esse/models/core/reusable/coordinate_conditions/cylinder.py,sha256=t3OfPcQoQPTdrP03GeCPXcrk9AmvCfVK3AHw7L8gzoU,616
100
101
  mat3ra/esse/models/core/reusable/coordinate_conditions/enum.py,sha256=qlOpxIW7i5SowG5-rLSz6DAqIOlIIvPrQyqYMGoZmCQ,337
102
+ mat3ra/esse/models/core/reusable/coordinate_conditions/plane.py,sha256=zIV3ekbu4ygDOb3zGBvzxV8X2Z-3VnJFUFYGHTJMdyc,749
103
+ mat3ra/esse/models/core/reusable/coordinate_conditions/sphere.py,sha256=P6NS9cBYOmjyJ5VeSuVUjpr4-rlTxkgvTYx5zgs--kI,574
104
+ mat3ra/esse/models/core/reusable/coordinate_conditions/triangular_prism.py,sha256=JV5rlqQL43Iz69IWaMlPIg0JeJqo1DJFMx_8cjKhgog,1025
101
105
  mat3ra/esse/models/core/reusable/energy_accuracy_levels/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
102
106
  mat3ra/esse/models/core/reusable/energy_accuracy_levels/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py,sha256=rMNirWgvD2MCc8jWTZmXCDEbKOcBl4Do5-R9W-mJIM4,652
103
107
  mat3ra/esse/models/definitions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -130,9 +134,9 @@ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adato
130
134
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
131
135
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py,sha256=IuLezWyDLXQgxocR8-cZk9Eaw7Pu-o_UCZyslsF-TqY,96785
132
136
  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=Ywaw0XuOdhyXtuYgu5tjRCtNKnwUa4S3yxx4HpFcYy0,65256
137
+ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py,sha256=ulOMoP-56mHxeI-OYr88r3nCJwJvGBCLjMifJ5Ckems,66755
134
138
  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=6J7Ar2zcQyIFw_CM5FZ0lra1rg5xOei9vK7QPZTY5Fc,65447
139
+ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py,sha256=_lF5NfL0tNDigV8C7Lzxj7BAwFCa61q0UDzG7IHqkC0,66946
136
140
  mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
137
141
  mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/base_configuration.py,sha256=I3pZiB4ivSxKo_8_VkOOmGk_GcKe-Q4bJSUfgd6JTHE,12135
138
142
  mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py,sha256=agQO-24UY_HExqjbcIb9JrnTT9baoDDEem9NxTCZpCs,23526
@@ -158,11 +162,11 @@ mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensio
158
162
  mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
159
163
  mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py,sha256=MPGVcAYLAElkrl_dger2cywpTpPbmIRns_xD96JPmB0,12035
160
164
  mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/point_defect_site.py,sha256=7B3qYwFWhJgkNjJynlZrbkTyzq2hDSGBowLg1k0fyW4,14031
161
- mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py,sha256=-76oSOGvbmc2gOs8SigCevFWxSKD-Nxs0LnKtBIrIyY,12597
165
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py,sha256=L_jp4d7YJQ955YNmJojvasjNAvjQaPy1YGeGL7sba-E,14096
162
166
  mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_site.py,sha256=Eyb9jZfc6DWOM1ECkCsycHWCwFNRZ-CqXZtKQtoI8lo,34945
163
167
  mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
164
168
  mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py,sha256=PegLCC_-FHSSIPIhi3vR5LCuFZiNXB9ktjVKD03rxSs,11747
165
- mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/void.py,sha256=23O84_CEsV-zdidWHPnadN-mSjISj78_9cojEOfttPw,1059
169
+ mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/void.py,sha256=O4CSYSZkXs72ceagAbSf8Cn2qa3046ncl5874HQc5ek,2575
166
170
  mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
167
171
  mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py,sha256=m6Cp3CZSTZNR7QWZkINQWcrAdrJmVV-FdUOy66-e9hI,12187
168
172
  mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -465,7 +469,7 @@ mat3ra/esse/models/software/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiO
465
469
  mat3ra/esse/models/software/application.py,sha256=_GYziemq6s_Cqvra7qT-ZdT_ib168hlqA7GxRS-KLk8,1359
466
470
  mat3ra/esse/models/software/executable.py,sha256=pLG2bpGO1baoOLNY1zK1AeNueSvSnJWqEVGRHejfex8,1630
467
471
  mat3ra/esse/models/software/flavor.py,sha256=jfuIS4FACisUbagX3zvdRD16TpRnQ9eui-mLVWg1nno,2333
468
- mat3ra/esse/models/software/template.py,sha256=t-D9dRt3FzY7p452VkzWxmr0pS9gKJ8qpyO5wcctIN4,1150
472
+ mat3ra/esse/models/software/template.py,sha256=i3kPaOabpVPGahMajLdhFc0O-umW-a-CkFAEWWHLJtE,1212
469
473
  mat3ra/esse/models/software_directory/ml/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
470
474
  mat3ra/esse/models/software_directory/ml/exabyteml.py,sha256=EZsHS_b2XShzzSP6DSW1L7v2THz6FlcN2Jj2kUYWiEA,582
471
475
  mat3ra/esse/models/software_directory/ml/unit/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -488,13 +492,13 @@ mat3ra/esse/models/software_directory/modeling/vasp.py,sha256=nAutKdGw4rnzzPVE5u
488
492
  mat3ra/esse/models/software_directory/modeling/espresso/__init__.py,sha256=buLYtcBmCwYAD0fUC05bRtfoeK2HAQsK04msdpDy6AI,808
489
493
  mat3ra/esse/models/software_directory/modeling/espresso/arguments.py,sha256=MVMYJEb_qQ8IkQjj3vuMBe2z0iF1BKxPzdGNRUyNIhg,2028
490
494
  mat3ra/esse/models/software_directory/modeling/unit/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
491
- mat3ra/esse/models/software_directory/modeling/unit/execution.py,sha256=0cQbEAAwHTNIVlhuzR9-20ravimp0s4ICIa6m4ukMAE,8115
495
+ mat3ra/esse/models/software_directory/modeling/unit/execution.py,sha256=aBJ0-jYS7S0PcxIcKbFKUJKcq2ccvInkceTnqmBGeY4,8132
492
496
  mat3ra/esse/models/software_directory/scripting/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
493
497
  mat3ra/esse/models/software_directory/scripting/jupyter_lab.py,sha256=SP5FwLVFrP4ah3u1ilvGfjhJaQSUjea187qvHiSGUi4,1734
494
498
  mat3ra/esse/models/software_directory/scripting/python.py,sha256=_HxVAX-VE8FqkOFOz6rPdtgnpyiiGrwykim5sFBmRSM,2139
495
499
  mat3ra/esse/models/software_directory/scripting/shell.py,sha256=SID-msgkNSCsCVm6Ln5Zw0xMRkieOM2s0JUEOLeQak8,2051
496
500
  mat3ra/esse/models/software_directory/scripting/unit/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
497
- mat3ra/esse/models/software_directory/scripting/unit/execution.py,sha256=tSaaKxtJa0Bs7c5f0LVDtRykkQWi9kqKcvvWe_9lSDg,8084
501
+ mat3ra/esse/models/software_directory/scripting/unit/execution.py,sha256=oWxk_VRoT13oy60ciGdL-gjzy1J6jY7qpCWCTfWo8m4,8101
498
502
  mat3ra/esse/models/system/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
499
503
  mat3ra/esse/models/system/_material.py,sha256=LHmGZ_o56EHi9BfVRwRpDNzDZQOYywWl_eb4vIEZzPc,522
500
504
  mat3ra/esse/models/system/_parent_job.py,sha256=14FFwVJCaWy4EOMmRzN-qSHOpJpQYx6NbeKl7tMGzOs,510
@@ -547,8 +551,8 @@ mat3ra/esse/models/workflow/unit/processing.py,sha256=DyJe3LQ6k1CWmezkc0Vg5aB3_W
547
551
  mat3ra/esse/models/workflow/unit/reduce.py,sha256=nSu3YZOuruqwdzWxoTL8m8R5d5NIx9D3i27TqHvisW4,2992
548
552
  mat3ra/esse/models/workflow/unit/subworkflow.py,sha256=PkZFIbiW8Vhi8BTn1r8gi5f3T8GKVGK1BRCyFW9XYXE,2648
549
553
  mat3ra/esse/models/workflow/unit/input/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
550
- mat3ra/esse/models/workflow/unit/input/_input.py,sha256=E5XgVUuwtTIodyjVqfpksAym2DooMv5onyJpWqeIaLE,1302
551
- mat3ra/esse/models/workflow/unit/input/_inputItem.py,sha256=k8fVHW9kKRt8VGbBwUF22WJsF6qwUuySDsGoO4nXkqo,538
554
+ mat3ra/esse/models/workflow/unit/input/_input.py,sha256=uF1-EJ3eTOttOKlLiMI86ABg3yE3tFr2ayneWX9cRZU,1319
555
+ mat3ra/esse/models/workflow/unit/input/_inputItem.py,sha256=1U7k57TiosIR0ANCxQuKvDYW5KKNmLZ9Yn0r2pzqnMg,584
552
556
  mat3ra/esse/models/workflow/unit/input/_inputItemId.py,sha256=Fz8Nad2oYiSWv4_r_udzjTAn3klBXaM32Vx6Nx5h6mQ,555
553
557
  mat3ra/esse/models/workflow/unit/input/_inputItemScope.py,sha256=fTCCX3tnERlU7mUd24ufRor3ZEFUKyaRZ-noroZ_KF4,392
554
558
  mat3ra/esse/models/workflow/unit/input/_map_input/__init__.py,sha256=EWese8D4VOvFbvTGxPS19Iw0RGu9uVo9r1VddFdYWnc,469
@@ -563,8 +567,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
563
567
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
564
568
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
565
569
  mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
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,,
570
+ mat3ra_esse-2025.8.14.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
571
+ mat3ra_esse-2025.8.14.post0.dist-info/METADATA,sha256=poRiM-KvHmK0zQsMMzm4IGUipHv5_LEmUTDBnpa5gl0,9013
572
+ mat3ra_esse-2025.8.14.post0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
573
+ mat3ra_esse-2025.8.14.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
574
+ mat3ra_esse-2025.8.14.post0.dist-info/RECORD,,