From be8197c222fb8b2d31669eb27081f1a326dbe580 Mon Sep 17 00:00:00 2001 From: adfarth Date: Thu, 9 Jan 2025 13:44:17 -0700 Subject: [PATCH] small text updates --- src/core/electric_load.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/electric_load.jl b/src/core/electric_load.jl index a2a2ce09c..5b9cc2706 100644 --- a/src/core/electric_load.jl +++ b/src/core/electric_load.jl @@ -3,12 +3,12 @@ `ElectricLoad` is a required REopt input with the following keys and default values: ```julia loads_kw::Array{<:Real,1} = Real[], - normalize_and_scale_load_profile_input::Bool = false, # Takes loads_kw and normalizes and scales it to annual or monthly energy + normalize_and_scale_load_profile_input::Bool = false, # Takes loads_kw and normalizes and scales it to annual_kwh or monthly_totals_kwh path_to_csv::String = "", # for csv containing loads_kw doe_reference_name::String = "", blended_doe_reference_names::Array{String, 1} = String[], blended_doe_reference_percents::Array{<:Real,1} = Real[], # Values should be between 0-1 and sum to 1.0 - year::Int = doe_reference_name ≠ "" || blended_doe_reference_names ≠ String[] ? 2017 : 2022, # used in ElectricTariff to align rate schedule with weekdays/weekends. DOE CRB profiles must use 2017. If providing load data, specify year of data. + year::Int = doe_reference_name ≠ "" || blended_doe_reference_names ≠ String[] ? 2017 : 2022, # used in ElectricTariff to align rate schedule with weekdays/weekends. DOE CRB profiles defaults to using 2017. If providing load data, specify year of data. city::String = "", annual_kwh::Union{Real, Nothing} = nothing, monthly_totals_kwh::Array{<:Real,1} = Real[],