Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add multi-zone AHU entity type #1294

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
14 changes: 13 additions & 1 deletion ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7935,4 +7935,16 @@ DTPM:
- detergent_pump_run_status
- detergent_pump_run_command
implements:
- MONITORING
- MONITORING

ZDHC:
guid: "d50c12f3-98bf-4da2-bc36-57d44160c789"
description: "zone dewpoint control with chilled water cooling and electric reheat"
is_abstract: true
uses:
- zone_air_dewpoint_temperature_sensor
- zone_air_dewpoint_temperature_setpoint
- chilled_water_valve_percentage_command
- heating_percentage_command
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would separate the heating control from here - you can probably use the existing HTSC type

opt_uses:
- chilled_water_valve_percentage_sensor
16 changes: 16 additions & 0 deletions ontology/yaml/resources/HVAC/entity_types/AHU.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5318,3 +5318,19 @@ AHU_BSPC_DX4SC_ECON_EFSS_EFVSC_SFSS_SFVSC_SSPC_RHHC_NONCANONICAL_1:
- heating_water_valve_percentage_command
- min_zone_air_relative_humidity_sensor
- min_zone_air_relative_humidity_setpoint

AHU_SFSS_SFVSC_EFSS_CHWSC_FDPM2X_SSPC_OAFC_HTSC_RHDHC:
guid: "75559dbd-7ef6-4368-b48f-8d34db7fe47d"
description: "Multi zone AHU with exhaust fan, two prefilters, outside air, electric supply side heating, supply static pressure control and return air dehumidification"
is_canonical: true
implements:
- AHU
- SFSS
- EFSS
- SFVSC
- CHWSC
- FDPM2X
- SSPC
- OAFC
- HTSC
- RHDHC
3 changes: 3 additions & 0 deletions ontology/yaml/resources/fields/telemetry_fields.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,9 @@ literals:
- zone_air_dewpoint_temperature_sensor:
flexible_min: 255.9259259
flexible_max: 310.9259259
- zone_air_dewpoint_temperature_setpoint:
flexible_min: 255.9259259
flexible_max: 310.9259259
- outside_air_co_concentration_sensor:
flexible_min: 0.00035
flexible_max: 0.0015
Expand Down