openepd 3.1.4__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/__init__.py +19 -0
- openepd/model/specs/generated/accessories.py +11 -6
- openepd/model/specs/generated/aluminium.py +8 -5
- openepd/model/specs/generated/asphalt.py +1 -1
- openepd/model/specs/generated/bulk_materials.py +1 -1
- openepd/model/specs/generated/cast_decks_and_underlayment.py +6 -1
- openepd/model/specs/generated/cladding.py +17 -13
- openepd/model/specs/generated/cmu.py +1 -1
- openepd/model/specs/generated/conveying_equipment.py +2 -2
- openepd/model/specs/generated/electrical.py +40 -27
- openepd/model/specs/generated/electrical_transmission_and_distribution_equipment.py +9 -5
- openepd/model/specs/generated/electricity.py +1 -1
- openepd/model/specs/generated/enums.py +2 -0
- openepd/model/specs/generated/finishes.py +47 -25
- openepd/model/specs/generated/fire_and_smoke_protection.py +27 -5
- openepd/model/specs/generated/furnishings.py +9 -9
- openepd/model/specs/generated/grouting.py +6 -1
- openepd/model/specs/generated/manufacturing_inputs.py +31 -7
- openepd/model/specs/generated/masonry.py +4 -4
- openepd/model/specs/generated/material_handling.py +10 -2
- openepd/model/specs/generated/mechanical.py +39 -14
- openepd/model/specs/generated/mechanical_insulation.py +5 -1
- openepd/model/specs/generated/network_infrastructure.py +20 -7
- openepd/model/specs/generated/other_electrical_equipment.py +1 -1
- openepd/model/specs/generated/other_materials.py +16 -12
- openepd/model/specs/generated/plumbing.py +18 -13
- openepd/model/specs/generated/precast_concrete.py +146 -8
- openepd/model/specs/generated/sheathing.py +17 -4
- openepd/model/specs/generated/thermal_moisture_protection.py +52 -21
- openepd/model/specs/generated/utility_piping.py +13 -3
- openepd/model/specs/generated/wood.py +35 -13
- openepd/model/specs/generated/wood_joists.py +6 -1
- {openepd-3.1.4.dist-info → openepd-3.3.0.dist-info}/METADATA +1 -1
- {openepd-3.1.4.dist-info → openepd-3.3.0.dist-info}/RECORD +37 -36
- {openepd-3.1.4.dist-info → openepd-3.3.0.dist-info}/LICENSE +0 -0
- {openepd-3.1.4.dist-info → openepd-3.3.0.dist-info}/WHEEL +0 -0
@@ -60,7 +60,12 @@ from openepd.model.validation.quantity import (
|
|
60
60
|
|
61
61
|
|
62
62
|
class AccessFlooringV1(BaseOpenEpdHierarchicalSpec):
|
63
|
-
"""
|
63
|
+
"""
|
64
|
+
Elevated floor system built on top of concrete slab surface.
|
65
|
+
|
66
|
+
It thereby creates a hidden void between the two floors that is used for the passage of mechanical and electrical
|
67
|
+
services. The system consists of panels, stringers, and pedestals.
|
68
|
+
"""
|
64
69
|
|
65
70
|
_EXT_VERSION = "1.0"
|
66
71
|
|
@@ -90,7 +95,7 @@ class AccessFlooringV1(BaseOpenEpdHierarchicalSpec):
|
|
90
95
|
|
91
96
|
|
92
97
|
class CarpetV1(BaseOpenEpdHierarchicalSpec):
|
93
|
-
"""
|
98
|
+
"""Textile Floor Coverings."""
|
94
99
|
|
95
100
|
_EXT_VERSION = "1.0"
|
96
101
|
|
@@ -117,19 +122,23 @@ class CarpetV1(BaseOpenEpdHierarchicalSpec):
|
|
117
122
|
|
118
123
|
|
119
124
|
class LaminateV1(BaseOpenEpdHierarchicalSpec):
|
120
|
-
"""Laminate
|
125
|
+
"""Laminate flooring."""
|
121
126
|
|
122
127
|
_EXT_VERSION = "1.0"
|
123
128
|
|
124
129
|
|
125
130
|
class OtherFlooringV1(BaseOpenEpdHierarchicalSpec):
|
126
|
-
"""Other
|
131
|
+
"""Other not yet classified kinds of flooring."""
|
127
132
|
|
128
133
|
_EXT_VERSION = "1.0"
|
129
134
|
|
130
135
|
|
131
136
|
class ResilientFlooringV1(BaseOpenEpdHierarchicalSpec):
|
132
|
-
"""
|
137
|
+
"""
|
138
|
+
Resilient floor products.
|
139
|
+
|
140
|
+
Includes vinyl, rubber, linoleum, composition cork, etc. in modular square or rectangle shapes.
|
141
|
+
"""
|
133
142
|
|
134
143
|
_EXT_VERSION = "1.0"
|
135
144
|
|
@@ -150,7 +159,7 @@ class ResilientFlooringV1(BaseOpenEpdHierarchicalSpec):
|
|
150
159
|
|
151
160
|
|
152
161
|
class WallBaseV1(BaseOpenEpdHierarchicalSpec):
|
153
|
-
"""Wall base
|
162
|
+
"""Wall base made to help cover gaps between wall and vinyl, rubber, wood, or tile flooring."""
|
154
163
|
|
155
164
|
_EXT_VERSION = "1.0"
|
156
165
|
|
@@ -159,7 +168,12 @@ class WallBaseV1(BaseOpenEpdHierarchicalSpec):
|
|
159
168
|
|
160
169
|
|
161
170
|
class WoodFlooringV1(BaseOpenEpdHierarchicalSpec, HasForestPracticesCertifiers):
|
162
|
-
"""
|
171
|
+
"""
|
172
|
+
Wood flooring for interior applications.
|
173
|
+
|
174
|
+
Includes hardwood strip and plank flooring, engineered hardwood flooring, wood parquet flooring, coordinated
|
175
|
+
transitions, and molding pieces.
|
176
|
+
"""
|
163
177
|
|
164
178
|
_EXT_VERSION = "1.0"
|
165
179
|
|
@@ -171,7 +185,7 @@ class WoodFlooringV1(BaseOpenEpdHierarchicalSpec, HasForestPracticesCertifiers):
|
|
171
185
|
|
172
186
|
|
173
187
|
class AcousticalCeilingsV1(BaseOpenEpdHierarchicalSpec):
|
174
|
-
"""Acoustical
|
188
|
+
"""Acoustical ceiling panels."""
|
175
189
|
|
176
190
|
_EXT_VERSION = "1.0"
|
177
191
|
|
@@ -180,7 +194,7 @@ class AcousticalCeilingsV1(BaseOpenEpdHierarchicalSpec):
|
|
180
194
|
|
181
195
|
|
182
196
|
class CeramicTileV1(BaseOpenEpdHierarchicalSpec):
|
183
|
-
"""Ceramic tile
|
197
|
+
"""Ceramic tiles, including porcelain, quarry, pressed floor tile, wall tile, mosaic tile, etc."""
|
184
198
|
|
185
199
|
_EXT_VERSION = "1.0"
|
186
200
|
|
@@ -219,7 +233,11 @@ class CeramicTileV1(BaseOpenEpdHierarchicalSpec):
|
|
219
233
|
|
220
234
|
|
221
235
|
class GaugedTileV1(BaseOpenEpdHierarchicalSpec):
|
222
|
-
"""
|
236
|
+
"""
|
237
|
+
Specially manufactured porcelain tile with extra-large panels/slabs.
|
238
|
+
|
239
|
+
Manufactured to a specific thickness ranging from 2-20 mm.
|
240
|
+
"""
|
223
241
|
|
224
242
|
_EXT_VERSION = "1.0"
|
225
243
|
|
@@ -241,7 +259,7 @@ class GaugedTileV1(BaseOpenEpdHierarchicalSpec):
|
|
241
259
|
|
242
260
|
|
243
261
|
class GlassTileV1(BaseOpenEpdHierarchicalSpec):
|
244
|
-
"""Glass
|
262
|
+
"""Glass Tiles."""
|
245
263
|
|
246
264
|
_EXT_VERSION = "1.0"
|
247
265
|
|
@@ -273,13 +291,13 @@ class GlassTileV1(BaseOpenEpdHierarchicalSpec):
|
|
273
291
|
|
274
292
|
|
275
293
|
class GypsumSupportsV1(BaseOpenEpdHierarchicalSpec):
|
276
|
-
"""
|
294
|
+
"""Supports for suspended and furred gypsum wall and ceiling assemblies."""
|
277
295
|
|
278
296
|
_EXT_VERSION = "1.0"
|
279
297
|
|
280
298
|
|
281
299
|
class FlooringV1(BaseOpenEpdHierarchicalSpec):
|
282
|
-
"""
|
300
|
+
"""General category - finishes for floors."""
|
283
301
|
|
284
302
|
_EXT_VERSION = "1.0"
|
285
303
|
|
@@ -294,7 +312,7 @@ class FlooringV1(BaseOpenEpdHierarchicalSpec):
|
|
294
312
|
|
295
313
|
|
296
314
|
class CeilingPanelV1(BaseOpenEpdHierarchicalSpec):
|
297
|
-
"""
|
315
|
+
"""Acoustical and other specialty ceiling panels."""
|
298
316
|
|
299
317
|
_EXT_VERSION = "1.0"
|
300
318
|
"""Modular Ceiling Panels"""
|
@@ -318,13 +336,13 @@ class CeilingPanelV1(BaseOpenEpdHierarchicalSpec):
|
|
318
336
|
|
319
337
|
|
320
338
|
class BackingAndUnderlayV1(BaseOpenEpdHierarchicalSpec):
|
321
|
-
"""
|
339
|
+
"""Cementitious, glass-mat faced gypsum, and fibered gypsum backing boards to support finish materials."""
|
322
340
|
|
323
341
|
_EXT_VERSION = "1.0"
|
324
342
|
|
325
343
|
|
326
344
|
class CementBoardV1(BaseOpenEpdHierarchicalSpec):
|
327
|
-
"""
|
345
|
+
"""Hard cementitious boards, typically used as a tile backer."""
|
328
346
|
|
329
347
|
_EXT_VERSION = "1.0"
|
330
348
|
|
@@ -339,7 +357,11 @@ class CementBoardV1(BaseOpenEpdHierarchicalSpec):
|
|
339
357
|
|
340
358
|
|
341
359
|
class TilingV1(BaseOpenEpdHierarchicalSpec):
|
342
|
-
"""
|
360
|
+
"""
|
361
|
+
Decorative building materials that includes a variety of ceramic, porcelain, and glass tiles.
|
362
|
+
|
363
|
+
Used for covering and enhancing surfaces such as floors, walls, and countertops.
|
364
|
+
"""
|
343
365
|
|
344
366
|
_EXT_VERSION = "1.0"
|
345
367
|
|
@@ -398,7 +420,7 @@ class TilingV1(BaseOpenEpdHierarchicalSpec):
|
|
398
420
|
|
399
421
|
|
400
422
|
class DeckingBoardsV1(BaseOpenEpdHierarchicalSpec, HasForestPracticesCertifiers):
|
401
|
-
"""Decking boards
|
423
|
+
"""Decking boards provide the finished surface of a deck and support the weight of people and furniture."""
|
402
424
|
|
403
425
|
_EXT_VERSION = "1.0"
|
404
426
|
|
@@ -413,15 +435,15 @@ class DeckingBoardsV1(BaseOpenEpdHierarchicalSpec, HasForestPracticesCertifiers)
|
|
413
435
|
|
414
436
|
|
415
437
|
class GlassFiberReinforcedGypsumFabricationsV1(BaseOpenEpdHierarchicalSpec):
|
416
|
-
"""
|
438
|
+
"""Gypsum with integrated glass fiber reinforcement, which may be fabricated in complex shapes or as a board."""
|
417
439
|
|
418
440
|
_EXT_VERSION = "1.0"
|
419
441
|
|
420
442
|
|
421
443
|
class GypsumV1(BaseOpenEpdHierarchicalSpec):
|
422
|
-
"""Gypsum
|
444
|
+
"""Gypsum board used for interior walls, ceilings, and similar applications."""
|
423
445
|
|
424
|
-
_EXT_VERSION = "1.
|
446
|
+
_EXT_VERSION = "1.1"
|
425
447
|
|
426
448
|
# Own fields:
|
427
449
|
fire_rating: GypsumFireRating | None = pyd.Field(default=None, description="", example="-")
|
@@ -446,19 +468,19 @@ class GypsumV1(BaseOpenEpdHierarchicalSpec):
|
|
446
468
|
|
447
469
|
|
448
470
|
class MirrorsV1(BaseOpenEpdHierarchicalSpec):
|
449
|
-
"""Mirrors
|
471
|
+
"""Mirrors."""
|
450
472
|
|
451
473
|
_EXT_VERSION = "1.0"
|
452
474
|
|
453
475
|
|
454
476
|
class PaintingAndCoatingV1(BaseOpenEpdHierarchicalSpec):
|
455
|
-
"""
|
477
|
+
"""Paintings and coatings."""
|
456
478
|
|
457
479
|
_EXT_VERSION = "1.0"
|
458
480
|
|
459
481
|
|
460
482
|
class WallFinishesV1(BaseOpenEpdHierarchicalSpec):
|
461
|
-
"""
|
483
|
+
"""Interior wall coverings including fabric, textile, wood, stone, and metal products."""
|
462
484
|
|
463
485
|
_EXT_VERSION = "1.0"
|
464
486
|
|
@@ -467,7 +489,7 @@ class WallFinishesV1(BaseOpenEpdHierarchicalSpec):
|
|
467
489
|
|
468
490
|
|
469
491
|
class FinishesV1(BaseOpenEpdHierarchicalSpec):
|
470
|
-
"""
|
492
|
+
"""General category - finishes for interior ceilings, floors, walls."""
|
471
493
|
|
472
494
|
_EXT_VERSION = "1.0"
|
473
495
|
|
@@ -28,7 +28,11 @@ from openepd.model.validation.quantity import LengthMmStr
|
|
28
28
|
|
29
29
|
|
30
30
|
class IntumescentFireproofingV1(BaseOpenEpdHierarchicalSpec):
|
31
|
-
"""
|
31
|
+
"""
|
32
|
+
Fireproofing material applied to structural materials, which swells as a result of heat exposure.
|
33
|
+
|
34
|
+
As a result it increases in volume and decreasing in density.
|
35
|
+
"""
|
32
36
|
|
33
37
|
_EXT_VERSION = "1.0"
|
34
38
|
|
@@ -37,7 +41,11 @@ class IntumescentFireproofingV1(BaseOpenEpdHierarchicalSpec):
|
|
37
41
|
|
38
42
|
|
39
43
|
class SprayFireproofingV1(BaseOpenEpdHierarchicalSpec):
|
40
|
-
"""
|
44
|
+
"""
|
45
|
+
Spray fireproofing.
|
46
|
+
|
47
|
+
A passive fire protection system that reduces the rate of temperature increase in concrete or steel during a fire.
|
48
|
+
"""
|
41
49
|
|
42
50
|
_EXT_VERSION = "1.0"
|
43
51
|
|
@@ -49,7 +57,12 @@ class SprayFireproofingV1(BaseOpenEpdHierarchicalSpec):
|
|
49
57
|
|
50
58
|
|
51
59
|
class AppliedFireproofingV1(BaseOpenEpdHierarchicalSpec):
|
52
|
-
"""
|
60
|
+
"""
|
61
|
+
Fireproofing material applied to structural materials.
|
62
|
+
|
63
|
+
Materials include: cement aggregate, cementitious, magnesium-oxychloride, intumescent, magnesium cement, mineral
|
64
|
+
fiber, and mineral fiber fireproofing products.
|
65
|
+
"""
|
53
66
|
|
54
67
|
_EXT_VERSION = "1.0"
|
55
68
|
|
@@ -62,13 +75,22 @@ class AppliedFireproofingV1(BaseOpenEpdHierarchicalSpec):
|
|
62
75
|
|
63
76
|
|
64
77
|
class FirestoppingV1(BaseOpenEpdHierarchicalSpec):
|
65
|
-
"""
|
78
|
+
"""
|
79
|
+
Seals and protects openings and joints in fire rate assemblies.
|
80
|
+
|
81
|
+
Typically sealants, sprays, and caulks.
|
82
|
+
"""
|
66
83
|
|
67
84
|
_EXT_VERSION = "1.0"
|
68
85
|
|
69
86
|
|
70
87
|
class FireAndSmokeProtectionV1(BaseOpenEpdHierarchicalSpec):
|
71
|
-
"""
|
88
|
+
"""
|
89
|
+
Fire and smoke protection.
|
90
|
+
|
91
|
+
General category of materials whose function is to provide protection of materials, spaces, and occupants from
|
92
|
+
fire and smoke damage.
|
93
|
+
"""
|
72
94
|
|
73
95
|
_EXT_VERSION = "1.0"
|
74
96
|
|
@@ -24,19 +24,19 @@ from openepd.model.validation.quantity import LengthMmStr
|
|
24
24
|
|
25
25
|
|
26
26
|
class DemountablePartitionTrackV1(BaseOpenEpdHierarchicalSpec):
|
27
|
-
"""
|
27
|
+
"""Track for modular partitions."""
|
28
28
|
|
29
29
|
_EXT_VERSION = "1.0"
|
30
30
|
|
31
31
|
|
32
32
|
class ChairsV1(BaseOpenEpdHierarchicalSpec):
|
33
|
-
"""Chairs
|
33
|
+
"""Chairs."""
|
34
34
|
|
35
35
|
_EXT_VERSION = "1.0"
|
36
36
|
|
37
37
|
|
38
38
|
class CountertopsV1(BaseOpenEpdHierarchicalSpec):
|
39
|
-
"""
|
39
|
+
"""Raised, flat, and horizontal surfaces often used in kitchens, bathrooms, and workrooms."""
|
40
40
|
|
41
41
|
_EXT_VERSION = "1.0"
|
42
42
|
|
@@ -46,7 +46,7 @@ class CountertopsV1(BaseOpenEpdHierarchicalSpec):
|
|
46
46
|
|
47
47
|
|
48
48
|
class DemountablePartitionsV1(BaseOpenEpdHierarchicalSpec):
|
49
|
-
"""Demountable partitions
|
49
|
+
"""Demountable partitions."""
|
50
50
|
|
51
51
|
_EXT_VERSION = "1.0"
|
52
52
|
|
@@ -55,31 +55,31 @@ class DemountablePartitionsV1(BaseOpenEpdHierarchicalSpec):
|
|
55
55
|
|
56
56
|
|
57
57
|
class OtherFurnishingsV1(BaseOpenEpdHierarchicalSpec):
|
58
|
-
"""Other furnishings
|
58
|
+
"""Other furnishings."""
|
59
59
|
|
60
60
|
_EXT_VERSION = "1.0"
|
61
61
|
|
62
62
|
|
63
63
|
class StorageFurnitureV1(BaseOpenEpdHierarchicalSpec):
|
64
|
-
"""Storage
|
64
|
+
"""Storage Furniture."""
|
65
65
|
|
66
66
|
_EXT_VERSION = "1.0"
|
67
67
|
|
68
68
|
|
69
69
|
class TablesV1(BaseOpenEpdHierarchicalSpec):
|
70
|
-
"""Tables
|
70
|
+
"""Tables."""
|
71
71
|
|
72
72
|
_EXT_VERSION = "1.0"
|
73
73
|
|
74
74
|
|
75
75
|
class WorkSurfacesV1(BaseOpenEpdHierarchicalSpec):
|
76
|
-
"""Work surfaces
|
76
|
+
"""Work surfaces."""
|
77
77
|
|
78
78
|
_EXT_VERSION = "1.0"
|
79
79
|
|
80
80
|
|
81
81
|
class FurnishingsV1(BaseOpenEpdHierarchicalSpec):
|
82
|
-
"""
|
82
|
+
"""Home and office furnishings."""
|
83
83
|
|
84
84
|
_EXT_VERSION = "1.0"
|
85
85
|
|
@@ -21,6 +21,11 @@ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
21
21
|
|
22
22
|
|
23
23
|
class GroutingV1(BaseOpenEpdHierarchicalSpec):
|
24
|
-
"""
|
24
|
+
"""
|
25
|
+
Grouting.
|
26
|
+
|
27
|
+
Water-cement-sand mixture for embedding rebar in masonry walls, connecting sections of precast concrete, and
|
28
|
+
filling joints and voids.
|
29
|
+
"""
|
25
30
|
|
26
31
|
_EXT_VERSION = "1.0"
|
@@ -34,7 +34,11 @@ from openepd.model.specs.generated.enums import (
|
|
34
34
|
|
35
35
|
|
36
36
|
class CementV1(BaseOpenEpdHierarchicalSpec):
|
37
|
-
"""
|
37
|
+
"""
|
38
|
+
Cements.
|
39
|
+
|
40
|
+
Includes Portland and blended cements, that can serve as the primary binder in a concrete mix.
|
41
|
+
"""
|
38
42
|
|
39
43
|
_EXT_VERSION = "1.0"
|
40
44
|
|
@@ -49,7 +53,11 @@ class CementV1(BaseOpenEpdHierarchicalSpec):
|
|
49
53
|
|
50
54
|
|
51
55
|
class MasonryCementV1(BaseOpenEpdHierarchicalSpec):
|
52
|
-
"""
|
56
|
+
"""
|
57
|
+
A cementitious product typically composed of Portland cement and hydrated lime.
|
58
|
+
|
59
|
+
Masonry cement is combined with sand to make mortar.
|
60
|
+
"""
|
53
61
|
|
54
62
|
_EXT_VERSION = "1.0"
|
55
63
|
|
@@ -58,7 +66,7 @@ class MasonryCementV1(BaseOpenEpdHierarchicalSpec):
|
|
58
66
|
|
59
67
|
|
60
68
|
class SupplementaryCementitiousMaterialsV1(BaseOpenEpdHierarchicalSpec):
|
61
|
-
"""
|
69
|
+
"""Cementitious materials that are not effective binders when used on their own."""
|
62
70
|
|
63
71
|
_EXT_VERSION = "1.0"
|
64
72
|
|
@@ -67,7 +75,12 @@ class SupplementaryCementitiousMaterialsV1(BaseOpenEpdHierarchicalSpec):
|
|
67
75
|
|
68
76
|
|
69
77
|
class AccessFlooringPedestalsV1(BaseOpenEpdHierarchicalSpec):
|
70
|
-
"""
|
78
|
+
"""
|
79
|
+
Part of an access floor system.
|
80
|
+
|
81
|
+
Pedestals are laid out on top of a floor slab and support access floor panels, creating a void space between the
|
82
|
+
floor slab and finish floor.
|
83
|
+
"""
|
71
84
|
|
72
85
|
_EXT_VERSION = "1.0"
|
73
86
|
|
@@ -100,7 +113,13 @@ class CementitiousMaterialsV1(BaseOpenEpdHierarchicalSpec):
|
|
100
113
|
|
101
114
|
|
102
115
|
class ConcreteAdmixturesV1(BaseOpenEpdHierarchicalSpec):
|
103
|
-
"""
|
116
|
+
"""
|
117
|
+
Concrete admixtures.
|
118
|
+
|
119
|
+
Chemical additives that are added to fresh concrete immediately before or during mixing. Admixtures have distinct
|
120
|
+
functions and are categorized as: air-entraining, water-reducing, retarding, accelerating, and plasticizers
|
121
|
+
(i.e., superplasticizers).
|
122
|
+
"""
|
104
123
|
|
105
124
|
_EXT_VERSION = "1.0"
|
106
125
|
|
@@ -109,7 +128,7 @@ class ConcreteAdmixturesV1(BaseOpenEpdHierarchicalSpec):
|
|
109
128
|
|
110
129
|
|
111
130
|
class TextilesV1(BaseOpenEpdHierarchicalSpec):
|
112
|
-
"""Textiles
|
131
|
+
"""Textiles for use in manufacturing end products."""
|
113
132
|
|
114
133
|
_EXT_VERSION = "1.0"
|
115
134
|
|
@@ -118,7 +137,12 @@ class TextilesV1(BaseOpenEpdHierarchicalSpec):
|
|
118
137
|
|
119
138
|
|
120
139
|
class ManufacturingInputsV1(BaseOpenEpdHierarchicalSpec):
|
121
|
-
"""
|
140
|
+
"""
|
141
|
+
Manufacturing inputs.
|
142
|
+
|
143
|
+
Broad category for collecting materials primarily used as manufacturing inputs, rather than directly used in
|
144
|
+
a construction.
|
145
|
+
"""
|
122
146
|
|
123
147
|
_EXT_VERSION = "1.0"
|
124
148
|
|
@@ -23,13 +23,13 @@ from openepd.model.validation.quantity import PressureMPaStr, validate_quantity_
|
|
23
23
|
|
24
24
|
|
25
25
|
class GMUV1(BaseOpenEpdHierarchicalSpec):
|
26
|
-
"""Glass
|
26
|
+
"""Glass masonry unit."""
|
27
27
|
|
28
28
|
_EXT_VERSION = "1.0"
|
29
29
|
|
30
30
|
|
31
31
|
class AutoclavedAeratedConcreteV1(BaseOpenEpdHierarchicalSpec):
|
32
|
-
"""
|
32
|
+
"""A lightweight, precast, foamed concrete masonry building material."""
|
33
33
|
|
34
34
|
_EXT_VERSION = "1.0"
|
35
35
|
|
@@ -48,7 +48,7 @@ class AutoclavedAeratedConcreteV1(BaseOpenEpdHierarchicalSpec):
|
|
48
48
|
|
49
49
|
|
50
50
|
class BrickV1(BaseOpenEpdHierarchicalSpec):
|
51
|
-
"""
|
51
|
+
"""Solid masonry units made from clay or shale."""
|
52
52
|
|
53
53
|
_EXT_VERSION = "1.0"
|
54
54
|
|
@@ -65,7 +65,7 @@ class BrickV1(BaseOpenEpdHierarchicalSpec):
|
|
65
65
|
|
66
66
|
|
67
67
|
class MasonryV1(BaseOpenEpdHierarchicalSpec):
|
68
|
-
"""
|
68
|
+
"""Structural and/or enclosure system based on individual rigid units stacked and bound together with mortar."""
|
69
69
|
|
70
70
|
_EXT_VERSION = "1.0"
|
71
71
|
|
@@ -21,13 +21,21 @@ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
21
21
|
|
22
22
|
|
23
23
|
class ConveyorsV1(BaseOpenEpdHierarchicalSpec):
|
24
|
-
"""
|
24
|
+
"""
|
25
|
+
Machinery and tools designed to move materials within a facility, both manually and automatically.
|
26
|
+
|
27
|
+
This includes various types of conveyors such as belt, roller, and overhead conveyors.
|
28
|
+
"""
|
25
29
|
|
26
30
|
_EXT_VERSION = "1.0"
|
27
31
|
|
28
32
|
|
29
33
|
class MaterialHandlingV1(BaseOpenEpdHierarchicalSpec):
|
30
|
-
"""
|
34
|
+
"""
|
35
|
+
Material handling.
|
36
|
+
|
37
|
+
Equipment and supplies for moving, storing, administering, and protecting materials during the handling process.
|
38
|
+
"""
|
31
39
|
|
32
40
|
_EXT_VERSION = "1.0"
|
33
41
|
|
@@ -35,13 +35,13 @@ from openepd.model.validation.quantity import AirflowStr, FlowRateStr, PowerStr,
|
|
35
35
|
|
36
36
|
|
37
37
|
class HvacVrfControlV1(BaseOpenEpdHierarchicalSpec):
|
38
|
-
"""
|
38
|
+
"""Controller for adjusting airflow across the VRF system."""
|
39
39
|
|
40
40
|
_EXT_VERSION = "1.0"
|
41
41
|
|
42
42
|
|
43
43
|
class HvacVrfIndoorV1(BaseOpenEpdHierarchicalSpec):
|
44
|
-
"""
|
44
|
+
"""Heating and cooling unit located on the inside of a building and supplies air to specific indoor zones."""
|
45
45
|
|
46
46
|
_EXT_VERSION = "1.0"
|
47
47
|
|
@@ -54,7 +54,7 @@ class HvacVrfIndoorV1(BaseOpenEpdHierarchicalSpec):
|
|
54
54
|
|
55
55
|
|
56
56
|
class HvacVrfOutdoorV1(BaseOpenEpdHierarchicalSpec):
|
57
|
-
"""
|
57
|
+
"""Heating and cooling unit that is on the outside of a building and distributes air to the indoor units."""
|
58
58
|
|
59
59
|
_EXT_VERSION = "1.0"
|
60
60
|
|
@@ -67,13 +67,13 @@ class HvacVrfOutdoorV1(BaseOpenEpdHierarchicalSpec):
|
|
67
67
|
|
68
68
|
|
69
69
|
class HvacAirDiffusersV1(BaseOpenEpdHierarchicalSpec):
|
70
|
-
"""
|
70
|
+
"""Room-side terminals for air distribution. This is different from Terminal Heating & Cooling Units."""
|
71
71
|
|
72
72
|
_EXT_VERSION = "1.0"
|
73
73
|
|
74
74
|
|
75
75
|
class HvacAirFiltersV1(BaseOpenEpdHierarchicalSpec):
|
76
|
-
"""
|
76
|
+
"""Device for filtering particles of dust, soot, etc., from the air passing through it."""
|
77
77
|
|
78
78
|
_EXT_VERSION = "1.0"
|
79
79
|
|
@@ -83,7 +83,12 @@ class HvacAirFiltersV1(BaseOpenEpdHierarchicalSpec):
|
|
83
83
|
|
84
84
|
|
85
85
|
class HvacAHUsV1(BaseOpenEpdHierarchicalSpec):
|
86
|
-
"""
|
86
|
+
"""
|
87
|
+
Device which provides healthy, dust free air to buildings with a good energy efficiency.
|
88
|
+
|
89
|
+
Usually a large metal box containing a blower, heating or cooling elements, filter racks or chambers, sound
|
90
|
+
attenuators, and dampers.
|
91
|
+
"""
|
87
92
|
|
88
93
|
_EXT_VERSION = "1.0"
|
89
94
|
|
@@ -99,7 +104,7 @@ class HvacAHUsV1(BaseOpenEpdHierarchicalSpec):
|
|
99
104
|
|
100
105
|
|
101
106
|
class HvacBoilersV1(BaseOpenEpdHierarchicalSpec):
|
102
|
-
"""
|
107
|
+
"""Closed vessel for heating fluid."""
|
103
108
|
|
104
109
|
_EXT_VERSION = "1.0"
|
105
110
|
|
@@ -111,7 +116,12 @@ class HvacBoilersV1(BaseOpenEpdHierarchicalSpec):
|
|
111
116
|
|
112
117
|
|
113
118
|
class HvacChillersV1(BaseOpenEpdHierarchicalSpec):
|
114
|
-
"""
|
119
|
+
"""
|
120
|
+
Machine that removes heat from a liquid coolant.
|
121
|
+
|
122
|
+
Uses a vapor-compression, adsorption refrigeration, or absorption refrigeration cycles. Incldues centrifugal,
|
123
|
+
water-cooled chillers, etc.
|
124
|
+
"""
|
115
125
|
|
116
126
|
_EXT_VERSION = "1.0"
|
117
127
|
|
@@ -125,13 +135,13 @@ class HvacChillersV1(BaseOpenEpdHierarchicalSpec):
|
|
125
135
|
|
126
136
|
|
127
137
|
class HvacFansV1(BaseOpenEpdHierarchicalSpec):
|
128
|
-
"""
|
138
|
+
"""Apparatus with rotating blades that creates a current of air for cooling or ventilation."""
|
129
139
|
|
130
140
|
_EXT_VERSION = "1.0"
|
131
141
|
|
132
142
|
|
133
143
|
class HvacHeatPumpsV1(BaseOpenEpdHierarchicalSpec):
|
134
|
-
"""
|
144
|
+
"""Device that transfers thermal energy between spaces, including ground and air source heat pumps."""
|
135
145
|
|
136
146
|
_EXT_VERSION = "1.0"
|
137
147
|
|
@@ -145,7 +155,12 @@ class HvacHeatPumpsV1(BaseOpenEpdHierarchicalSpec):
|
|
145
155
|
|
146
156
|
|
147
157
|
class HvacHeatExV1(BaseOpenEpdHierarchicalSpec):
|
148
|
-
"""
|
158
|
+
"""
|
159
|
+
HVAC heat exchangers.
|
160
|
+
|
161
|
+
Systems that with heat exchange cell which recovers and retains the heat that would otherwise be lost from the
|
162
|
+
extracted air.
|
163
|
+
"""
|
149
164
|
|
150
165
|
_EXT_VERSION = "1.0"
|
151
166
|
|
@@ -157,7 +172,12 @@ class HvacHeatExV1(BaseOpenEpdHierarchicalSpec):
|
|
157
172
|
|
158
173
|
|
159
174
|
class HvacPumpsV1(BaseOpenEpdHierarchicalSpec):
|
160
|
-
"""
|
175
|
+
"""
|
176
|
+
Pumps.
|
177
|
+
|
178
|
+
Mechanical device using suction or pressure to raise or move liquids, compress gases, or force air into
|
179
|
+
inflatable objects such as tires.
|
180
|
+
"""
|
161
181
|
|
162
182
|
_EXT_VERSION = "1.0"
|
163
183
|
|
@@ -168,13 +188,18 @@ class HvacPumpsV1(BaseOpenEpdHierarchicalSpec):
|
|
168
188
|
|
169
189
|
|
170
190
|
class HvacRTUsV1(BaseOpenEpdHierarchicalSpec):
|
171
|
-
"""
|
191
|
+
"""An air handler designed for outdoor use, typically on roofs."""
|
172
192
|
|
173
193
|
_EXT_VERSION = "1.0"
|
174
194
|
|
175
195
|
|
176
196
|
class HvacVrfSystemsV1(BaseOpenEpdHierarchicalSpec):
|
177
|
-
"""
|
197
|
+
"""
|
198
|
+
Variable refrigerant flow (VRF).
|
199
|
+
|
200
|
+
Also known as variable refrigerant volume (VRV), is an HVAC technology that allows for varying degrees of cooling
|
201
|
+
in more specific areas.
|
202
|
+
"""
|
178
203
|
|
179
204
|
_EXT_VERSION = "1.0"
|
180
205
|
|
@@ -24,7 +24,11 @@ from openepd.model.validation.quantity import LengthMmStr
|
|
24
24
|
|
25
25
|
|
26
26
|
class MechanicalInsulationV1(BaseOpenEpdHierarchicalSpec):
|
27
|
-
"""
|
27
|
+
"""
|
28
|
+
Insulation products whose primary purpose is for mechanical systems rather than for building envelope.
|
29
|
+
|
30
|
+
Includes HVAC, plumbing, and acoustic insulations.
|
31
|
+
"""
|
28
32
|
|
29
33
|
_EXT_VERSION = "1.0"
|
30
34
|
|