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 default chiller efficiency #1422

Merged
merged 7 commits into from
Mar 11, 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
24 changes: 12 additions & 12 deletions data/standards/test_performance_expected_dd_results.csv

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,19 @@ def model_add_chw_loop(model,
chiller.setChillerFlowMode('ConstantFlow')
chiller.setSizingFactor(chiller_sizing_factor)

# use default efficiency from 90.1-2019
# 1.188 kw/ton for a 150 ton AirCooled chiller
# 0.66 kw/ton for a 150 ton Water Cooled positive displacement chiller
case chiller_cooling_type
when 'AirCooled'
default_cop = kw_per_ton_to_cop(1.188)
when 'WaterCooled'
default_cop = kw_per_ton_to_cop(0.66)
else
default_cop = kw_per_ton_to_cop(0.66)
end
chiller.setReferenceCOP(default_cop)

# connect the chiller to the condenser loop if one was supplied
if condenser_water_loop.nil?
chiller.setCondenserType('AirCooled')
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.