Skip to content

Commit

Permalink
Change default min_allowable_peak_capacity_fraction to 0.25
Browse files Browse the repository at this point in the history
Now that we default to force_dispatch=true, we can allow a lower min allowable size because we know it will dispatch a more significant amount of the heating and/or cooling load.
  • Loading branch information
Bill-Becker committed Jan 21, 2025
1 parent 907d43a commit 1332d08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/ashp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ function ASHPSpaceHeater(;
@warn("user-provided minimum allowable ton is used in the place of the default; this may provided very small sizes if set to zero.")
else
if isnothing(min_allowable_peak_capacity_fraction)
min_allowable_peak_capacity_fraction = 0.5
min_allowable_peak_capacity_fraction = 0.25
end
min_allowable_kw = get_ashp_default_min_allowable_size(heating_load, heating_cf, cooling_load, cooling_cf, min_allowable_peak_capacity_fraction)
end
Expand Down Expand Up @@ -394,7 +394,7 @@ function ASHPWaterHeater(;
@warn("user-provided minimum allowable ton is used in the place of the default; this may provided very small sizes if set to zero.")
else
if isnothing(min_allowable_peak_capacity_fraction)
min_allowable_peak_capacity_fraction = 0.5
min_allowable_peak_capacity_fraction = 0.25
end
min_allowable_kw = get_ashp_default_min_allowable_size(heating_load, heating_cf, Real[], Real[], min_allowable_peak_capacity_fraction)
end
Expand Down

0 comments on commit 1332d08

Please sign in to comment.