Skip to content

Commit

Permalink
Normalize the crankcase power by the fraction load served. If there’s…
Browse files Browse the repository at this point in the history
… a single system, it will behave as before; if there are multiple systems, it will scale down (by the fraction load served, which should scale similarly to capacity).
  • Loading branch information
shorowit committed Jun 9, 2020
1 parent 37fb8c0 commit 0caa276
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
16 changes: 8 additions & 8 deletions HPXMLtoOpenStudio/measure.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<schema_version>3.0</schema_version>
<name>hpxm_lto_openstudio</name>
<uid>b1543b30-9465-45ff-ba04-1d1f85e763bc</uid>
<version_id>bb6df16a-af59-4f99-902b-c60425767e97</version_id>
<version_modified>20200608T224540Z</version_modified>
<version_id>bbff8c0a-45f9-491a-bed7-2a6d4336c09b</version_id>
<version_modified>20200609T145653Z</version_modified>
<xml_checksum>D8922A73</xml_checksum>
<class_name>HPXMLtoOpenStudio</class_name>
<display_name>HPXML to OpenStudio Translator</display_name>
Expand Down Expand Up @@ -492,12 +492,6 @@
<usage_type>resource</usage_type>
<checksum>455AD0B3</checksum>
</file>
<file>
<filename>hvac.rb</filename>
<filetype>rb</filetype>
<usage_type>resource</usage_type>
<checksum>82B030F4</checksum>
</file>
<file>
<filename>hvac_sizing.rb</filename>
<filetype>rb</filetype>
Expand All @@ -521,5 +515,11 @@
<usage_type>script</usage_type>
<checksum>C4596E58</checksum>
</file>
<file>
<filename>hvac.rb</filename>
<filetype>rb</filetype>
<usage_type>resource</usage_type>
<checksum>9E9735A4</checksum>
</file>
</files>
</measure>
6 changes: 1 addition & 5 deletions HPXMLtoOpenStudio/resources/hvac.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3760,11 +3760,7 @@ def self.get_sequential_load_schedule(model, value)
end

def self.get_crankcase_assumptions(fraction_cool_load_served)
if fraction_cool_load_served > 0
crankcase_kw = 0.05 # From RESNET Publication No. 002-2017
else
crankcase_kw = 0.0
end
crankcase_kw = 0.05 * fraction_cool_load_served # From RESNET Publication No. 002-2017
crankcase_temp = 50.0 # From RESNET Publication No. 002-2017
return crankcase_kw, crankcase_temp
end
Expand Down

0 comments on commit 0caa276

Please sign in to comment.