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
@@ -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
|
|
@@ -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."""
|
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."""
|
40
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
|
@@ -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
|
|