From cbfff2f8f821804977da2454ac79986d78d523e6 Mon Sep 17 00:00:00 2001 From: Matthew Dahlhausen Date: Wed, 3 Jan 2024 11:34:37 -0700 Subject: [PATCH] change PVAV coil type change 'PVAV with gas heat with electric reheat' to use a gas coil instead of a hot water coil with a boiler add 'PVAV with gas coil heat with electric reheat', which is another name for the setup. add 'PVAV with gas boiler heat with electric reheat' for the option with a hot water coil with a boiler --- .../measure.rb | 2 ++ .../measure.xml | 16 ++++++++++++---- .../resources/Model.hvac.rb | 6 +++++- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/resources/measures/create_typical_building_from_model/measure.rb b/resources/measures/create_typical_building_from_model/measure.rb index ffc407187..a1f1fcdc2 100644 --- a/resources/measures/create_typical_building_from_model/measure.rb +++ b/resources/measures/create_typical_building_from_model/measure.rb @@ -176,6 +176,8 @@ def arguments(model) hvac_chs << 'PVAV with district hot water reheat' hvac_chs << 'PVAV with PFP boxes' hvac_chs << 'PVAV with gas heat with electric reheat' + hvac_chs << 'PVAV with gas coil heat with electric reheat' + hvac_chs << 'PVAV with gas boiler heat with electric reheat' hvac_chs << 'Residential AC with baseboard electric' hvac_chs << 'Residential AC with baseboard gas boiler' hvac_chs << 'Residential AC with baseboard central air source heat pump' diff --git a/resources/measures/create_typical_building_from_model/measure.xml b/resources/measures/create_typical_building_from_model/measure.xml index c7b7be039..9b580b876 100644 --- a/resources/measures/create_typical_building_from_model/measure.xml +++ b/resources/measures/create_typical_building_from_model/measure.xml @@ -3,8 +3,8 @@ 3.1 create_typical_building_from_model 339a2e3a-273c-4494-bb50-bfe586a0647c - e0d7a67d-835a-43a5-9698-36b20ceda38f - 2024-01-02T15:25:32Z + 5815cc73-0b2b-46bc-9ae2-7ead558f15ce + 2024-01-03T18:32:46Z EE13F09F CreateTypicalBuildingFromModel Create Typical Building from Model @@ -545,6 +545,14 @@ PVAV with gas heat with electric reheat PVAV with gas heat with electric reheat + + PVAV with gas coil heat with electric reheat + PVAV with gas coil heat with electric reheat + + + PVAV with gas boiler heat with electric reheat + PVAV with gas boiler heat with electric reheat + Residential AC with baseboard electric Residential AC with baseboard electric @@ -1451,13 +1459,13 @@ measure.rb rb script - E7221B07 + FF7CA5B1 Model.hvac.rb rb resource - 48B87A43 + C6E68B0D deer_vintages.rb diff --git a/resources/measures/create_typical_building_from_model/resources/Model.hvac.rb b/resources/measures/create_typical_building_from_model/resources/Model.hvac.rb index 35fcaf25b..ffd3862d7 100644 --- a/resources/measures/create_typical_building_from_model/resources/Model.hvac.rb +++ b/resources/measures/create_typical_building_from_model/resources/Model.hvac.rb @@ -463,7 +463,11 @@ def add_cbecs_hvac_system(standard, system_type, zones) when 'PVAV with PFP boxes' standard.model_add_hvac_system(self, 'PVAV PFP Boxes', ht = 'Electricity', znht = 'Electricity', cl = 'Electricity', zones) - when 'PVAV with gas heat with electric reheat' + when 'PVAV with gas heat with electric reheat', 'PVAV with gas coil heat with electric reheat' + standard.model_add_hvac_system(self, 'PVAV Reheat', ht = 'Gas', znht = 'Electricity', cl = 'Electricity', zones, + air_loop_heating_type = 'Gas') + + when 'PVAV with gas boiler heat with electric reheat' standard.model_add_hvac_system(self, 'PVAV Reheat', ht = 'Gas', znht = 'Electricity', cl = 'Electricity', zones) # all residential systems do not have ventilation