openepd 3.1.3__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.
Files changed (39) hide show
  1. openepd/__version__.py +1 -1
  2. openepd/model/specs/generated/__init__.py +19 -0
  3. openepd/model/specs/generated/accessories.py +11 -6
  4. openepd/model/specs/generated/aluminium.py +8 -5
  5. openepd/model/specs/generated/asphalt.py +1 -1
  6. openepd/model/specs/generated/bulk_materials.py +1 -1
  7. openepd/model/specs/generated/cast_decks_and_underlayment.py +6 -1
  8. openepd/model/specs/generated/cladding.py +17 -13
  9. openepd/model/specs/generated/cmu.py +1 -1
  10. openepd/model/specs/generated/conveying_equipment.py +2 -2
  11. openepd/model/specs/generated/electrical.py +40 -27
  12. openepd/model/specs/generated/electrical_transmission_and_distribution_equipment.py +9 -5
  13. openepd/model/specs/generated/electricity.py +1 -1
  14. openepd/model/specs/generated/enums.py +2 -0
  15. openepd/model/specs/generated/finishes.py +47 -25
  16. openepd/model/specs/generated/fire_and_smoke_protection.py +27 -5
  17. openepd/model/specs/generated/furnishings.py +9 -9
  18. openepd/model/specs/generated/grouting.py +6 -1
  19. openepd/model/specs/generated/manufacturing_inputs.py +31 -7
  20. openepd/model/specs/generated/masonry.py +4 -4
  21. openepd/model/specs/generated/material_handling.py +10 -2
  22. openepd/model/specs/generated/mechanical.py +39 -14
  23. openepd/model/specs/generated/mechanical_insulation.py +5 -1
  24. openepd/model/specs/generated/network_infrastructure.py +20 -7
  25. openepd/model/specs/generated/other_electrical_equipment.py +1 -1
  26. openepd/model/specs/generated/other_materials.py +16 -12
  27. openepd/model/specs/generated/plumbing.py +18 -13
  28. openepd/model/specs/generated/precast_concrete.py +4 -4
  29. openepd/model/specs/generated/sheathing.py +17 -4
  30. openepd/model/specs/generated/steel.py +1 -1
  31. openepd/model/specs/generated/thermal_moisture_protection.py +52 -21
  32. openepd/model/specs/generated/utility_piping.py +13 -3
  33. openepd/model/specs/generated/wood.py +35 -13
  34. openepd/model/specs/generated/wood_joists.py +6 -1
  35. openepd/model/validation/quantity.py +3 -3
  36. {openepd-3.1.3.dist-info → openepd-3.2.0.dist-info}/METADATA +1 -1
  37. {openepd-3.1.3.dist-info → openepd-3.2.0.dist-info}/RECORD +39 -38
  38. {openepd-3.1.3.dist-info → openepd-3.2.0.dist-info}/LICENSE +0 -0
  39. {openepd-3.1.3.dist-info → openepd-3.2.0.dist-info}/WHEEL +0 -0
openepd/__version__.py CHANGED
@@ -17,4 +17,4 @@
17
17
  # Charles Pankow Foundation, Microsoft Sustainability Fund, Interface, MKA Foundation, and others.
18
18
  # Find out more at www.BuildingTransparency.org
19
19
  #
20
- VERSION = "3.1.3"
20
+ VERSION = "3.2.0"
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright 2024 by C Change Labs Inc. www.c-change-labs.com
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+ # This software was developed with support from the Skanska USA,
17
+ # Charles Pankow Foundation, Microsoft Sustainability Fund, Interface, MKA Foundation, and others.
18
+ # Find out more at www.BuildingTransparency.org
19
+ #
@@ -21,37 +21,42 @@ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
21
21
 
22
22
 
23
23
  class BlanketFacingV1(BaseOpenEpdHierarchicalSpec):
24
- """Blanket facing performance specification."""
24
+ """
25
+ Facing materials for insulation products.
26
+
27
+ Such as kraft, white vinyl sheeting, or aluminum foil, which can serve as air barrier, vapor barrier, radiant
28
+ barrier, or flame resistive layer.
29
+ """
25
30
 
