Skip to content

Commit

Permalink
Adding a 1W minimum boiler capacity. Fixing a spelling mistake in a c…
Browse files Browse the repository at this point in the history
…omment.
  • Loading branch information
ckirney committed Apr 4, 2023
1 parent c64ac22 commit 49266ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,11 @@ def boiler_hot_water_apply_efficiency_and_curves(boiler_hot_water)
boiler_capacity = capacity_w / 2
elsif (capacity_w / 1000.0) <= 176.0
if boiler_hot_water.name.to_s.include?('Primary Boiler')
boiler_capacity = capacity_w
if capacity_w <= 1.0
boiler_capacity = 1.0
else
boiler_capacity = capacity_w
end
elsif boiler_hot_water.name.to_s.include?('Secondary Boiler')
boiler_capacity = 0.001
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def apply_systems_and_efficiencies(model:,

# -------- Performace, Efficiencies, Controls and Sensors ------------
#
# Set code standard equipment charecteristics.
# Set code standard equipment characteristics.
sql_db_vars_map = apply_standard_efficiencies(model: model,
sizing_run_dir: sizing_run_dir,
necb_reference_hp: self.fuel_type_set.necb_reference_hp)
Expand Down

0 comments on commit 49266ba

Please sign in to comment.