openepd 3.2.0__py3-none-any.whl → 3.3.0__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.
- openepd/__version__.py +1 -1
- openepd/model/specs/generated/precast_concrete.py +142 -4
- {openepd-3.2.0.dist-info → openepd-3.3.0.dist-info}/METADATA +1 -1
- {openepd-3.2.0.dist-info → openepd-3.3.0.dist-info}/RECORD +6 -6
- {openepd-3.2.0.dist-info → openepd-3.3.0.dist-info}/LICENSE +0 -0
- {openepd-3.2.0.dist-info → openepd-3.3.0.dist-info}/WHEEL +0 -0
openepd/__version__.py
CHANGED
@@ -18,33 +18,170 @@
|
|
18
18
|
# Find out more at www.BuildingTransparency.org
|
19
19
|
#
|
20
20
|
from openepd.compat.pydantic import pyd
|
21
|
-
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
21
|
+
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec, BaseOpenEpdSpec
|
22
22
|
from openepd.model.validation.numbers import RatioFloat
|
23
23
|
from openepd.model.validation.quantity import PressureMPaStr
|
24
24
|
|
25
25
|
|
26
|
+
class StructuralPrecastElementType(BaseOpenEpdSpec):
|
27
|
+
"""Precast element types for Structural Precast Concrete."""
|
28
|
+
|
29
|
+
wall: bool | None = pyd.Field(
|
30
|
+
description="Precast solid wall elements, including thin shell",
|
31
|
+
example=True,
|
32
|
+
default=None,
|
33
|
+
)
|
34
|
+
solid_slab: bool | None = pyd.Field(
|
35
|
+
description="Precast slabs used for floor or roof applications",
|
36
|
+
example=True,
|
37
|
+
default=None,
|
38
|
+
)
|
39
|
+
hollowcore: bool | None = pyd.Field(
|
40
|
+
description="Precast slabs with tubular voids, typically used flooring applications",
|
41
|
+
example=True,
|
42
|
+
default=None,
|
43
|
+
)
|
44
|
+
beam: bool | None = pyd.Field(
|
45
|
+
description="Precast structural beams for carrying or transferring loads; includes girders",
|
46
|
+
example=True,
|
47
|
+
default=None,
|
48
|
+
)
|
49
|
+
column: bool | None = pyd.Field(
|
50
|
+
description="Precast structural columns for carrying or transferring loads",
|
51
|
+
example=True,
|
52
|
+
default=None,
|
53
|
+
)
|
54
|
+
stairs: bool | None = pyd.Field(
|
55
|
+
description="Staircases made of precast concrete components",
|
56
|
+
example=True,
|
57
|
+
default=None,
|
58
|
+
)
|
59
|
+
balcony: bool | None = pyd.Field(
|
60
|
+
description="Balcony slabs made from precast concrete",
|
61
|
+
example=True,
|
62
|
+
default=None,
|
63
|
+
)
|
64
|
+
pile: bool | None = pyd.Field(
|
65
|
+
description="Precast concrete structural foundation elements used to support offshore structures such as bridges, oil rigs, and floating airports",
|
66
|
+
example=True,
|
67
|
+
default=None,
|
68
|
+
)
|
69
|
+
|
70
|
+
|
71
|
+
class UtilityPrecastElementType(BaseOpenEpdSpec):
|
72
|
+
"""Precast element types for Utility Underground Precast Concrete."""
|
73
|
+
|
74
|
+
manhole: bool | None = pyd.Field(
|
75
|
+
description="Precast barrel-shaped chambers used for wastewater management and access management",
|
76
|
+
example=True,
|
77
|
+
default=None,
|
78
|
+
)
|
79
|
+
retaining_wall: bool | None = pyd.Field(
|
80
|
+
description="Precast concrete structures for retaining soil",
|
81
|
+
example=True,
|
82
|
+
default=None,
|
83
|
+
)
|
84
|
+
box_culvert: bool | None = pyd.Field(
|
85
|
+
description="A precast concrete structure commonly used to channel water, primarily as part of a drainage system",
|
86
|
+
example=True,
|
87
|
+
default=None,
|
88
|
+
)
|
89
|
+
|
90
|
+
|
91
|
+
class ArchitecturalPrecastElementType(BaseOpenEpdSpec):
|
92
|
+
"""Precast element types for Architectural Precast Concrete."""
|
93
|
+
|
94
|
+
wall: bool | None = pyd.Field(
|
95
|
+
description="Precast solid wall elements, including thin shell",
|
96
|
+
example=True,
|
97
|
+
default=None,
|
98
|
+
)
|
99
|
+
|
100
|
+
|
101
|
+
class CivilPrecastElementType(BaseOpenEpdSpec):
|
102
|
+
"""Precast element types for Civil Precast Concrete."""
|
103
|
+
|
104
|
+
beam: bool | None = pyd.Field(
|
105
|
+
description="Precast structural beams for carrying or transferring loads; includes girders",
|
106
|
+
example=True,
|
107
|
+
default=None,
|
108
|
+
)
|
109
|
+
manhole: bool | None = pyd.Field(
|
110
|
+
description="Precast barrel-shaped chambers used for wastewater management and access management",
|
111
|
+
example=True,
|
112
|
+
default=None,
|
113
|
+
)
|
114
|
+
retaining_wall: bool | None = pyd.Field(
|
115
|
+
description="Precast concrete structures for retaining soil",
|
116
|
+
example=True,
|
117
|
+
default=None,
|
118
|
+
)
|
119
|
+
rail_sleeper: bool | None = pyd.Field(
|
120
|
+
description="Rectangular supports for the rails on railroad tracks, which transfer loads to the track ballast and subgrade and keep the rails spaced to the correct gauge. Also called railroad ties",
|
121
|
+
example=True,
|
122
|
+
default=None,
|
123
|
+
)
|
124
|
+
box_culvert: bool | None = pyd.Field(
|
125
|
+
description="A precast concrete structure commonly used to channel water, primarily as part of a drainage system",
|
126
|
+
example=True,
|
127
|
+
default=None,
|
128
|
+
)
|
129
|
+
pile: bool | None = pyd.Field(
|
130
|
+
description="Precast concrete structural foundation elements used to support offshore structures such as bridges, oil rigs, and floating airports",
|
131
|
+
example=True,
|
132
|
+
default=None,
|
133
|
+
)
|
134
|
+
road_barriers: bool | None = pyd.Field(
|
135
|
+
description="Precast Vehicle and Traffic Barriers",
|
136
|
+
example=True,
|
137
|
+
default=None,
|
138
|
+
)
|
139
|
+
|
140
|
+
|
26
141
|
class ArchitecturalPrecastV1(BaseOpenEpdHierarchicalSpec):
|
27
142
|
"""Precast concrete cladding used for architectural purposes."""
|
28
143
|
|
29
|
-
_EXT_VERSION = "1.
|
144
|
+
_EXT_VERSION = "1.1"
|
145
|
+
|
146
|
+
element_type: ArchitecturalPrecastElementType | None = pyd.Field(
|
147
|
+
default=None, description="Precast element type used for architectural applications."
|
148
|
+
)
|
30
149
|
|
31
150
|
|
32
151
|
class StructuralPrecastV1(BaseOpenEpdHierarchicalSpec):
|
33
152
|
"""Precast concrete used for structural purposes."""
|
34
153
|
|
35
|
-
_EXT_VERSION = "1.
|
154
|
+
_EXT_VERSION = "1.1"
|
155
|
+
|
156
|
+
element_type: StructuralPrecastElementType | None = pyd.Field(
|
157
|
+
default=None, description="Precast element type used for structural applications."
|
158
|
+
)
|
36
159
|
|
37
160
|
|
38
161
|
class UtilityUndergroundPrecastV1(BaseOpenEpdHierarchicalSpec):
|
39
162
|
"""Precast concrete for utility vaults, manhole, drain inlets. Excludes piping."""
|
40
163
|
|
164
|
+
_EXT_VERSION = "1.1"
|
165
|
+
|
166
|
+
element_type: UtilityPrecastElementType | None = pyd.Field(
|
167
|
+
default=None, description="Precast element type used for utility underground applications."
|
168
|
+
)
|
169
|
+
|
170
|
+
|
171
|
+
class CivilPrecastV1(BaseOpenEpdHierarchicalSpec):
|
172
|
+
"""Precast concrete used for civil engineering applications including bridges, highways, and railroads."""
|
173
|
+
|
41
174
|
_EXT_VERSION = "1.0"
|
42
175
|
|
176
|
+
element_type: CivilPrecastElementType | None = pyd.Field(
|
177
|
+
default=None, description="Precast element type used as civil engineering components."
|
178
|
+
)
|
179
|
+
|
43
180
|
|
44
181
|
class PrecastConcreteV1(BaseOpenEpdHierarchicalSpec):
|
45
182
|
"""General category for precast concrete components."""
|
46
183
|
|
47
|
-
_EXT_VERSION = "1.
|
184
|
+
_EXT_VERSION = "1.1"
|
48
185
|
|
49
186
|
# Own fields:
|
50
187
|
lightweight: bool | None = pyd.Field(default=None, description="", example=True)
|
@@ -62,3 +199,4 @@ class PrecastConcreteV1(BaseOpenEpdHierarchicalSpec):
|
|
62
199
|
ArchitecturalPrecast: ArchitecturalPrecastV1 | None = None
|
63
200
|
StructuralPrecast: StructuralPrecastV1 | None = None
|
64
201
|
UtilityUndergroundPrecast: UtilityUndergroundPrecastV1 | None = None
|
202
|
+
CivilPrecast: CivilPrecastV1 | None = None
|
@@ -1,5 +1,5 @@
|
|
1
1
|
openepd/__init__.py,sha256=rqQJWF5jpYAgRbbAycUfWMGsr5kGtfjmwzsTeqbElJw,837
|
2
|
-
openepd/__version__.py,sha256
|
2
|
+
openepd/__version__.py,sha256=-Ng8pcaeBzfupdGm3pQHDa3op6P6Hhxrg-1GsHC6NRQ,855
|
3
3
|
openepd/api/__init__.py,sha256=rqQJWF5jpYAgRbbAycUfWMGsr5kGtfjmwzsTeqbElJw,837
|
4
4
|
openepd/api/base_sync_client.py,sha256=JcNpWsGoIK_1Eg27CAQd7nIjbcfD56jQ1nS6B48Q0cI,21142
|
5
5
|
openepd/api/category/__init__.py,sha256=rqQJWF5jpYAgRbbAycUfWMGsr5kGtfjmwzsTeqbElJw,837
|
@@ -73,7 +73,7 @@ openepd/model/specs/generated/openings.py,sha256=QVPbHP3yMHBPFrAo_fk6CYcJ3OltlMI
|
|
73
73
|
openepd/model/specs/generated/other_electrical_equipment.py,sha256=E-SkM07IfdZ_CHMcDsDF5PQpnsimTodMBFRS2yt_GAo,1031
|
74
74
|
openepd/model/specs/generated/other_materials.py,sha256=ACMMvECjnkQka4HGm6A9tSWTjkROml7kOog7SwtcrQw,3715
|
75
75
|
openepd/model/specs/generated/plumbing.py,sha256=DHgRLbNWO7se97YfY8y6Zol4acjokFJeb-gNGC1Ufmk,4795
|
76
|
-
openepd/model/specs/generated/precast_concrete.py,sha256=
|
76
|
+
openepd/model/specs/generated/precast_concrete.py,sha256=W6eNlkvVslTs6TG3RzQlrJXlpnFS_9hsw-i8n6QxwUU,7544
|
77
77
|
openepd/model/specs/generated/sheathing.py,sha256=bB3nzuLKHNO1S0yAFNIVjncVAwbDT2pVfkfcyJojtqI,3853
|
78
78
|
openepd/model/specs/generated/steel.py,sha256=rDrAxzqbb0LsvVPUS1-mXhoTu-SmgleXBRx0kh_J5Tw,10118
|
79
79
|
openepd/model/specs/generated/thermal_moisture_protection.py,sha256=tX_fuj4fNoaxox6pZQRhiIygJzmtM6_atdpktSYnxyE,8422
|
@@ -87,7 +87,7 @@ openepd/model/validation/numbers.py,sha256=4gkMS35zKnGyfdFyLTgHncNmKpg8-WOYX9qaU
|
|
87
87
|
openepd/model/validation/quantity.py,sha256=1RR482ARLOMLiprXbKrw0VhVv_Eye9JGKud4j_pVatM,7402
|
88
88
|
openepd/model/versioning.py,sha256=1gqeeAhc2lVonq9ErOD3Ws7XZ0CgZnmlFpKHKrc9IwI,4690
|
89
89
|
openepd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
|
-
openepd-3.
|
91
|
-
openepd-3.
|
92
|
-
openepd-3.
|
93
|
-
openepd-3.
|
90
|
+
openepd-3.3.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
91
|
+
openepd-3.3.0.dist-info/METADATA,sha256=7TSRRw-SeFOp8ro-YhlZx04GZeqTLrhFuc9PqqhWQ_4,7790
|
92
|
+
openepd-3.3.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
93
|
+
openepd-3.3.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|