26
31
  _EXT_VERSION = "1.0"
27
32
 
28
33
 
29
34
  class DoorsHardwareV1(BaseOpenEpdHierarchicalSpec):
30
- """Doors hardware performance specification."""
35
+ """Door hardware, including automatic and security door hardware."""
31
36
 
32
37
  _EXT_VERSION = "1.0"
33
38
 
34
39
 
35
40
  class FlooringAccessoriesV1(BaseOpenEpdHierarchicalSpec):
36
- """Flooring accessories performance specification."""
41
+ """Products used in flooring, other than the actual flooring product itself."""
37
42
 
38
43
  _EXT_VERSION = "1.0"
39
44
 
40
45
 
41
46
  class MortarV1(BaseOpenEpdHierarchicalSpec):
42
- """Mortar performance specification."""
47
+ """Cementitious paste used to bind building blocks such as stones, bricks, and concrete masonry."""
43
48
 
44
49
  _EXT_VERSION = "1.0"
45
50
 
46
51
 
47
52
  class TileGroutV1(BaseOpenEpdHierarchicalSpec):
48
- """Tile grout performance specification."""
53
+ """Water-cement-sand mixture for laying ceramic tile."""
49
54
 
50
55
  _EXT_VERSION = "1.0"
51
56
 
52
57
 
53
58
  class AccessoriesV1(BaseOpenEpdHierarchicalSpec):
54
- """Accessories performance specification."""
59
+ """Materials that are used alongside other materials."""
55
60
 
56
61
  _EXT_VERSION = "1.0"
57
62
 
@@ -23,13 +23,16 @@ from openepd.model.specs.generated.enums import AluminiumAlloy
23
23
 
24
24
 
25
25
  class AluminiumBilletsV1(BaseOpenEpdHierarchicalSpec):
26
- """Aluminium billets performance specification."""
26
+ """Cast Aluminium ingots or billets for use in manufacturing more finished products."""
27
27
 
28
28
  _EXT_VERSION = "1.0"
29
29
 
30
30
 
31
31
  class AluminiumExtrusionsV1(BaseOpenEpdHierarchicalSpec):
32
- """Aluminium extrusions performance specification."""
32
+ """Extruded aluminum products used in construction.
33
+
34
+ Includes range of finish options including mill finish, painted, and anodized.
35
+ """
33
36
 
34
37
  _EXT_VERSION = "1.0"
35
38
 
@@ -38,19 +41,19 @@ class AluminiumExtrusionsV1(BaseOpenEpdHierarchicalSpec):
38
41
 
39
42
 
40
43
  class AluminiumSheetGoodsV1(BaseOpenEpdHierarchicalSpec):
41
- """Aluminium sheet goods performance specification."""
44
+ """Rolled and/or Stamped Aluminium coil or sheets, often used in flashing, trim, panels, and deck."""
42
45
 
43
46
  _EXT_VERSION = "1.0"
44
47
 
45
48
 
46
49
  class AluminiumSuspensionAssemblyV1(BaseOpenEpdHierarchicalSpec):
47
- """Aluminium suspension assembly performance specification."""
50
+ """Aluminum suspension assemblies for acoustical ceiling systems."""
48
51
 
49
52
  _EXT_VERSION = "1.0"
50
53
 
51
54
 
52
55
  class AluminiumV1(BaseOpenEpdHierarchicalSpec):
53
- """Material definition for objects made primarily from Aluminium and its alloys."""
56
+ """Broad category for construction materials made primarily from Aluminium and its alloys."""
54
57
 
55
58
  _EXT_VERSION = "1.0"
56
59
 
@@ -25,7 +25,7 @@ from openepd.model.validation.quantity import LengthMmStr, TemperatureCStr
25
25
 
26
26
 
27
27
  class AsphaltV1(BaseOpenEpdHierarchicalSpec):
28
- """Asphalt performance specification."""
28
+ """General category for asphalt mixtures."""
29
29
 
