From c2256a4de91b175dffa280e3c5d4a6704701d2ac Mon Sep 17 00:00:00 2001 From: Pranay Shah <45097539+pranay2811@users.noreply.github.com> Date: Thu, 24 Oct 2024 17:05:05 -0400 Subject: [PATCH 1/5] Update telemetry_fields.yaml Added: exhaust_air_relative_humidity_sensor exhaust_air_relative_humidity_setpoint entering_dehumidifier_temperature_sensor entering_dehumidifier_temperature_setpoint --- .../yaml/resources/fields/telemetry_fields.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/ontology/yaml/resources/fields/telemetry_fields.yaml b/ontology/yaml/resources/fields/telemetry_fields.yaml index 2da05145b..6a00bfc0d 100644 --- a/ontology/yaml/resources/fields/telemetry_fields.yaml +++ b/ontology/yaml/resources/fields/telemetry_fields.yaml @@ -3908,5 +3908,15 @@ literals: - heating_return_water_pressure_sensor: flexible_min: -34473.78945 flexible_max: 344737.8945 - - +- exhaust_air_relative_humidity_sensor: + fixed_min: 0.0 + fixed_max: 100.0 +- exhaust_air_relative_humidity_setpoint: + fixed_min: 0.0 + fixed_max: 100.0 +- entering_dehumidifier_temperature_sensor: + flexible_min: 255.9259259 + flexible_max: 338.7037037 +- entering_dehumidifier_temperature_setpoint: + flexible_min: 255.9259259 + flexible_max: 338.7037037 From ed38efb3ace7134f4fb0a530e503eace3165ec4c Mon Sep 17 00:00:00 2001 From: Pranay Shah <45097539+pranay2811@users.noreply.github.com> Date: Thu, 24 Oct 2024 17:11:25 -0400 Subject: [PATCH 2/5] Update ABSTRACT.yaml Added EHC (Exhaust Air Relative Humidity Control) --- .../yaml/resources/HVAC/entity_types/ABSTRACT.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml b/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml index 8105b9857..0608be5bc 100644 --- a/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml +++ b/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml @@ -1772,6 +1772,14 @@ RHHC: - return_air_relative_humidity_sensor - return_air_relative_humidity_setpoint +EHC: + guid: "d15d63a4-9fea-49f9-a0eb-9399012cbe93" + description: "Exhaust air relative humidity control." + is_abstract: true + opt_uses: + - exhaust_air_relative_humidity_sensor + uses: + - exhaust_air_relative_humidity_setpoint SHC: guid: "c27f33dc-19bc-47f4-937a-eab3293b920f" @@ -8417,7 +8425,7 @@ SDHC: - leaving_dehumidifier_temperature_sensor - leaving_dehumidifier_temperature_setpoint implements: - - CONTROL + - CONTROL FPHC: guid: "bdd89332-3303-420d-a13c-ee38c398d9ff" From 332dde4206fb832ceb1c6977a7097f9590e00193 Mon Sep 17 00:00:00 2001 From: Pranay Shah <45097539+pranay2811@users.noreply.github.com> Date: Thu, 24 Oct 2024 17:12:35 -0400 Subject: [PATCH 3/5] Update telemetry_fields.yaml Removed: entering_dehumidifier_temperature_sensor entering_dehumidifier_temperature_setpoint Internal evaluations needed. --- ontology/yaml/resources/fields/telemetry_fields.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ontology/yaml/resources/fields/telemetry_fields.yaml b/ontology/yaml/resources/fields/telemetry_fields.yaml index 6a00bfc0d..15ad1a4eb 100644 --- a/ontology/yaml/resources/fields/telemetry_fields.yaml +++ b/ontology/yaml/resources/fields/telemetry_fields.yaml @@ -3914,9 +3914,3 @@ literals: - exhaust_air_relative_humidity_setpoint: fixed_min: 0.0 fixed_max: 100.0 -- entering_dehumidifier_temperature_sensor: - flexible_min: 255.9259259 - flexible_max: 338.7037037 -- entering_dehumidifier_temperature_setpoint: - flexible_min: 255.9259259 - flexible_max: 338.7037037 From e9513452cd767b9eeb63c030a51ca718bde395d2 Mon Sep 17 00:00:00 2001 From: Pranay Shah <45097539+pranay2811@users.noreply.github.com> Date: Fri, 25 Oct 2024 13:58:38 -0400 Subject: [PATCH 4/5] Update ABSTRACT.yaml Added humidifation & dehumidifcation commands to EHC --- ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml b/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml index a94c85aff..ece1f9ed6 100644 --- a/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml +++ b/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml @@ -1777,9 +1777,15 @@ EHC: description: "Exhaust air relative humidity control." is_abstract: true opt_uses: - - exhaust_air_relative_humidity_sensor + - humidification_percentage_command + - failed_humidifier_alarm uses: + - dehumidification_run_command + - humidification_run_command + - exhaust_air_relative_humidity_sensor - exhaust_air_relative_humidity_setpoint + implements: + - OPERATIONAL SHC: guid: "c27f33dc-19bc-47f4-937a-eab3293b920f" From 736c75426f1de1460c582949fd97080bef38cc82 Mon Sep 17 00:00:00 2001 From: Pranay Shah <45097539+pranay2811@users.noreply.github.com> Date: Thu, 31 Oct 2024 17:00:06 -0400 Subject: [PATCH 5/5] Update ABSTRACT.yaml Changed EHC to EDHC & updated description --- ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml b/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml index 48060e109..f6ac25d63 100644 --- a/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml +++ b/ontology/yaml/resources/HVAC/entity_types/ABSTRACT.yaml @@ -1783,9 +1783,9 @@ RHHC: - return_air_relative_humidity_sensor - return_air_relative_humidity_setpoint -EHC: +EDHC: guid: "d15d63a4-9fea-49f9-a0eb-9399012cbe93" - description: "Exhaust air relative humidity control." + description: "Exhaust air humidification/dehumidification control." is_abstract: true opt_uses: - humidification_percentage_command