From 9d2ea829041c07b7b87e1a19c6a3529aad79b423 Mon Sep 17 00:00:00 2001 From: adfarth Date: Fri, 10 Jan 2025 13:13:29 -0700 Subject: [PATCH] small update to normalize explanation --- src/core/heating_cooling_loads.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/heating_cooling_loads.jl b/src/core/heating_cooling_loads.jl index 623fdc8b2..247466212 100644 --- a/src/core/heating_cooling_loads.jl +++ b/src/core/heating_cooling_loads.jl @@ -15,7 +15,7 @@ monthly_mmbtu::Array{<:Real,1} = Real[], addressable_load_fraction::Any = 1.0, # Fraction of input fuel load which is addressable by heating technologies. Can be a scalar or vector with length aligned with use of monthly_mmbtu or fuel_loads_mmbtu_per_hour. fuel_loads_mmbtu_per_hour::Array{<:Real,1} = Real[], # Vector of space heating fuel loads [mmbtu/hr]. Length must equal 8760 * `Settings.time_steps_per_hour` - normalize_and_scale_load_profile_input::Bool = false, # Takes fuel_loads_mmbtu_per_hour and normalizes and scales it to annual or monthly energy + normalize_and_scale_load_profile_input::Bool = false, # Takes fuel_loads_mmbtu_per_hour and normalizes and scales it to annual_mmbtu or monthly_mmbtu existing_boiler_efficiency::Real = NaN ```