30
30
  _EXT_VERSION = "1.0"
31
31
 
@@ -21,6 +21,6 @@ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
21
21
 
22
22
 
23
23
  class BulkMaterialsV1(BaseOpenEpdHierarchicalSpec):
24
- """Bulk materials performance specification."""
24
+ """A generic category for materials whose declared unit is mass and which are not in another category."""
25
25
 
26
26
  _EXT_VERSION = "1.0"
@@ -21,6 +21,11 @@ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
21
21
 
22
22
 
23
23
  class CastDecksAndUnderlaymentV1(BaseOpenEpdHierarchicalSpec):
24
- """Cast decks and underlayment performance specification."""
24
+ """
25
+ Cast roof deck substrate systems.
26
+
27
+ Typically made of gyspum concrete or cementitious wood fiber, that provide structural support to
28
+ roofing materials.
29
+ """
25
30
 
26
31
  _EXT_VERSION = "1.0"
@@ -24,31 +24,31 @@ from openepd.model.validation.quantity import LengthMmStr, LengthMStr, RValueStr
24
24
 
25
25
 
26
26
  class AluminiumSidingV1(BaseOpenEpdHierarchicalSpec):
27
- """Aluminium siding performance specification."""
27
+ """Exterior siding product made primarily from aluminium."""
28
28
 
29
29
  _EXT_VERSION = "1.0"
30
30
 
31
31
 
32
32
  class SteelSidingV1(BaseOpenEpdHierarchicalSpec):
33
- """Steel siding performance specification."""
33
+ """Exterior siding product made primarily from steel."""
34
34
 
35
35
  _EXT_VERSION = "1.0"
36
36
 
37
37
 
38
38
  class ZincSidingV1(BaseOpenEpdHierarchicalSpec):
39
- """Zinc siding performance specification."""
39
+ """Exterior siding product made primarily from zinc."""
40
40
 
41
41
  _EXT_VERSION = "1.0"
42
42
 
43
43
 
44
44
  class ShingleAndShakeSidingV1(BaseOpenEpdHierarchicalSpec):
45
- """Shingle and shake siding performance specification."""
45
+ """Shingle & shake siding."""
46
46
 
47
47
  _EXT_VERSION = "1.0"
48
48
 
49
49
 
50
50
  class MetalSidingV1(BaseOpenEpdHierarchicalSpec):
51
- """Metal siding performance specification."""
51
+ """Exterior siding product made of metal such as steel, aluminum, etc."""
52
52
 
53
53
  _EXT_VERSION = "1.0"
54
54
 
@@ -59,19 +59,19 @@ class MetalSidingV1(BaseOpenEpdHierarchicalSpec):
59
59
 
60
60
 
61
61
  class CompositionSidingV1(BaseOpenEpdHierarchicalSpec):
62
- """Composition siding performance specification."""
62
+ """Composite wood siding composed of wood wafers and resin."""
63
63
 
64
64
  _EXT_VERSION = "1.0"
65
65
 
66
66
 
67
67
  class FiberCementSidingV1(BaseOpenEpdHierarchicalSpec):
68
- """Fiber cement siding performance specification."""
68
+ """Composite siding product made of cement and cellulose fibers."""
69
69
 
70
70
  _EXT_VERSION = "1.0"
71
71
 
72
72
 
73
73
  class InsulatedVinylSidingV1(BaseOpenEpdHierarchicalSpec):
74
- """Insulated vinyl siding performance specification."""
74
+ """Vinyl cladding product integrated with manufacturer-installed insulation."""
75
75
 
76
76
  _EXT_VERSION = "1.0"
77
77
 
@@ -84,19 +84,19 @@ class InsulatedVinylSidingV1(BaseOpenEpdHierarchicalSpec):
84
84
 
85
85
 
86
86
  class PlywoodSidingV1(BaseOpenEpdHierarchicalSpec):
87
- """Plywood siding performance specification."""
87
+ """Siding made of plywood boards."""
88
88
 
89
89
  _EXT_VERSION = "1.0"
90
90
 
