openepd 4.6.1__py3-none-any.whl → 4.8.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/electrical.py +8 -1
- openepd/model/specs/generated/enums.py +59 -0
- openepd/model/specs/generated/finishes.py +35 -1
- openepd/model/specs/generated/mechanical.py +17 -1
- openepd/model/specs/generated/network_infrastructure.py +8 -1
- {openepd-4.6.1.dist-info → openepd-4.8.0.dist-info}/METADATA +1 -1
- {openepd-4.6.1.dist-info → openepd-4.8.0.dist-info}/RECORD +10 -10
- {openepd-4.6.1.dist-info → openepd-4.8.0.dist-info}/LICENSE +0 -0
- {openepd-4.6.1.dist-info → openepd-4.8.0.dist-info}/WHEEL +0 -0
openepd/__version__.py
CHANGED
@@ -290,10 +290,16 @@ class LightingV1(BaseOpenEpdHierarchicalSpec):
|
|
290
290
|
TaskLighting: TaskLightingV1 | None = None
|
291
291
|
|
292
292
|
|
293
|
+
class ElectricalConduitV1(BaseOpenEpdHierarchicalSpec):
|
294
|
+
"""Tubing used to protect and route electrical wiring in a building or structure."""
|
295
|
+
|
296
|
+
_EXT_VERSION = "1.0"
|
297
|
+
|
298
|
+
|
293
299
|
class ElectricalV1(BaseOpenEpdHierarchicalSpec):
|
294
300
|
"""Electric power and equipment."""
|
295
301
|
|
296
|
-
_EXT_VERSION = "1.
|
302
|
+
_EXT_VERSION = "1.1"
|
297
303
|
|
298
304
|
# Nested specs:
|
299
305
|
ElectricalPowerStorage: ElectricalPowerStorageV1 | None = None
|
@@ -301,3 +307,4 @@ class ElectricalV1(BaseOpenEpdHierarchicalSpec):
|
|
301
307
|
ElectricalGenerationEquipment: ElectricalGenerationEquipmentV1 | None = None
|
302
308
|
ElectricPower: ElectricPowerV1 | None = None
|
303
309
|
Lighting: LightingV1 | None = None
|
310
|
+
ElectricalConduit: ElectricalConduitV1 | None = None
|
@@ -982,6 +982,65 @@ class HvacHeatExchangersType(StrEnum):
|
|
982
982
|
SPIRAL = "Spiral"
|
983
983
|
|
984
984
|
|
985
|
+
class HvacDuctType(StrEnum):
|
986
|
+
"""
|
987
|
+
Hvac duct type.
|
988
|
+
|
989
|
+
- Flexible: Duckwork that can be bent or adjusted easily. Suitable for tricky, tight spaces where rigid
|
990
|
+
ducts cannot be used.
|
991
|
+
- Rigid: Stiff ductwork, typically in fixed shapes. Commonly used for main duct runs due to its durability
|
992
|
+
and airflow efficiency.
|
993
|
+
- Semi-rigid: Less flexible than flexible ducts but not fixed. Balances flexibility and sturdiness,
|
994
|
+
useful for certain architectural constraints. Used mostly in residential applications.
|
995
|
+
- Ductboard: Insulated panel-type ductwork made from fiberglass or other materials. It provides thermal insulation
|
996
|
+
and is used where space is not a constraint.
|
997
|
+
"""
|
998
|
+
|
999
|
+
FLEXIBLE = "Flexible"
|
1000
|
+
RIGID = "Rigid"
|
1001
|
+
SEMI_RIGID = "Semi-rigid"
|
1002
|
+
DUCTBOARD = "Ductboard"
|
1003
|
+
|
1004
|
+
|
1005
|
+
class HvacDuctMaterial(StrEnum):
|
1006
|
+
"""
|
1007
|
+
Hvac duct material.
|
1008
|
+
|
1009
|
+
- Galvanized Steel: coated with a layer of zinc to prevent rust. Very durable and common for both residential
|
1010
|
+
and commercial HVAC systems.
|
1011
|
+
- Aluminum: lightweight and resistant to corrosion. Uncommon but preferred for special applications due
|
1012
|
+
to its ease of handling and installation.
|
1013
|
+
- PVC: Plastic ducts suitable for specific environments. Uncommon but used where moisture or chemical resistance
|
1014
|
+
is needed. Not for high temperatures.
|
1015
|
+
- Fiberglass: Insulated ducts that also absorb sound. Reduces noise and heat loss. Uncommon but suitable
|
1016
|
+
for sensitive environments.
|
1017
|
+
- Fabric: Ducts made from specialized fabric materials. Used for distributing air uniformly, and in places
|
1018
|
+
requiring diffused airflow.
|
1019
|
+
"""
|
1020
|
+
|
1021
|
+
GALVANIZED_STEEL = "Galvanized Steel"
|
1022
|
+
ALUMINUM = "Aluminum"
|
1023
|
+
PVC = "PVC"
|
1024
|
+
FIBERGLASS = "Fiberglass"
|
1025
|
+
FABRIC = "Fabric"
|
1026
|
+
|
1027
|
+
|
1028
|
+
class HvacDuctShape(StrEnum):
|
1029
|
+
"""
|
1030
|
+
Hvac duct shape.
|
1031
|
+
|
1032
|
+
- Round: Cylindrical ducts providing efficient airflow. Minimizes friction losses, making it effective for long runs.
|
1033
|
+
- Rectangular: Square or rectangular ducts, versatile installation. Common in commercial settings, easier
|
1034
|
+
to install in flat spaces.
|
1035
|
+
- Oval: Combines attributes of round and rectangular shapes. Provides the benefits of round ducts
|
1036
|
+
where space is limited.
|
1037
|
+
"""
|
1038
|
+
|
1039
|
+
ROUND = "Round"
|
1040
|
+
RECTANGULAR = "Rectangular"
|
1041
|
+
OVAL = "Oval"
|
1042
|
+
|
1043
|
+
|
985
1044
|
class HeatPumpType(StrEnum):
|
986
1045
|
"""
|
987
1046
|
Heat pump type.
|
@@ -468,10 +468,44 @@ class MirrorsV1(BaseOpenEpdHierarchicalSpec):
|
|
468
468
|
_EXT_VERSION = "1.0"
|
469
469
|
|
470
470
|
|
471
|
+
class PaintByMassV1(BaseOpenEpdHierarchicalSpec):
|
472
|
+
"""
|
473
|
+
Paintings and coatings by mass.
|
474
|
+
|
475
|
+
Expected declared unit for products is mass of ready to use product.
|
476
|
+
"""
|
477
|
+
|
478
|
+
_EXT_VERSION = "1.0"
|
479
|
+
|
480
|
+
|
481
|
+
class PaintByVolumeV1(BaseOpenEpdHierarchicalSpec):
|
482
|
+
"""
|
483
|
+
Paintings and coatings by volume.
|
484
|
+
|
485
|
+
Expecting declared unit for products is volume of ready to use product.
|
486
|
+
"""
|
487
|
+
|
488
|
+
_EXT_VERSION = "1.0"
|
489
|
+
|
490
|
+
|
491
|
+
class PaintByAreaV1(BaseOpenEpdHierarchicalSpec):
|
492
|
+
"""
|
493
|
+
Paintings and coatings by area.
|
494
|
+
|
495
|
+
Expected declared unit is area of host surface covered by the product.
|
496
|
+
"""
|
497
|
+
|
498
|
+
_EXT_VERSION = "1.0"
|
499
|
+
|
500
|
+
|
471
501
|
class PaintingAndCoatingV1(BaseOpenEpdHierarchicalSpec):
|
472
502
|
"""Paintings and coatings."""
|
473
503
|
|
474
|
-
_EXT_VERSION = "1.
|
504
|
+
_EXT_VERSION = "1.1"
|
505
|
+
|
506
|
+
PaintByMass: PaintByMassV1 | None = None
|
507
|
+
PaintByVolume: PaintByVolumeV1 | None = None
|
508
|
+
PaintByArea: PaintByAreaV1 | None = None
|
475
509
|
|
476
510
|
|
477
511
|
class WallFinishesV1(BaseOpenEpdHierarchicalSpec):
|
@@ -23,6 +23,9 @@ from openepd.model.specs.generated.enums import (
|
|
23
23
|
BoilerConfiguration,
|
24
24
|
BoilerEquipmentFuelType,
|
25
25
|
HeatPumpType,
|
26
|
+
HvacDuctMaterial,
|
27
|
+
HvacDuctShape,
|
28
|
+
HvacDuctType,
|
26
29
|
HvacHeatExchangersType,
|
27
30
|
MechanicalInstallation,
|
28
31
|
MechanicalRefrigerants,
|
@@ -205,10 +208,22 @@ class HvacVrfSystemsV1(BaseOpenEpdHierarchicalSpec):
|
|
205
208
|
HvacVrfOutdoor: HvacVrfOutdoorV1 | None = None
|
206
209
|
|
207
210
|
|
211
|
+
class HvacDuctsV1(BaseOpenEpdHierarchicalSpec):
|
212
|
+
"""Ducts for HVAC systems performance specification."""
|
213
|
+
|
214
|
+
_EXT_VERSION = "1.0"
|
215
|
+
|
216
|
+
shape: HvacDuctShape | None = pyd.Field(default=None, description="Hvac duct shape", example="Rectangular")
|
217
|
+
material: HvacDuctMaterial | None = pyd.Field(
|
218
|
+
default=None, description="Hvac duct material", example="Galvanized Steel"
|
219
|
+
)
|
220
|
+
type: HvacDuctType | None = pyd.Field(default=None, description="Hvac duct type", example="Flexible")
|
221
|
+
|
222
|
+
|
208
223
|
class MechanicalV1(BaseOpenEpdHierarchicalSpec):
|
209
224
|
"""Mechanical performance specification."""
|
210
225
|
|
211
|
-
_EXT_VERSION = "1.
|
226
|
+
_EXT_VERSION = "1.1"
|
212
227
|
|
213
228
|
# Nested specs:
|
214
229
|
HvacAirDiffusers: HvacAirDiffusersV1 | None = None
|
@@ -222,3 +237,4 @@ class MechanicalV1(BaseOpenEpdHierarchicalSpec):
|
|
222
237
|
HvacPumps: HvacPumpsV1 | None = None
|
223
238
|
HvacRTUs: HvacRTUsV1 | None = None
|
224
239
|
HvacVrfSystems: HvacVrfSystemsV1 | None = None
|
240
|
+
HvacDucts: HvacDuctsV1 | None = None
|
@@ -166,10 +166,16 @@ class NetworkingRacewaysV1(BaseOpenEpdHierarchicalSpec):
|
|
166
166
|
raceways_material: RacewaysMaterial | None = pyd.Field(default=None, description="", example="Aluminum")
|
167
167
|
|
168
168
|
|
169
|
+
class CommunicationsConduitV1(BaseOpenEpdHierarchicalSpec):
|
170
|
+
"""Tubing used to protect and route communications wiring in a building or structure."""
|
171
|
+
|
172
|
+
_EXT_VERSION = "1.0"
|
173
|
+
|
174
|
+
|
169
175
|
class NetworkInfrastructureV1(BaseOpenEpdHierarchicalSpec):
|
170
176
|
"""General category for network infrastructure products for data centers and commercial and residential buildings."""
|
171
177
|
|
172
|
-
_EXT_VERSION = "1.
|
178
|
+
_EXT_VERSION = "1.1"
|
173
179
|
|
174
180
|
# Nested specs:
|
175
181
|
PDU: PDUV1 | None = None
|
@@ -178,3 +184,4 @@ class NetworkInfrastructureV1(BaseOpenEpdHierarchicalSpec):
|
|
178
184
|
FloorBoxesAndAccessories: FloorBoxesAndAccessoriesV1 | None = None
|
179
185
|
NetworkingCableTrays: NetworkingCableTraysV1 | None = None
|
180
186
|
NetworkingRaceways: NetworkingRacewaysV1 | None = None
|
187
|
+
CommunicationsConduit: CommunicationsConduitV1 | None = None
|
@@ -1,5 +1,5 @@
|
|
1
1
|
openepd/__init__.py,sha256=Shkfh0Kun0YRhmRDw7LkUj2eQL3X-HnP55u2THOEALw,794
|
2
|
-
openepd/__version__.py,sha256=
|
2
|
+
openepd/__version__.py,sha256=lqIyRxgSO7rqieyIF-IlWuLQnc58Z9-7vPOWqBlK4os,638
|
3
3
|
openepd/api/__init__.py,sha256=UGmZGEyMnASrYwEBPHuXmVzHiuCUskUsJEPoHTIo-lg,620
|
4
4
|
openepd/api/base_sync_client.py,sha256=jviqtQgsOVdRq5x7_Yh_Tg8zIdWtVTIUqNCgebf6YDg,20925
|
5
5
|
openepd/api/category/__init__.py,sha256=UGmZGEyMnASrYwEBPHuXmVzHiuCUskUsJEPoHTIo-lg,620
|
@@ -58,20 +58,20 @@ openepd/model/specs/generated/cmu.py,sha256=Vv-aiT4Q7Zl5XTkSCnTeGOpE_ufTy63zt2Z5
|
|
58
58
|
openepd/model/specs/generated/common.py,sha256=iNeJmVYZURVQWewx3zskwnwy7DBuaggCHFWQBThtY2A,1048
|
59
59
|
openepd/model/specs/generated/concrete.py,sha256=wnR656XxF6b26aBP4TRijMJf5CdLUzbZtSLXsbE3Yxw,6987
|
60
60
|
openepd/model/specs/generated/conveying_equipment.py,sha256=sQSnFccpTIw8sNGywW0KajE1lCHzbVBCISKyrYFW02U,3052
|
61
|
-
openepd/model/specs/generated/electrical.py,sha256=
|
61
|
+
openepd/model/specs/generated/electrical.py,sha256=571-26lGYG3z5ecmZyxawxO70USatWSzn7_vEXeVAE0,10985
|
62
62
|
openepd/model/specs/generated/electrical_transmission_and_distribution_equipment.py,sha256=h6UQixACOHrquhQ2GFqqYWel_zqOXT-vAkI0o_RLf0A,1978
|
63
63
|
openepd/model/specs/generated/electricity.py,sha256=iGtN21K1MRVwoRfO6friVgiXc2b6cVdITbvnXqLmW3k,823
|
64
|
-
openepd/model/specs/generated/enums.py,sha256=
|
65
|
-
openepd/model/specs/generated/finishes.py,sha256=
|
64
|
+
openepd/model/specs/generated/enums.py,sha256=9JA9hay6s76kStmcAvpmF8NLgsYZA3IkNMRh-TMK2qY,60938
|
65
|
+
openepd/model/specs/generated/finishes.py,sha256=Sq_jh3xnPlvLAiS6z7AIvWXIz31_bzW4SM_auXSxALE,22421
|
66
66
|
openepd/model/specs/generated/fire_and_smoke_protection.py,sha256=zkOlnNCnAZ9MUWk2sDqUX14YxNEDU3MGfUlePG3su0Q,3068
|
67
67
|
openepd/model/specs/generated/furnishings.py,sha256=QY_FDsFZaqjCiw2xHsD3kmyBGJA7jCHlSIvaw4TmqXI,2581
|
68
68
|
openepd/model/specs/generated/grouting.py,sha256=mDpfsax6TO72SuBqv8HftJDYoQPP741dD1vi_2cuNCE,934
|
69
69
|
openepd/model/specs/generated/manufacturing_inputs.py,sha256=B1_6OYX3cOFpOBvQRQrbPD4v9-iwKHo4E1fu9YfEDOo,5103
|
70
70
|
openepd/model/specs/generated/masonry.py,sha256=35yUySGoRCApdZSYWbCjZ_rTR7WRPssz4patN8pqHNU,3069
|
71
71
|
openepd/model/specs/generated/material_handling.py,sha256=hx8fisNcFw6GXC7uMfW-4wkGUS8xJA9gTk_WpZGHkqY,1274
|
72
|
-
openepd/model/specs/generated/mechanical.py,sha256=
|
72
|
+
openepd/model/specs/generated/mechanical.py,sha256=qRKvOqRqn2DoyTCOnNwHClyoby0pa4YN8vXuE6CtY8A,9872
|
73
73
|
openepd/model/specs/generated/mechanical_insulation.py,sha256=sbXTXT4xOOgvyDeLN4HZ3xCIwKkaPEjoQlRyCrq4tlM,1617
|
74
|
-
openepd/model/specs/generated/network_infrastructure.py,sha256=
|
74
|
+
openepd/model/specs/generated/network_infrastructure.py,sha256=C4y2PKvC-0QXNDz5qFUgMMcK3n8b_9GsLotSWBDaxms,8403
|
75
75
|
openepd/model/specs/generated/openings.py,sha256=cpJr0Qk9FTLktM5hQAOsPBFL36CRP2sKpe_1v1EOVG4,18818
|
76
76
|
openepd/model/specs/generated/other_electrical_equipment.py,sha256=HUOI_NfCXn_pmon0KEy11hBrILA5QYtpnme0YqWoEfk,814
|
77
77
|
openepd/model/specs/generated/other_materials.py,sha256=ztaZHOr2HbiSpKdz4M1b2jsm_11fMDqZduEYWT1Q_rI,3498
|
@@ -91,7 +91,7 @@ openepd/model/validation/quantity.py,sha256=kzug0MZ3Ao0zeVzN-aleyxUg5hA_7D5tNOOe
|
|
91
91
|
openepd/model/versioning.py,sha256=R_zm6rCrgF3vlJQYbpyWhirdS_Oek16cv_mvZmpuE8I,4473
|
92
92
|
openepd/patch_pydantic.py,sha256=xrkzblatmU9HBzukWkp1cPq9ZSuohoz1p0pQqVKSlKs,4122
|
93
93
|
openepd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
94
|
-
openepd-4.
|
95
|
-
openepd-4.
|
96
|
-
openepd-4.
|
97
|
-
openepd-4.
|
94
|
+
openepd-4.8.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
95
|
+
openepd-4.8.0.dist-info/METADATA,sha256=nPib2wxgzIhOrrjVOQdEUihZ3r2ARyCo17UoY4LUllI,8534
|
96
|
+
openepd-4.8.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
97
|
+
openepd-4.8.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|