openepd 3.1.4__py3-none-any.whl → 3.2.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 +4 -4
- 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.2.0.dist-info}/METADATA +1 -1
- {openepd-3.1.4.dist-info → openepd-3.2.0.dist-info}/RECORD +37 -36
- {openepd-3.1.4.dist-info → openepd-3.2.0.dist-info}/LICENSE +0 -0
- {openepd-3.1.4.dist-info → openepd-3.2.0.dist-info}/WHEEL +0 -0
@@ -35,7 +35,7 @@ from openepd.model.validation.quantity import ElectricalCurrentStr, LengthMmStr,
|
|
35
35
|
|
36
36
|
|
37
37
|
class PDUV1(BaseOpenEpdHierarchicalSpec):
|
38
|
-
"""
|
38
|
+
"""Devices with multiple outputs designed to distribute power, often in a data center cabinet."""
|
39
39
|
|
40
40
|
_EXT_VERSION = "1.0"
|
41
41
|
|
@@ -50,7 +50,7 @@ class PDUV1(BaseOpenEpdHierarchicalSpec):
|
|
50
50
|
|
51
51
|
|
52
52
|
class CabinetsRacksAndEnclosuresV1(BaseOpenEpdHierarchicalSpec):
|
53
|
-
"""
|
53
|
+
"""Physical support upon which network equipment is mounted. Includes cabinets, racks, frames, and enclosures."""
|
54
54
|
|
55
55
|
_EXT_VERSION = "1.0"
|
56
56
|
|
@@ -61,7 +61,7 @@ class CabinetsRacksAndEnclosuresV1(BaseOpenEpdHierarchicalSpec):
|
|
61
61
|
|
62
62
|
|
63
63
|
class DataCablingV1(BaseOpenEpdHierarchicalSpec):
|
64
|
-
"""
|
64
|
+
"""Telecommunications cabling for buildings."""
|
65
65
|
|
66
66
|
_EXT_VERSION = "1.0"
|
67
67
|
|
@@ -94,7 +94,11 @@ class DataCablingV1(BaseOpenEpdHierarchicalSpec):
|
|
94
94
|
|
95
95
|
|
96
96
|
class FloorBoxesAndAccessoriesV1(BaseOpenEpdHierarchicalSpec):
|
97
|
-
"""
|
97
|
+
"""
|
98
|
+
Electrical boxes that are installed in the floor.
|
99
|
+
|
100
|
+
Used to provide power and/or data connections to devices in a room or space.
|
101
|
+
"""
|
98
102
|
|
99
103
|
_EXT_VERSION = "1.0"
|
100
104
|
|
@@ -125,7 +129,12 @@ class FloorBoxesAndAccessoriesV1(BaseOpenEpdHierarchicalSpec):
|
|
125
129
|
|
126
130
|
|
127
131
|
class NetworkingCableTraysV1(BaseOpenEpdHierarchicalSpec):
|
128
|
-
"""
|
132
|
+
"""
|
133
|
+
Cable trays.
|
134
|
+
|
135
|
+
Mechanical support systems that provide a rigid structural system for cables used for communication and
|
136
|
+
power distribution.
|
137
|
+
"""
|
129
138
|
|
130
139
|
_EXT_VERSION = "1.0"
|
131
140
|
|
@@ -141,7 +150,11 @@ class NetworkingCableTraysV1(BaseOpenEpdHierarchicalSpec):
|
|
141
150
|
|
142
151
|
|
143
152
|
class NetworkingRacewaysV1(BaseOpenEpdHierarchicalSpec):
|
144
|
-
"""
|
153
|
+
"""
|
154
|
+
Surface-mounted systems along the perimeter of walls to route, conceal, and protect cables.
|
155
|
+
|
156
|
+
Often called trunking.
|
157
|
+
"""
|
145
158
|
|
146
159
|
_EXT_VERSION = "1.0"
|
147
160
|
|
@@ -158,7 +171,7 @@ class NetworkingRacewaysV1(BaseOpenEpdHierarchicalSpec):
|
|
158
171
|
|
159
172
|
|
160
173
|
class NetworkInfrastructureV1(BaseOpenEpdHierarchicalSpec):
|
161
|
-
"""
|
174
|
+
"""General category for network infrastructure products for data centers and commercial and residential buildings."""
|
162
175
|
|
163
176
|
_EXT_VERSION = "1.0"
|
164
177
|
|
@@ -21,6 +21,6 @@ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
21
21
|
|
22
22
|
|
23
23
|
class OtherElectricalEquipmentV1(BaseOpenEpdHierarchicalSpec):
|
24
|
-
"""Other
|
24
|
+
"""Other Electrical Equipment."""
|
25
25
|
|
26
26
|
_EXT_VERSION = "1.0"
|
@@ -27,25 +27,25 @@ class AuxiliariesV1(BaseOpenEpdHierarchicalSpec):
|
|
27
27
|
|
28
28
|
|
29
29
|
class CleaningProductsV1(BaseOpenEpdHierarchicalSpec):
|
30
|
-
"""Cleaning
|
30
|
+
"""Cleaning and disinfecting solutions."""
|
31
31
|
|
32
32
|
_EXT_VERSION = "1.0"
|
33
33
|
|
34
34
|
|
35
35
|
class ClothingV1(BaseOpenEpdHierarchicalSpec):
|
36
|
-
"""Clothing
|
36
|
+
"""Clothing."""
|
37
37
|
|
38
38
|
_EXT_VERSION = "1.0"
|
39
39
|
|
40
40
|
|
41
41
|
class FoodBeverageV1(BaseOpenEpdHierarchicalSpec):
|
42
|
-
"""Food
|
42
|
+
"""Food Beverage and Tobacco Products."""
|
43
43
|
|
44
44
|
_EXT_VERSION = "1.0"
|
45
45
|
|
46
46
|
|
47
47
|
class TransportationInfrastructureV1(BaseOpenEpdHierarchicalSpec):
|
48
|
-
"""
|
48
|
+
"""A broad category for unclassified materials focused on transportation infrastructure."""
|
49
49
|
|
50
50
|
_EXT_VERSION = "1.0"
|
51
51
|
|
@@ -54,7 +54,11 @@ class TransportationInfrastructureV1(BaseOpenEpdHierarchicalSpec):
|
|
54
54
|
|
55
55
|
|
56
56
|
class UnsupportedV1(BaseOpenEpdHierarchicalSpec):
|
57
|
-
"""
|
57
|
+
"""
|
58
|
+
A generic category for EPDs/Materials and categories that are explicitly not yet supported by EC3.
|
59
|
+
|
60
|
+
Assume that any data in this subcategory is unreliable.
|
61
|
+
"""
|
58
62
|
|
59
63
|
_EXT_VERSION = "1.0"
|
60
64
|
|
@@ -65,19 +69,19 @@ class UnsupportedV1(BaseOpenEpdHierarchicalSpec):
|
|
65
69
|
|
66
70
|
|
67
71
|
class CopperV1(BaseOpenEpdHierarchicalSpec):
|
68
|
-
"""
|
72
|
+
"""Products made of copper."""
|
69
73
|
|
70
74
|
_EXT_VERSION = "1.0"
|
71
75
|
|
72
76
|
|
73
77
|
class EarthworkV1(BaseOpenEpdHierarchicalSpec):
|
74
|
-
"""Earthwork
|
78
|
+
"""Earthwork, including excavation, shoring, piles, etc."""
|
75
79
|
|
76
80
|
_EXT_VERSION = "1.0"
|
77
81
|
|
78
82
|
|
79
83
|
class ExteriorSunControlDevicesV1(BaseOpenEpdHierarchicalSpec):
|
80
|
-
"""
|
84
|
+
"""Sun control devices help to manage solar heat gain by redirecting sunlight."""
|
81
85
|
|
82
86
|
_EXT_VERSION = "1.0"
|
83
87
|
|
@@ -89,25 +93,25 @@ class GypsumFinishingCompoundsV1(BaseOpenEpdHierarchicalSpec):
|
|
89
93
|
|
90
94
|
|
91
95
|
class ProfilesV1(BaseOpenEpdHierarchicalSpec):
|
92
|
-
"""
|
96
|
+
"""Metal or polymer profiles used for producing or installing of Windows, Doors, Frames and Cladding."""
|
93
97
|
|
94
98
|
_EXT_VERSION = "1.0"
|
95
99
|
|
96
100
|
|
97
101
|
class UnknownV1(BaseOpenEpdHierarchicalSpec):
|
98
|
-
"""
|
102
|
+
"""Materials with unknown category. Assume that any data in this subcategory is unreliable."""
|
99
103
|
|
100
104
|
_EXT_VERSION = "1.0"
|
101
105
|
|
102
106
|
|
103
107
|
class ZincV1(BaseOpenEpdHierarchicalSpec):
|
104
|
-
"""
|
108
|
+
"""Products made of zinc."""
|
105
109
|
|
106
110
|
_EXT_VERSION = "1.0"
|
107
111
|
|
108
112
|
|
109
113
|
class OtherMaterialsV1(BaseOpenEpdHierarchicalSpec):
|
110
|
-
"""
|
114
|
+
"""Broad category of materials not yet classified."""
|
111
115
|
|
112
116
|
_EXT_VERSION = "1.0"
|
113
117
|
|
@@ -24,31 +24,31 @@ from openepd.model.validation.quantity import LengthMmStr, MassPerLengthStr
|
|
24
24
|
|
25
25
|
|
26
26
|
class BathtubsV1(BaseOpenEpdHierarchicalSpec):
|
27
|
-
"""Bathtubs
|
27
|
+
"""Bathtubs."""
|
28
28
|
|
29
29
|
_EXT_VERSION = "1.0"
|
30
30
|
|
31
31
|
|
32
32
|
class FaucetsV1(BaseOpenEpdHierarchicalSpec):
|
33
|
-
"""Faucets
|
33
|
+
"""Faucets."""
|
34
34
|
|
35
35
|
_EXT_VERSION = "1.0"
|
36
36
|
|
37
37
|
|
38
38
|
class OtherPlumbingFixturesV1(BaseOpenEpdHierarchicalSpec):
|
39
|
-
"""Other plumbing fixtures
|
39
|
+
"""Other plumbing fixtures."""
|
40
40
|
|
41
41
|
_EXT_VERSION = "1.0"
|
42
42
|
|
43
43
|
|
44
44
|
class WaterClosetsV1(BaseOpenEpdHierarchicalSpec):
|
45
|
-
"""Water
|
45
|
+
"""Water Closets."""
|
46
46
|
|
47
47
|
_EXT_VERSION = "1.0"
|
48
48
|
|
49
49
|
|
50
50
|
class FireProtectionPipingV1(BaseOpenEpdHierarchicalSpec):
|
51
|
-
"""
|
51
|
+
"""System of pipes used to supply fire-suppression fluids to homes and/or businesses."""
|
52
52
|
|
53
53
|
_EXT_VERSION = "1.0"
|
54
54
|
|
@@ -63,25 +63,25 @@ class FireProtectionPipingV1(BaseOpenEpdHierarchicalSpec):
|
|
63
63
|
|
64
64
|
|
65
65
|
class FireSprinklersV1(BaseOpenEpdHierarchicalSpec):
|
66
|
-
"""Fire sprinklers
|
66
|
+
"""Fire sprinklers."""
|
67
67
|
|
68
68
|
_EXT_VERSION = "1.0"
|
69
69
|
|
70
70
|
|
71
71
|
class StorageTanksV1(BaseOpenEpdHierarchicalSpec):
|
72
|
-
"""Storage tanks
|
72
|
+
"""Storage tanks."""
|
73
73
|
|
74
74
|
_EXT_VERSION = "1.0"
|
75
75
|
|
76
76
|
|
77
77
|
class WaterHeatersV1(BaseOpenEpdHierarchicalSpec):
|
78
|
-
"""Water heaters
|
78
|
+
"""Water heaters."""
|
79
79
|
|
80
80
|
_EXT_VERSION = "1.0"
|
81
81
|
|
82
82
|
|
83
83
|
class PlumbingFixturesV1(BaseOpenEpdHierarchicalSpec):
|
84
|
-
"""
|
84
|
+
"""Residential and commercial water closets, urinals, lavatories, sinks, bathtubs, showers, faucets, etc."""
|
85
85
|
|
86
86
|
_EXT_VERSION = "1.0"
|
87
87
|
|
@@ -93,7 +93,7 @@ class PlumbingFixturesV1(BaseOpenEpdHierarchicalSpec):
|
|
93
93
|
|
94
94
|
|
95
95
|
class FireSuppressionV1(BaseOpenEpdHierarchicalSpec):
|
96
|
-
"""
|
96
|
+
"""Systems used to extinguish, control, or prevent fires."""
|
97
97
|
|
98
98
|
_EXT_VERSION = "1.0"
|
99
99
|
|
@@ -103,7 +103,12 @@ class FireSuppressionV1(BaseOpenEpdHierarchicalSpec):
|
|
103
103
|
|
104
104
|
|
105
105
|
class PipingV1(BaseOpenEpdHierarchicalSpec):
|
106
|
-
"""
|
106
|
+
"""
|
107
|
+
Piping.
|
108
|
+
|
109
|
+
System of pipes used to provide water and fuel, remove wastewater, allow venting of gases, or supply
|
110
|
+
fire-suppression fluids to homes, businesses, or other facilities.
|
111
|
+
"""
|
107
112
|
|
108
113
|
_EXT_VERSION = "1.0"
|
109
114
|
|
@@ -116,7 +121,7 @@ class PipingV1(BaseOpenEpdHierarchicalSpec):
|
|
116
121
|
|
117
122
|
|
118
123
|
class PlumbingEquipmentV1(BaseOpenEpdHierarchicalSpec):
|
119
|
-
"""
|
124
|
+
"""Water softeners, filtration equipment, water heaters, and other plumbing equipment."""
|
120
125
|
|
121
126
|
_EXT_VERSION = "1.0"
|
122
127
|
|
@@ -126,7 +131,7 @@ class PlumbingEquipmentV1(BaseOpenEpdHierarchicalSpec):
|
|
126
131
|
|
127
132
|
|
128
133
|
class PlumbingV1(BaseOpenEpdHierarchicalSpec):
|
129
|
-
"""
|
134
|
+
"""Residential and commercial plumbing equipment and fixtures."""
|
130
135
|
|
131
136
|
_EXT_VERSION = "1.0"
|
132
137
|
|
@@ -24,25 +24,25 @@ from openepd.model.validation.quantity import PressureMPaStr
|
|
24
24
|
|
25
25
|
|
26
26
|
class ArchitecturalPrecastV1(BaseOpenEpdHierarchicalSpec):
|
27
|
-
"""
|
27
|
+
"""Precast concrete cladding used for architectural purposes."""
|
28
28
|
|
29
29
|
_EXT_VERSION = "1.0"
|
30
30
|
|
31
31
|
|
32
32
|
class StructuralPrecastV1(BaseOpenEpdHierarchicalSpec):
|
33
|
-
"""
|
33
|
+
"""Precast concrete used for structural purposes."""
|
34
34
|
|
35
35
|
_EXT_VERSION = "1.0"
|
36
36
|
|
37
37
|
|
38
38
|
class UtilityUndergroundPrecastV1(BaseOpenEpdHierarchicalSpec):
|
39
|
-
"""
|
39
|
+
"""Precast concrete for utility vaults, manhole, drain inlets. Excludes piping."""
|
40
40
|
|
41
41
|
_EXT_VERSION = "1.0"
|
42
42
|
|
43
43
|
|
44
44
|
class PrecastConcreteV1(BaseOpenEpdHierarchicalSpec):
|
45
|
-
"""
|
45
|
+
"""General category for precast concrete components."""
|
46
46
|
|
47
47
|
_EXT_VERSION = "1.0"
|
48
48
|
|
@@ -24,7 +24,12 @@ from openepd.model.validation.quantity import LengthMmStr, validate_unit_factory
|
|
24
24
|
|
25
25
|
|
26
26
|
class CementitiousSheathingBoardV1(BaseOpenEpdHierarchicalSpec):
|
27
|
-
"""
|
27
|
+
"""
|
28
|
+
Cementitious sheathing board.
|
29
|
+
|
30
|
+
Cementitious non-gypsum board used for sheathing exteriors, shaft walls, and interior walls/ceilings requiring
|
31
|
+
moisture resistance.
|
32
|
+
"""
|
28
33
|
|
29
34
|
_EXT_VERSION = "1.0"
|
30
35
|
|
@@ -37,9 +42,13 @@ class CementitiousSheathingBoardV1(BaseOpenEpdHierarchicalSpec):
|
|
37
42
|
|
38
43
|
|
39
44
|
class GypsumSheathingBoardV1(BaseOpenEpdHierarchicalSpec):
|
40
|
-
"""
|
45
|
+
"""
|
46
|
+
Cementitious sheathing board.
|
41
47
|
|
42
|
-
|
48
|
+
Gypsum board used for sheathing exteriors, shaft walls, and interior walls/ceilings requiring moisture resistance.
|
49
|
+
"""
|
50
|
+
|
51
|
+
_EXT_VERSION = "1.1"
|
43
52
|
|
44
53
|
# Own fields:
|
45
54
|
fire_rating: GypsumFireRating | None = pyd.Field(default=None, description="", example="-")
|
@@ -65,7 +74,11 @@ class GypsumSheathingBoardV1(BaseOpenEpdHierarchicalSpec):
|
|
65
74
|
|
66
75
|
|
67
76
|
class SheathingV1(BaseOpenEpdHierarchicalSpec):
|
68
|
-
"""
|
77
|
+
"""
|
78
|
+
Sheathing.
|
79
|
+
|
80
|
+
Boards or panels used in floor, wall and roof assemblies as a surface onto which other materials can be applied.
|
81
|
+
"""
|
69
82
|
|
70
83
|
_EXT_VERSION = "1.0"
|
71
84
|
|
@@ -32,19 +32,27 @@ from openepd.model.validation.quantity import LengthMmStr, PressureMPaStr
|
|
32
32
|
|
33
33
|
|
34
34
|
class BituminousRoofingV1(BaseOpenEpdHierarchicalSpec):
|
35
|
-
"""
|
35
|
+
"""
|
36
|
+
Bituminous roofing.
|
37
|
+
|
38
|
+
Premanufactured membrane roofing sheets consisting of asphalt, reinforcing layers, and in some cases a surfacing.
|
39
|
+
"""
|
36
40
|
|
37
41
|
_EXT_VERSION = "1.0"
|
38
42
|
|
39
43
|
|
40
44
|
class SinglePlyEPDMV1(BaseOpenEpdHierarchicalSpec):
|
41
|
-
"""
|
45
|
+
"""Ethylene propylene diene monomer (EPDM) rubber membrane."""
|
42
46
|
|
43
47
|
_EXT_VERSION = "1.0"
|
44
48
|
|
45
49
|
|
46
50
|
class SinglePlyKEEV1(BaseOpenEpdHierarchicalSpec):
|
47
|
-
"""
|
51
|
+
"""
|
52
|
+
Ketone Ethylene Ester (KEE) roof membranes.
|
53
|
+
|
54
|
+
Consist of PVC resin and KEE plasticizer, with KEE exceeding 50% of the polymer content by weight.
|
55
|
+
"""
|
48
56
|
|
49
57
|
_EXT_VERSION = "1.0"
|
50
58
|
|
@@ -56,37 +64,37 @@ class SinglePlyOtherV1(BaseOpenEpdHierarchicalSpec):
|
|
56
64
|
|
57
65
|
|
58
66
|
class SinglePlyPolyurethaneV1(BaseOpenEpdHierarchicalSpec):
|
59
|
-
"""
|
67
|
+
"""Polyurethane liquid for flat roof waterproofing."""
|
60
68
|
|
61
69
|
_EXT_VERSION = "1.0"
|
62
70
|
|
63
71
|
|
64
72
|
class SinglePlyPVCV1(BaseOpenEpdHierarchicalSpec):
|
65
|
-
"""
|
73
|
+
"""Polyvinyl chloride (PVC) thermoplastic membrane."""
|
66
74
|
|
67
75
|
_EXT_VERSION = "1.0"
|
68
76
|
|
69
77
|
|
70
78
|
class SinglePlyTPOV1(BaseOpenEpdHierarchicalSpec):
|
71
|
-
"""
|
79
|
+
"""Thermoplastic Polyolefin (TPO) membrane."""
|
72
80
|
|
73
81
|
_EXT_VERSION = "1.0"
|
74
82
|
|
75
83
|
|
76
84
|
class BlanketInsulationV1(BaseOpenEpdHierarchicalSpec):
|
77
|
-
"""
|
85
|
+
"""Non-rigid insulation batts, blankets, and rolls."""
|
78
86
|
|
79
87
|
_EXT_VERSION = "1.0"
|
80
88
|
|
81
89
|
|
82
90
|
class BlownInsulationV1(BaseOpenEpdHierarchicalSpec):
|
83
|
-
"""
|
91
|
+
"""Loose-fill insulation for blow-in or closed cavity applications."""
|
84
92
|
|
85
93
|
_EXT_VERSION = "1.0"
|
86
94
|
|
87
95
|
|
88
96
|
class BoardInsulationV1(BaseOpenEpdHierarchicalSpec):
|
89
|
-
"""
|
97
|
+
"""Rigid insulation products including rigid foams, wood fiberboard insulation, and rigid mineral wool boards."""
|
90
98
|
|
91
99
|
_EXT_VERSION = "1.0"
|
92
100
|
|
@@ -95,7 +103,7 @@ class BoardInsulationV1(BaseOpenEpdHierarchicalSpec):
|
|
95
103
|
|
96
104
|
|
97
105
|
class FoamedInPlaceV1(BaseOpenEpdHierarchicalSpec):
|
98
|
-
"""
|
106
|
+
"""Open and closed cell spray foam insulation."""
|
99
107
|
|
100
108
|
_EXT_VERSION = "1.0"
|
101
109
|
|
@@ -104,19 +112,28 @@ class FoamedInPlaceV1(BaseOpenEpdHierarchicalSpec):
|
|
104
112
|
|
105
113
|
|
106
114
|
class SprayedInsulationV1(BaseOpenEpdHierarchicalSpec):
|
107
|
-
"""
|
115
|
+
"""
|
116
|
+
Spray-on insulation, such as spray-on cellulose.
|
117
|
+
|
118
|
+
Foaming sprays are categorized separately under foamed-in-place.
|
119
|
+
"""
|
108
120
|
|
109
121
|
_EXT_VERSION = "1.0"
|
110
122
|
|
111
123
|
|
112
124
|
class AirBarriersV1(BaseOpenEpdHierarchicalSpec):
|
113
|
-
"""Air
|
125
|
+
"""Air Infiltration Barrier."""
|
114
126
|
|
115
127
|
_EXT_VERSION = "1.0"
|
116
128
|
|
117
129
|
|
118
130
|
class MembraneRoofingV1(BaseOpenEpdHierarchicalSpec):
|
119
|
-
"""
|
131
|
+
"""
|
132
|
+
Membrane roofing.
|
133
|
+
|
134
|
+
Built-up bituminous, modified bituminous, elastomeric, thermoplastic, fluid-applied, and hot-applied rubberized
|
135
|
+
asphalt membrane roofing.
|
136
|
+
"""
|
120
137
|
|
121
138
|
_EXT_VERSION = "1.0"
|
122
139
|
|
@@ -141,7 +158,7 @@ class MembraneRoofingV1(BaseOpenEpdHierarchicalSpec):
|
|
141
158
|
|
142
159
|
|
143
160
|
class InsulationV1(BaseOpenEpdHierarchicalSpec):
|
144
|
-
"""
|
161
|
+
"""Thermal insulation materials for use in construction."""
|
145
162
|
|
146
163
|
_EXT_VERSION = "1.0"
|
147
164
|
|
@@ -162,25 +179,34 @@ class InsulationV1(BaseOpenEpdHierarchicalSpec):
|
|
162
179
|
|
163
180
|
|
164
181
|
class DampproofingAndWaterproofingV1(BaseOpenEpdHierarchicalSpec):
|
165
|
-
"""
|
182
|
+
"""
|
183
|
+
Dampproofing and waterproofing.
|
184
|
+
|
185
|
+
Dampproofing, and built-up bituminous, sheet, fluid-applied, cementitious, reactive, and bentonite waterproofing.
|
186
|
+
"""
|
166
187
|
|
167
188
|
_EXT_VERSION = "1.0"
|
168
189
|
|
169
190
|
|
170
191
|
class FlashingAndSheetMetalV1(BaseOpenEpdHierarchicalSpec):
|
171
|
-
"""
|
192
|
+
"""Exposed sheet metal items, typically for drainage."""
|
172
193
|
|
173
194
|
_EXT_VERSION = "1.0"
|
174
195
|
|
175
196
|
|
176
197
|
class JointProtectionV1(BaseOpenEpdHierarchicalSpec):
|
177
|
-
"""
|
198
|
+
"""Preformed joint seals and sealants, expansion control joint cover assemblies."""
|
178
199
|
|
179
200
|
_EXT_VERSION = "1.0"
|
180
201
|
|
181
202
|
|
182
203
|
class RoofCoverBoardsV1(BaseOpenEpdHierarchicalSpec):
|
183
|
-
"""
|
204
|
+
"""
|
205
|
+
Boards installed between the insulation and membrane layers on a roof system.
|
206
|
+
|
207
|
+
It provides additional durability, fire protection, thermal, and vapor performance to a roof system, especially
|
208
|
+
in low-slope, high foot traffic applications.
|
209
|
+
"""
|
184
210
|
|
185
211
|
_EXT_VERSION = "1.0"
|
186
212
|
|
@@ -191,19 +217,24 @@ class RoofCoverBoardsV1(BaseOpenEpdHierarchicalSpec):
|
|
191
217
|
|
192
218
|
|
193
219
|
class SteepSlopeRoofingV1(BaseOpenEpdHierarchicalSpec):
|
194
|
-
"""
|
220
|
+
"""Roofing materials typically for slopes of 3:12 and greater."""
|
195
221
|
|
196
222
|
_EXT_VERSION = "1.0"
|
197
223
|
|
198
224
|
|
199
225
|
class WeatherBarriersV1(BaseOpenEpdHierarchicalSpec):
|
200
|
-
"""
|
226
|
+
"""Vapor retarders and sheet or membrane air barriers."""
|
201
227
|
|
202
228
|
_EXT_VERSION = "1.0"
|
203
229
|
|
204
230
|
|
205
231
|
class ThermalMoistureProtectionV1(BaseOpenEpdHierarchicalSpec):
|
206
|
-
"""
|
232
|
+
"""
|
233
|
+
Thermal moisture protection.
|
234
|
+
|
235
|
+
Broad category of materials whose function is to provide moisture and thermal protection between spaces (e.g.,
|
236
|
+
between the exterior and interior of a building).
|
237
|
+
"""
|
207
238
|
|
208
239
|
_EXT_VERSION = "1.0"
|
209
240
|
|
@@ -24,13 +24,18 @@ from openepd.model.validation.quantity import LengthMmStr, MassPerLengthStr
|
|
24
24
|
|
25
25
|
|
26
26
|
class BuildingHeatingPipingV1(BaseOpenEpdHierarchicalSpec):
|
27
|
-
"""
|
27
|
+
"""
|
28
|
+
Heating piping.
|
29
|
+
|
30
|
+
System of pipes used to supply heated fluids (liquids or steam) for purposes of controlling temperature inside a
|
31
|
+
home, business, or other building facility.
|
32
|
+
"""
|
28
33
|
|
29
34
|
_EXT_VERSION = "1.0"
|
30
35
|
|
31
36
|
|
32
37
|
class BuriedPipingV1(BaseOpenEpdHierarchicalSpec):
|
33
|
-
"""
|
38
|
+
"""System of pipes used to provide or transport fluids (liquids and gases) underground."""
|
34
39
|
|
35
40
|
_EXT_VERSION = "1.0"
|
36
41
|
|
@@ -41,7 +46,12 @@ class BuriedPipingV1(BaseOpenEpdHierarchicalSpec):
|
|
41
46
|
|
42
47
|
|
43
48
|
class UtilityPipingV1(BaseOpenEpdHierarchicalSpec):
|
44
|
-
"""
|
49
|
+
"""
|
50
|
+
Utility piping.
|
51
|
+
|
52
|
+
System of pipes used to convey fluids (liquids and gases) from one location to another. Piping can be metal,
|
53
|
+
plastic, concrete, fiberglass, or other materials.
|
54
|
+
"""
|
45
55
|
|
46
56
|
_EXT_VERSION = "1.0"
|
47
57
|
|