91
91
 
92
92
  class PolypropyleneSidingV1(BaseOpenEpdHierarchicalSpec):
93
- """Polypropylene siding performance specification."""
93
+ """Exterior wall cladding made from polypropylene, which may contain fillers or reinforcements."""
94
94
 
95
95
  _EXT_VERSION = "1.0"
96
96
 
97
97
 
98
98
  class SolidWoodSidingV1(BaseOpenEpdHierarchicalSpec):
99
- """Solid wood siding performance specification."""
99
+ """Siding products made of wood including shingle & shake siding."""
100
100
 
101
101
  _EXT_VERSION = "1.0"
102
102
 
@@ -105,7 +105,7 @@ class SolidWoodSidingV1(BaseOpenEpdHierarchicalSpec):
105
105
 
106
106
 
107
107
  class VinylSidingV1(BaseOpenEpdHierarchicalSpec):
108
- """Vinyl siding performance specification."""
108
+ """Exterior wall cladding made principally from rigid polyvinyl chloride (PVC)."""
109
109
 
110
110
  _EXT_VERSION = "1.0"
111
111
 
@@ -118,7 +118,11 @@ class VinylSidingV1(BaseOpenEpdHierarchicalSpec):
118
118
 
119
119
 
120
120
  class SidingV1(BaseOpenEpdHierarchicalSpec):
121
- """Siding performance specification."""
121
+ """
122
+ Long narrow products for exterior wall face of building.
123
+
124
+ Typically made of, e.g., metal, solid wood, plywood, plastic, composition, fiber cement, etc.
125
+ """
122
126
 
123
127
  _EXT_VERSION = "1.0"
124
128
 
@@ -24,7 +24,7 @@ from openepd.model.validation.quantity import GwpKgCo2eStr, PressureMPaStr
24
24
 
25
25
 
26
26
  class CMUV1(BaseOpenEpdHierarchicalSpec):
27
- """CMU performance specification."""
27
+ """Pre-manufactured concrete masonry blocks."""
28
28
 
29
29
  _EXT_VERSION = "1.0"
30
30
 
@@ -24,7 +24,7 @@ from openepd.model.validation.quantity import LengthMStr, MassKgStr, SpeedStr
24
24
 
25
25
 
26
26
  class ElevatorsV1(BaseOpenEpdHierarchicalSpec):
27
- """Elevators performance specification."""
27
+ """Car that moves in a vertical shaft to carry passengers or freight between the levels of a multistory building."""
28
28
 
29
29
  _EXT_VERSION = "1.0"
30
30
 
@@ -39,7 +39,7 @@ class ElevatorsV1(BaseOpenEpdHierarchicalSpec):
39
39
 
40
40
 
41
41
  class ConveyingEquipmentV1(BaseOpenEpdHierarchicalSpec):
42
- """Conveying equipment performance specification."""
42
+ """Conveying Equipment."""
43
43
 
44
44
  _EXT_VERSION = "1.0"
45
45
 
