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

Document autosizing methodology for e.g. dual-fuel HPs #1486

Merged
merged 2 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions HPXMLtoOpenStudio/measure.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<schema_version>3.1</schema_version>
<name>hpxm_lto_openstudio</name>
<uid>b1543b30-9465-45ff-ba04-1d1f85e763bc</uid>
<version_id>5db80f7a-58be-4b4a-9942-487602e5a6e4</version_id>
<version_modified>2023-09-13T20:50:01Z</version_modified>
<version_id>5b3130f2-b6cd-4fd4-ba8d-1cb3be263f93</version_id>
<version_modified>2023-09-19T21:08:31Z</version_modified>
<xml_checksum>D8922A73</xml_checksum>
<class_name>HPXMLtoOpenStudio</class_name>
<display_name>HPXML to OpenStudio Translator</display_name>
Expand Down Expand Up @@ -280,7 +280,7 @@
<filename>hvac_sizing.rb</filename>
<filetype>rb</filetype>
<usage_type>resource</usage_type>
<checksum>44977F7D</checksum>
<checksum>6BA780E1</checksum>
</file>
<file>
<filename>lighting.rb</filename>
Expand Down
2 changes: 1 addition & 1 deletion HPXMLtoOpenStudio/resources/hvac_sizing.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2010,7 +2010,7 @@ def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating,
end
end
if (not min_compressor_temp.nil?) && (min_compressor_temp > @hpxml.header.manualj_heating_design_temp)
# Calculate the heating load at the switchover temperature to limit uninitialized capacity
# Calculate the heating load at the switchover temperature to limit unutilized capacity
temp_heat_design_temp = @hpxml.header.manualj_heating_design_temp
@hpxml.header.manualj_heating_design_temp = min_compressor_temp
_alternate_bldg_design_loads, alternate_all_hvac_sizing_values = calculate(weather, @hpxml, @cfa, [hvac_system])
Expand Down
21 changes: 16 additions & 5 deletions docs/source/workflow_outputs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,7 @@ HVAC Capacities
~~~~~~~~~~~~~~~

System outputs are listed below.
Autosized HVAC systems are based on HVAC design temperatures/loads described below.
Capacities for individual HVAC systems can be found in the `in.xml` file.
Capacities for individual HVAC systems can be found in the ``in.xml`` file.

==================================================== ====================
Type Notes
Expand All @@ -434,11 +433,21 @@ Capacities for individual HVAC systems can be found in the `in.xml` file.
HVAC Capacity: Heat Pump Backup (Btu/h) Total HVAC heat pump backup capacity
==================================================== ====================

.. note::

Autosized HVAC systems are based on :ref:`hvac_design_temps` and :ref:`hvac_design_loads`.

For heat pumps with a minimum compressor lockout temperature greater than the heating design temperature (e.g., a dual-fuel heat pump in a cold climate), the compressor will be sized based on heating design loads calculated at the compressor lockout temperature.
This is done to prevent unutilized capacity at temperatures below the compressor lockout temperature.
Any heat pump backup will still be based on heating design loads calculated using the heating design temperature.

.. _hvac_design_temps:

HVAC Design Temperatures
~~~~~~~~~~~~~~~~~~~~~~~~

Design temperatures are used in the design load calculations for autosizing of HVAC equipment; see :ref:`hvac_sizing_control` for how they are derived.
Design temperatures can also be found in the `in.xml` file.
Design temperatures can also be found in the ``in.xml`` file.

===================================================================== ====================
Type Notes
Expand All @@ -447,12 +456,14 @@ Design temperatures can also be found in the `in.xml` file.
HVAC Design Temperature: Cooling (F) 1% cooling drybulb temperature
===================================================================== ====================

.. _hvac_design_loads:

HVAC Design Loads
~~~~~~~~~~~~~~~~~

Design load outputs, used for autosizing of HVAC equipment, are listed below.
Design loads are based on block load ACCA Manual J calculations using 1%/99% design temperatures.
Design loads can also be found in the `in.xml` file.
Design loads are based on block load ACCA Manual J calculations using :ref:`hvac_design_temps`.
Design loads can also be found in the ``in.xml`` file.

===================================================================== ====================
Type Notes
Expand Down