openepd 4.6.1__py3-none-any.whl → 4.7.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/enums.py +59 -0
- openepd/model/specs/generated/mechanical.py +17 -1
- {openepd-4.6.1.dist-info → openepd-4.7.0.dist-info}/METADATA +1 -1
- {openepd-4.6.1.dist-info → openepd-4.7.0.dist-info}/RECORD +7 -7
- {openepd-4.6.1.dist-info → openepd-4.7.0.dist-info}/LICENSE +0 -0
- {openepd-4.6.1.dist-info → openepd-4.7.0.dist-info}/WHEEL +0 -0
openepd/__version__.py
CHANGED
@@ -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.
|
@@ -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
|
@@ -1,5 +1,5 @@
|
|
1
1
|
openepd/__init__.py,sha256=Shkfh0Kun0YRhmRDw7LkUj2eQL3X-HnP55u2THOEALw,794
|
2
|
-
openepd/__version__.py,sha256=
|
2
|
+
openepd/__version__.py,sha256=pMpg9-CrnTUE6GtcD2aL-Z8bPoVZ7HOk38EYJxrVfGo,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
|
@@ -61,7 +61,7 @@ openepd/model/specs/generated/conveying_equipment.py,sha256=sQSnFccpTIw8sNGywW0K
|
|
61
61
|
openepd/model/specs/generated/electrical.py,sha256=z4v6zbDvyMSYwbz7kb70aks1Ik9Q14ZkLss7cLqUdTs,10755
|
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=
|
64
|
+
openepd/model/specs/generated/enums.py,sha256=9JA9hay6s76kStmcAvpmF8NLgsYZA3IkNMRh-TMK2qY,60938
|
65
65
|
openepd/model/specs/generated/finishes.py,sha256=QHFtUZcUCGAzZeHJlLoG1D9SxAW9FGPj7g48Fu1Nvdc,21660
|
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
|
@@ -69,7 +69,7 @@ openepd/model/specs/generated/grouting.py,sha256=mDpfsax6TO72SuBqv8HftJDYoQPP741
|
|
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
74
|
openepd/model/specs/generated/network_infrastructure.py,sha256=GTdoFYj-ZU3rVqFrxb7hY5WzbyN3NnwtqnduH0wODeg,8157
|
75
75
|
openepd/model/specs/generated/openings.py,sha256=cpJr0Qk9FTLktM5hQAOsPBFL36CRP2sKpe_1v1EOVG4,18818
|
@@ -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.7.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
95
|
+
openepd-4.7.0.dist-info/METADATA,sha256=cZp9von79AjPkfMiN8va1GOm7Imr7D73byVhyoYBlaI,8534
|
96
|
+
openepd-4.7.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
97
|
+
openepd-4.7.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|