@@ -34,19 +34,19 @@ from openepd.model.validation.quantity import (
34
34
 
35
35
 
36
36
  class LowVoltBusesV1(BaseOpenEpdHierarchicalSpec):
37
- """Low volt buses performance specification."""
37
+ """Busbars and Busways of 600V or less."""
38
38
 
39
39
  _EXT_VERSION = "1.0"
40
40
 
41
41
 
42
42
  class MedVoltBusesV1(BaseOpenEpdHierarchicalSpec):
43
- """Med volt buses performance specification."""
43
+ """Busbars and Busways over 600V."""
44
44
 
45
45
  _EXT_VERSION = "1.0"
46
46
 
47
47
 
48
48
  class BatteriesV1(BaseOpenEpdHierarchicalSpec):
49
- """Batteries performance specification."""
49
+ """Battery equipment, including central batteries, battery charging, and UPS."""
50
50
 
51
51
  _EXT_VERSION = "1.0"
52
52
 
@@ -58,7 +58,7 @@ class OtherElectricalPowerStorageV1(BaseOpenEpdHierarchicalSpec):
58
58
 
59
59
 
60
60
  class CableTraysV1(BaseOpenEpdHierarchicalSpec):
61
- """Cable trays performance specification."""
61
+ """Mechanical support for electrial or communications cabling, typically suspended from a roof or wall."""
62
62
 
63
63
  _EXT_VERSION = "1.0"
64
64
 
@@ -74,7 +74,12 @@ class CableTraysV1(BaseOpenEpdHierarchicalSpec):
74
74
 
75
75
 
76
76
  class ElectricalBusesV1(BaseOpenEpdHierarchicalSpec):
77
- """Electrical buses performance specification."""
77
+ """
78
+ Power distribution, in the form of busbars or of insulted ducts made of copper or aluminum busbars.
79
+
80
+ It is an alternative means of conducting electricity compared toto power cables or cable bus. Also called
81
+ bus ducts.
82
+ """
78
83
 
79
84
  _EXT_VERSION = "1.0"
80
85
 
@@ -84,19 +89,19 @@ class ElectricalBusesV1(BaseOpenEpdHierarchicalSpec):
84
89
 
85
90
 
86
91
  class FloorEquipmentBoxesV1(BaseOpenEpdHierarchicalSpec):
87
- """Floor equipment boxes performance specification."""
92
+ """Equipment boxes for power or electronic equipment embedded in an accessible floor."""
88
93
 
89
94
  _EXT_VERSION = "1.0"
90
95
 
91
96
 
92
97
  class PowerDistributionUnitsV1(BaseOpenEpdHierarchicalSpec):
93
- """Power distribution units performance specification."""
98
+ """Switched electrical distribution units placed very close to the point of consumption, for example inside a rack of electronic equipment."""
94
99
 
95
100
  _EXT_VERSION = "1.0"
96
101
 
97
102
 
98
103
  class RacewaysV1(BaseOpenEpdHierarchicalSpec):
99
- """Raceways performance specification."""
104
+ """Mechanical guideways for eletrical communications cabling, typically embedded in an accessible floor."""
100
105
 
101
106
  _EXT_VERSION = "1.0"
102
107
 
@@ -109,37 +114,37 @@ class RacewaysV1(BaseOpenEpdHierarchicalSpec):
109
114
 
110
115
 
111
116
  class FueledElectricalGeneratorsV1(BaseOpenEpdHierarchicalSpec):
112
- """Fueled electrical generators performance specification."""
117
+ """Fueled electrical generators."""
113
118
 
114
119
  _EXT_VERSION = "1.0"
115
120
 
116
121
 
117
122
  class OtherGenerationV1(BaseOpenEpdHierarchicalSpec):
118
- """Other generation performance specification."""
123
+ """Other generation."""
119
124
 
120
125
  _EXT_VERSION = "1.0"
121
126
 
122
127
 
123
128
  class PhotovoltaicsV1(BaseOpenEpdHierarchicalSpec):
124
- """Photovoltaics performance specification."""
129
+ """Solar photovoltaics, rated on a nameplate capacity basis."""
125
130
 
126
131
  _EXT_VERSION = "1.0"
127
132
 
128
133
 
129
134
  class WindTurbinesV1(BaseOpenEpdHierarchicalSpec):
130
- """Wind turbines performance specification."""
135
+ """Wind generators, rated on a nameplate capacity basis."""
131
136
 
132
137
  _EXT_VERSION = "1.0"
133
138
 
134
139
 
135
140
  class ElectricityFromPowerGridV1(BaseOpenEpdHierarchicalSpec):
136
- """Electricity from power grid performance specification."""
141
+ """Electrical energy drawn from a specific utility grid."""
137
142
 
138
143
  _EXT_VERSION = "1.0"
139
144
 
140
145
 
141
146
  class ElectricityFromSpecificGeneratorV1(BaseOpenEpdHierarchicalSpec):
142
- """Electricity from specific generator performance specification."""
147
+ """Electrical energy from a specific power plant, such as a wind farm using a specific type of turbine."""
143
148
 
144
149
  _EXT_VERSION = "1.0"
145
150
 
@@ -148,7 +153,11 @@ class ElectricityFromSpecificGeneratorV1(BaseOpenEpdHierarchicalSpec):
148
153
 
149
154
 
150
155
  class PowerPurchaseAgreementsV1(BaseOpenEpdHierarchicalSpec):
151
- """Power purchase agreements performance specification."""
156
+ """
157
+ Electrical energy subject to a verified power purchase agreement.
158
+
159
+ The impact of electricity generation is allocated specifically to the agreement and not to the general grid.
160
+ """
152
161
 
153
162
  _EXT_VERSION = "1.0"
154
163
 
@@ -157,43 +166,43 @@ class PowerPurchaseAgreementsV1(BaseOpenEpdHierarchicalSpec):
157
166
 
158
167
 
159
168
  class LightbulbsV1(BaseOpenEpdHierarchicalSpec):
160
- """Lightbulbs performance specification."""
169
+ """Various types of light bulbs, including LED, CFL, halogen, and incandescent."""
161
170
 
162
171
  _EXT_VERSION = "1.0"
163
172
 
164
173
 
165
174
  class LightingControlsV1(BaseOpenEpdHierarchicalSpec):
166
- """Lighting controls performance specification."""
175
+ """Devices used to control the operation of lighting, including dimmers, sensors, and smart controls."""
167
176
 
168
177
  _EXT_VERSION = "1.0"
169
178
 
170
179
 
171
180
  class LightingFixturesV1(BaseOpenEpdHierarchicalSpec):
172
- """Lighting fixtures performance specification."""
181
+ """Permanent lighting fixtures for interior spaces, including ceiling, wall-mounted, and pendant fixtures."""
173
182
 
174
183
  _EXT_VERSION = "1.0"
175
184
 
176
185
 
177
186
  class OutdoorLightingV1(BaseOpenEpdHierarchicalSpec):
178
- """Outdoor lighting performance specification."""
187
+ """Lighting products designed for outdoor use, including landscape and security lighting."""
179
188
 
180
189
  _EXT_VERSION = "1.0"
181
190
 
182
191
 
183
192
  class SpecialtyLightingV1(BaseOpenEpdHierarchicalSpec):
184
- """Specialty lighting performance specification."""
193
+ """Specialized lighting for niche applications like emergency, medical, or theatrical lighting."""
185
194
 
186
195
  _EXT_VERSION = "1.0"
187
196
 
188
197
 
189
198
  class TaskLightingV1(BaseOpenEpdHierarchicalSpec):
190
- """Task lighting performance specification."""
199
+ """Lighting designed for specific tasks such as desk lamps, under-cabinet lighting, and reading lamps."""
191
200
 
192
201
  _EXT_VERSION = "1.0"
193
202
 
194
203
 
195
204
  class ElectricalPowerStorageV1(BaseOpenEpdHierarchicalSpec):
196
- """Electrical power storage performance specification."""
205
+ """Electrical Power Storage."""
197
206
 
198
207
  _EXT_VERSION = "1.0"
199
208
 
@@ -203,7 +212,7 @@ class ElectricalPowerStorageV1(BaseOpenEpdHierarchicalSpec):
203
212
 
204
213
 
205
214
  class LowVoltageElectricalDistributionV1(BaseOpenEpdHierarchicalSpec):
206
- """Low voltage electrical distribution performance specification."""
215
+ """Low Voltage Electrical Distribution."""
207
216
 
208
217
  _EXT_VERSION = "1.0"
209
218
 
@@ -216,7 +225,11 @@ class LowVoltageElectricalDistributionV1(BaseOpenEpdHierarchicalSpec):
216
225
 
217
226
 
218
227
  class ElectricalGenerationEquipmentV1(BaseOpenEpdHierarchicalSpec):
219
- """Electrical generation equipment performance specification."""
228
+ """
229
+ Equipment for generating electrical power.
230
+
231
+ This category is primarily for smaller-scale. (e.g. on premises) generation, rather than utility-scale equipment.
232
+ """
220
233
 
221
234
  _EXT_VERSION = "1.0"
222
235
 
@@ -228,7 +241,7 @@ class ElectricalGenerationEquipmentV1(BaseOpenEpdHierarchicalSpec):
228
241
 
229
242
 
230
243
  class ElectricPowerV1(BaseOpenEpdHierarchicalSpec):
231
- """Electric power performance specification."""
244
+ """Electrical energy drawn from a utility grid."""
232
245
 
233
246
  _EXT_VERSION = "1.0"
234
247
 
@@ -239,7 +252,7 @@ class ElectricPowerV1(BaseOpenEpdHierarchicalSpec):
239
252
 
240
253
 
241
254
  class LightingV1(BaseOpenEpdHierarchicalSpec):
242
- """Lighting performance specification."""
255
+ """Lamps and lightbulbs and lamp components."""
243
256
 
244
257
  _EXT_VERSION = "1.0"
245
258
 
@@ -282,7 +295,7 @@ class LightingV1(BaseOpenEpdHierarchicalSpec):
282
295
 
283
296
 
284
297
  class ElectricalV1(BaseOpenEpdHierarchicalSpec):
285
- """Electrical performance specification."""
298
+ """Electric power and equipment."""
286
299
 
287
300
  _EXT_VERSION = "1.0"
288
301
 
@@ -21,13 +21,13 @@ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
21
21
 
22
22
 
23
23
  class AcTransformersV1(BaseOpenEpdHierarchicalSpec):
24
- """AC transformers performance specification."""
24
+ """Equipment for transforming between higher and lower voltage AC power."""
25
25
 
26
26
  _EXT_VERSION = "1.0"
27
27
 
28
28
 
29
29
  class ElectricalInsulatorsV1(BaseOpenEpdHierarchicalSpec):
30
- """Electrical insulators performance specification."""
30
+ """Passive electrical isolation."""
31
31
 
32
32
  _EXT_VERSION = "1.0"
33
33
 
@@ -39,19 +39,23 @@ class ElectricalSubstationsV1(BaseOpenEpdHierarchicalSpec):
39
39
 
40
40
 
41
41
  class ElectricalSwitchgearV1(BaseOpenEpdHierarchicalSpec):
42
- """Electrical switchgear performance specification."""
42
+ """
43
+ Equipment for interrupting and controlling high-power electrical flows.
44
+
45
+ Used for protection, isolation, or control of electrical equipment.
46
+ """
43
47
 
44
48
  _EXT_VERSION = "1.0"
45
49
 
46
50
 
47
51
  class PowerCablingV1(BaseOpenEpdHierarchicalSpec):
48
- """Power cabling performance specification."""
52
+ """High-voltage electrical cabling."""
49
53
 
50
54
  _EXT_VERSION = "1.0"
51
55
 
52
56
 
53
57
  class ElectricalTransmissionAndDistributionEquipmentV1(BaseOpenEpdHierarchicalSpec):
54
- """Electrical transmission and distribution equipment performance specification."""
58
+ """Electrical Transmission & Distribution Equipment."""
55
59
 
56
60
  _EXT_VERSION = "1.0"
57
61
 
@@ -21,6 +21,6 @@ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
21
21
 
22
22
 
23
23
  class ElectricityV1(BaseOpenEpdHierarchicalSpec):
24
- """Electricity performance specification."""
24
+ """Electrical equipment and components and supplies."""
25
25
 
26
26
  _EXT_VERSION = "1.0"
@@ -201,6 +201,7 @@ class GypsumFireRating(StrEnum):
201
201
  - X: X
202
202
  - C: C
203
203
  - F: F
204
+ - Other: Not one of the listed options
204
205
 
205
206
  """
206
207
 
@@ -208,6 +209,7 @@ class GypsumFireRating(StrEnum):
208
209
  X = "X"
209
210
  C = "C"
210
211
  F = "F"
212
+ OTHER = "Other"
211
213
 
212
214
 
213
215
  class MembraneRoofingReinforcement(StrEnum):