openepd 6.10.0__py3-none-any.whl → 6.11.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/range/furnishings.py +100 -2
- openepd/model/specs/range/steel.py +18 -6
- openepd/model/specs/singular/furnishings.py +78 -2
- {openepd-6.10.0.dist-info → openepd-6.11.0.dist-info}/METADATA +1 -1
- {openepd-6.10.0.dist-info → openepd-6.11.0.dist-info}/RECORD +8 -8
- {openepd-6.10.0.dist-info → openepd-6.11.0.dist-info}/LICENSE +0 -0
- {openepd-6.10.0.dist-info → openepd-6.11.0.dist-info}/WHEEL +0 -0
openepd/__version__.py
CHANGED
@@ -19,9 +19,16 @@ __all__ = (
|
|
19
19
|
"CountertopsRangeV1",
|
20
20
|
"DemountablePartitionsRangeV1",
|
21
21
|
"OtherFurnishingsRangeV1",
|
22
|
+
"OpenStorageRangeV1",
|
23
|
+
"ClosedStorageRangeV1",
|
24
|
+
"RetractableStorageRangeV1",
|
25
|
+
"MobileStorageRangeV1",
|
26
|
+
"WallMountedShelvingRangeV1",
|
27
|
+
"OtherStorageFurnitureRangeV1",
|
22
28
|
"StorageFurnitureRangeV1",
|
23
29
|
"TablesRangeV1",
|
24
30
|
"WorkSurfacesRangeV1",
|
31
|
+
"WorkspacesRangeV1",
|
25
32
|
"FurnishingsRangeV1",
|
26
33
|
)
|
27
34
|
|
@@ -89,6 +96,76 @@ class OtherFurnishingsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
89
96
|
_EXT_VERSION = "1.0"
|
90
97
|
|
91
98
|
|
99
|
+
class OpenStorageRangeV1(BaseOpenEpdHierarchicalSpec):
|
100
|
+
"""
|
101
|
+
Open Storage.
|
102
|
+
|
103
|
+
Open Storage furniture which is static and has no moving parts.
|
104
|
+
|
105
|
+
Range version.
|
106
|
+
"""
|
107
|
+
|
108
|
+
_EXT_VERSION = "1.0"
|
109
|
+
|
110
|
+
|
111
|
+
class ClosedStorageRangeV1(BaseOpenEpdHierarchicalSpec):
|
112
|
+
"""
|
113
|
+
Closed Storage.
|
114
|
+
|
115
|
+
Closed storage furniture making use of doors, sliding and/or hinged parts.
|
116
|
+
|
117
|
+
Range version.
|
118
|
+
"""
|
119
|
+
|
120
|
+
_EXT_VERSION = "1.0"
|
121
|
+
|
122
|
+
|
123
|
+
class RetractableStorageRangeV1(BaseOpenEpdHierarchicalSpec):
|
124
|
+
"""
|
125
|
+
Retractable Storage.
|
126
|
+
|
127
|
+
Storage Furniture with retractable (drawer) elements.
|
128
|
+
|
129
|
+
Range version.
|
130
|
+
"""
|
131
|
+
|
132
|
+
_EXT_VERSION = "1.0"
|
133
|
+
|
134
|
+
|
135
|
+
class MobileStorageRangeV1(BaseOpenEpdHierarchicalSpec):
|
136
|
+
"""
|
137
|
+
Mobile Storage.
|
138
|
+
|
139
|
+
Mobile storage furniture having wheels or casters for movement.
|
140
|
+
|
141
|
+
Range version.
|
142
|
+
"""
|
143
|
+
|
144
|
+
_EXT_VERSION = "1.0"
|
145
|
+
|
146
|
+
|
147
|
+
class WallMountedShelvingRangeV1(BaseOpenEpdHierarchicalSpec):
|
148
|
+
"""
|
149
|
+
Wall Mounted Shelving.
|
150
|
+
|
151
|
+
Storage furniture which requires usage of a vertical structure for attachment and functional support.
|
152
|
+
|
153
|
+
Range version.
|
154
|
+
"""
|
155
|
+
|
156
|
+
_EXT_VERSION = "1.0"
|
157
|
+
|
158
|
+
|
159
|
+
class OtherStorageFurnitureRangeV1(BaseOpenEpdHierarchicalSpec):
|
160
|
+
"""
|
161
|
+
Other Storage Furniture.
|
162
|
+
|
163
|
+
Range version.
|
164
|
+
"""
|
165
|
+
|
166
|
+
_EXT_VERSION = "1.0"
|
167
|
+
|
168
|
+
|
92
169
|
class StorageFurnitureRangeV1(BaseOpenEpdHierarchicalSpec):
|
93
170
|
"""
|
94
171
|
Storage Furniture.
|
@@ -96,7 +173,14 @@ class StorageFurnitureRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
96
173
|
Range version.
|
97
174
|
"""
|
98
175
|
|
99
|
-
_EXT_VERSION = "1.
|
176
|
+
_EXT_VERSION = "1.1"
|
177
|
+
|
178
|
+
OpenStorage: OpenStorageRangeV1 | None = None
|
179
|
+
ClosedStorage: ClosedStorageRangeV1 | None = None
|
180
|
+
RetractableStorage: RetractableStorageRangeV1 | None = None
|
181
|
+
MobileStorage: MobileStorageRangeV1 | None = None
|
182
|
+
WallMountedShelving: WallMountedShelvingRangeV1 | None = None
|
183
|
+
OtherStorageFurniture: OtherStorageFurnitureRangeV1 | None = None
|
100
184
|
|
101
185
|
|
102
186
|
class TablesRangeV1(BaseOpenEpdHierarchicalSpec):
|
@@ -119,6 +203,19 @@ class WorkSurfacesRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
119
203
|
_EXT_VERSION = "1.0"
|
120
204
|
|
121
205
|
|
206
|
+
class WorkspacesRangeV1(BaseOpenEpdHierarchicalSpec):
|
207
|
+
"""
|
208
|
+
Workspaces.
|
209
|
+
|
210
|
+
Office furniture and furniture systems for performing office work, such as cubicle systems.
|
211
|
+
Typically includes component(s) that may fit in other categories.
|
212
|
+
|
213
|
+
Range version.
|
214
|
+
"""
|
215
|
+
|
216
|
+
_EXT_VERSION = "1.0"
|
217
|
+
|
218
|
+
|
122
219
|
class FurnishingsRangeV1(BaseOpenEpdHierarchicalSpec):
|
123
220
|
"""
|
124
221
|
Home and office furnishings.
|
@@ -126,7 +223,7 @@ class FurnishingsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
126
223
|
Range version.
|
127
224
|
"""
|
128
225
|
|
129
|
-
_EXT_VERSION = "1.
|
226
|
+
_EXT_VERSION = "1.1"
|
130
227
|
|
131
228
|
Chairs: ChairsRangeV1 | None = None
|
132
229
|
Countertops: CountertopsRangeV1 | None = None
|
@@ -135,3 +232,4 @@ class FurnishingsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
135
232
|
StorageFurniture: StorageFurnitureRangeV1 | None = None
|
136
233
|
Tables: TablesRangeV1 | None = None
|
137
234
|
WorkSurfaces: WorkSurfacesRangeV1 | None = None
|
235
|
+
Workspaces: WorkspacesRangeV1 | None = None
|
@@ -227,10 +227,12 @@ class StructuralSteelRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
227
227
|
_EXT_VERSION = "1.0"
|
228
228
|
|
229
229
|
modulus_of_elasticity: AmountRangePressureMpa | None = pyd.Field(
|
230
|
-
default=None,
|
230
|
+
default=None,
|
231
|
+
description="Modulus of Elasticity, https://en.wikipedia.org/wiki/Elastic_modulus ",
|
231
232
|
)
|
232
233
|
thermal_expansion: AmountRangeThermalExpansion | None = pyd.Field(
|
233
|
-
default=None,
|
234
|
+
default=None,
|
235
|
+
description="Thermal Expansion, https://en.wikipedia.org/wiki/Thermal_expansion",
|
234
236
|
)
|
235
237
|
thermal_conductivity: AmountRangeThermalConductivity | None = pyd.Field(
|
236
238
|
default=None,
|
@@ -280,7 +282,8 @@ class RebarSteelRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
280
282
|
diameter_min: AmountRangeLengthMm | None = pyd.Field(default=None, description="Minimal diameter")
|
281
283
|
bending_pin_max: RangeFloat | None = pyd.Field(default=None)
|
282
284
|
ts_ys_ratio_max: RangeFloat | None = pyd.Field(
|
283
|
-
default=None,
|
285
|
+
default=None,
|
286
|
+
description="Max ratio of ultimate tensile to yield tensile strength",
|
284
287
|
)
|
285
288
|
epoxy_coated: bool | None = pyd.Field(default=None)
|
286
289
|
|
@@ -297,6 +300,12 @@ class WireMeshSteelRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
297
300
|
fabricated: bool | None = None
|
298
301
|
|
299
302
|
|
303
|
+
class OtherSteelRangeV1(BaseOpenEpdHierarchicalSpec):
|
304
|
+
"""Steel products that do not fit into a defined subcategory."""
|
305
|
+
|
306
|
+
_EXT_VERSION = "1.0"
|
307
|
+
|
308
|
+
|
300
309
|
class SteelRangeV1(BaseOpenEpdHierarchicalSpec):
|
301
310
|
"""
|
302
311
|
Broad category for construction materials made from steel and its alloys.
|
@@ -304,18 +313,20 @@ class SteelRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
304
313
|
Range version.
|
305
314
|
"""
|
306
315
|
|
307
|
-
_EXT_VERSION = "1.
|
316
|
+
_EXT_VERSION = "1.1"
|
308
317
|
|
309
318
|
yield_tensile_str: AmountRangePressureMpa | None = pyd.Field(
|
310
319
|
default=None,
|
311
320
|
description="Yield Tensile strength (Mpa) per unit area. Yield strength is the point at which a material begins to permanently deform or change shape due to applied stress.",
|
312
321
|
)
|
313
322
|
bar_elongation: RangeFloat | None = pyd.Field(
|
314
|
-
default=None,
|
323
|
+
default=None,
|
324
|
+
description="Increase in length at break, in percent. Typically 10%-20%",
|
315
325
|
)
|
316
326
|
recycled_content: RangeRatioFloat | None = pyd.Field(default=None, description="")
|
317
327
|
post_consumer_recycled_content: RangeRatioFloat | None = pyd.Field(
|
318
|
-
default=None,
|
328
|
+
default=None,
|
329
|
+
description="Should be a number between zero and the Recycled Content (steel_recycled_content)",
|
319
330
|
)
|
320
331
|
astm_marking: str | None = pyd.Field(default=None, description="The marking to be expected on the product.")
|
321
332
|
euro_marking: str | None = pyd.Field(default=None, description="The marking to be expected on the product.")
|
@@ -335,3 +346,4 @@ class SteelRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
335
346
|
PostTensioningSteel: PostTensioningSteelRangeV1 | None = None
|
336
347
|
RebarSteel: RebarSteelRangeV1 | None = None
|
337
348
|
WireMeshSteel: WireMeshSteelRangeV1 | None = None
|
349
|
+
OtherSteel: OtherSteelRangeV1 | None = None
|
@@ -56,10 +56,74 @@ class OtherFurnishingsV1(BaseOpenEpdHierarchicalSpec):
|
|
56
56
|
_EXT_VERSION = "1.0"
|
57
57
|
|
58
58
|
|
59
|
+
class OpenStorageV1(BaseOpenEpdHierarchicalSpec):
|
60
|
+
"""
|
61
|
+
Open Storage.
|
62
|
+
|
63
|
+
Open Storage furniture which is static and has no moving parts.
|
64
|
+
"""
|
65
|
+
|
66
|
+
_EXT_VERSION = "1.0"
|
67
|
+
|
68
|
+
|
69
|
+
class ClosedStorageV1(BaseOpenEpdHierarchicalSpec):
|
70
|
+
"""
|
71
|
+
Closed Storage.
|
72
|
+
|
73
|
+
Closed storage furniture making use of doors, sliding and/or hinged parts.
|
74
|
+
"""
|
75
|
+
|
76
|
+
_EXT_VERSION = "1.0"
|
77
|
+
|
78
|
+
|
79
|
+
class RetractableStorageV1(BaseOpenEpdHierarchicalSpec):
|
80
|
+
"""
|
81
|
+
Retractable Storage.
|
82
|
+
|
83
|
+
Storage Furniture with retractable (drawer) elements.
|
84
|
+
"""
|
85
|
+
|
86
|
+
_EXT_VERSION = "1.0"
|
87
|
+
|
88
|
+
|
89
|
+
class MobileStorageV1(BaseOpenEpdHierarchicalSpec):
|
90
|
+
"""
|
91
|
+
Mobile Storage.
|
92
|
+
|
93
|
+
Mobile storage furniture having wheels or casters for movement.
|
94
|
+
"""
|
95
|
+
|
96
|
+
_EXT_VERSION = "1.0"
|
97
|
+
|
98
|
+
|
99
|
+
class WallMountedShelvingV1(BaseOpenEpdHierarchicalSpec):
|
100
|
+
"""
|
101
|
+
Wall Mounted Shelving.
|
102
|
+
|
103
|
+
Storage furniture which requires usage of a vertical structure for attachment and functional support.
|
104
|
+
"""
|
105
|
+
|
106
|
+
_EXT_VERSION = "1.0"
|
107
|
+
|
108
|
+
|
109
|
+
class OtherStorageFurnitureV1(BaseOpenEpdHierarchicalSpec):
|
110
|
+
"""Other Storage Furniture."""
|
111
|
+
|
112
|
+
_EXT_VERSION = "1.0"
|
113
|
+
|
114
|
+
|
59
115
|
class StorageFurnitureV1(BaseOpenEpdHierarchicalSpec):
|
60
116
|
"""Storage Furniture."""
|
61
117
|
|
62
|
-
_EXT_VERSION = "1.
|
118
|
+
_EXT_VERSION = "1.1"
|
119
|
+
|
120
|
+
# Nested specs:
|
121
|
+
OpenStorage: OpenStorageV1 | None = None
|
122
|
+
ClosedStorage: ClosedStorageV1 | None = None
|
123
|
+
RetractableStorage: RetractableStorageV1 | None = None
|
124
|
+
MobileStorage: MobileStorageV1 | None = None
|
125
|
+
WallMountedShelving: WallMountedShelvingV1 | None = None
|
126
|
+
OtherStorageFurniture: OtherStorageFurnitureV1 | None = None
|
63
127
|
|
64
128
|
|
65
129
|
class TablesV1(BaseOpenEpdHierarchicalSpec):
|
@@ -74,10 +138,21 @@ class WorkSurfacesV1(BaseOpenEpdHierarchicalSpec):
|
|
74
138
|
_EXT_VERSION = "1.0"
|
75
139
|
|
76
140
|
|
141
|
+
class WorkspacesV1(BaseOpenEpdHierarchicalSpec):
|
142
|
+
"""
|
143
|
+
Workspaces.
|
144
|
+
|
145
|
+
Office furniture and furniture systems for performing office work, such as cubicle systems.
|
146
|
+
Typically includes component(s) that may fit in other categories.
|
147
|
+
"""
|
148
|
+
|
149
|
+
_EXT_VERSION = "1.0"
|
150
|
+
|
151
|
+
|
77
152
|
class FurnishingsV1(BaseOpenEpdHierarchicalSpec):
|
78
153
|
"""Home and office furnishings."""
|
79
154
|
|
80
|
-
_EXT_VERSION = "1.
|
155
|
+
_EXT_VERSION = "1.1"
|
81
156
|
|
82
157
|
# Nested specs:
|
83
158
|
Chairs: ChairsV1 | None = None
|
@@ -87,3 +162,4 @@ class FurnishingsV1(BaseOpenEpdHierarchicalSpec):
|
|
87
162
|
StorageFurniture: StorageFurnitureV1 | None = None
|
88
163
|
Tables: TablesV1 | None = None
|
89
164
|
WorkSurfaces: WorkSurfacesV1 | None = None
|
165
|
+
Workspaces: WorkspacesV1 | None = None
|
@@ -1,5 +1,5 @@
|
|
1
1
|
openepd/__init__.py,sha256=fhxfEyEurLvSfvQci-vb3njzl_lvhcLXiZrecCOaMU8,794
|
2
|
-
openepd/__version__.py,sha256=
|
2
|
+
openepd/__version__.py,sha256=EPnMDQ_1rPMeYJWPTBt_9ZD7s2EpB9owv1Sr_H_gWQo,639
|
3
3
|
openepd/api/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
4
4
|
openepd/api/average_dataset/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
5
5
|
openepd/api/average_dataset/generic_estimate_sync_api.py,sha256=KHCmSKMOJTQct6vhdhAatAENoouStc_yVRza5AFNoIo,7953
|
@@ -67,7 +67,7 @@ openepd/model/specs/range/electrical_transmission_and_distribution_equipment.py,
|
|
67
67
|
openepd/model/specs/range/electricity.py,sha256=yn_S25C_tZqseb8hiJ1yiHszu2mQ49FOFWWCqNpOBY0,997
|
68
68
|
openepd/model/specs/range/finishes.py,sha256=oCaPVYJja1KYxwEzTHCl7HtxQ2mokzeyahjyP33zHSg,21291
|
69
69
|
openepd/model/specs/range/fire_and_smoke_protection.py,sha256=u5veICQznf-woYlh49S_IbvPA23CLWEy7Ngvic2FIpw,3337
|
70
|
-
openepd/model/specs/range/furnishings.py,sha256=
|
70
|
+
openepd/model/specs/range/furnishings.py,sha256=NpgJLs-wlsiR1hO5PRAY_0qIkfNqvBXJ50cqrZ4VJ-Y,5418
|
71
71
|
openepd/model/specs/range/grouting.py,sha256=BQPxH6BvlXpdhLEZBui9zTuY93K_9syjoa6rdnF8GGY,1095
|
72
72
|
openepd/model/specs/range/manufacturing_inputs.py,sha256=xzgkNz7yG8cp715hxS0LtJX9nfJ5RQR8GxlD2bAduwE,5574
|
73
73
|
openepd/model/specs/range/masonry.py,sha256=IyjQMb8Mx3tpJlHIIam0OrMkFsJXKvc0WXRLRBupozY,2867
|
@@ -81,7 +81,7 @@ openepd/model/specs/range/other_materials.py,sha256=k7Gv6YvWy43B-QFBabBt-TkvkC45
|
|
81
81
|
openepd/model/specs/range/plumbing.py,sha256=RYfP6ail7cYrwBluxmbAkC9icbxXaxdrdnf4Vqhy9ho,5342
|
82
82
|
openepd/model/specs/range/precast_concrete.py,sha256=hXnljuc6djoScmx50ZWkmVjnihCTjiZV755aaKCs6uA,3763
|
83
83
|
openepd/model/specs/range/sheathing.py,sha256=tATL6dzKTdN0rUKZRzZd779dLhKdEavL5Bjybnt2MjU,3395
|
84
|
-
openepd/model/specs/range/steel.py,sha256=
|
84
|
+
openepd/model/specs/range/steel.py,sha256=tPRtWSqhVjmbbWVFoFpS7rQKDsaYn9D_6afBOYhqPug,10417
|
85
85
|
openepd/model/specs/range/thermal_moisture_protection.py,sha256=WOyUzR_t39mpekg1vOrU9e529DyR1EPM0h3QAP46kdc,9409
|
86
86
|
openepd/model/specs/range/utility_piping.py,sha256=mQTrKbMTES_0Yta9DBnKehsmA2BAN_zYF_uPZCTKLPo,2665
|
87
87
|
openepd/model/specs/range/wood.py,sha256=1ZAkUwcFF9etc7CZ1_BSvjchpnqnngfZihYZMtuLdeM,6946
|
@@ -106,7 +106,7 @@ openepd/model/specs/singular/electrical_transmission_and_distribution_equipment.
|
|
106
106
|
openepd/model/specs/singular/electricity.py,sha256=f1cJ9eklNUf97khCIZiT5-z8V_TbOcvH2me_1UTQVrE,823
|
107
107
|
openepd/model/specs/singular/finishes.py,sha256=bAlNZiUP-HwePaJyC1D4j2fpv0xnMp3V5mhtAs9iaxQ,22571
|
108
108
|
openepd/model/specs/singular/fire_and_smoke_protection.py,sha256=1uyEGdMAsboYORHvSFN1wftRVAps_UJ1Ep3Dk9arT3s,3058
|
109
|
-
openepd/model/specs/singular/furnishings.py,sha256=
|
109
|
+
openepd/model/specs/singular/furnishings.py,sha256=68FKfEAmB4qS--diCUbwynm8a0gUzDXnpJlWrP9y9Ng,4345
|
110
110
|
openepd/model/specs/singular/grouting.py,sha256=pg2tX3W7a2TQ3z_eyFYGlBJY3WEwn6JlZyqM3PQIJcU,934
|
111
111
|
openepd/model/specs/singular/manufacturing_inputs.py,sha256=9WSDOVN0mUqvFXqWf82lkpHi-XRQSMcEpe9bweegwhU,5093
|
112
112
|
openepd/model/specs/singular/masonry.py,sha256=f6nph-gscAmVeJ60bG-ebto5kz0fgh0LY27n0VutGFA,3165
|
@@ -136,7 +136,7 @@ openepd/model/validation/quantity.py,sha256=vfSe-3DGQf84bCp_sMIU0ZPAA1wIilodpTjL
|
|
136
136
|
openepd/model/versioning.py,sha256=cm3LaAUODnbbu3W3pC6baJzxKusTQ1kZH-PwwScCj3c,4473
|
137
137
|
openepd/patch_pydantic.py,sha256=LVqDMKn723VYYf_V-RgTLxIb1xiUtYOfPYCQP6-7RoM,4122
|
138
138
|
openepd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
139
|
-
openepd-6.
|
140
|
-
openepd-6.
|
141
|
-
openepd-6.
|
142
|
-
openepd-6.
|
139
|
+
openepd-6.11.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
140
|
+
openepd-6.11.0.dist-info/METADATA,sha256=FrHaoiG4BQIWO58OwMECaiNBXqyB0Js062qRuDz_owE,9039
|
141
|
+
openepd-6.11.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
142
|
+
openepd-6.11.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|