Skip to content

Commit

Permalink
Add heating_cop to BAUInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
zolanaj committed Aug 23, 2023
1 parent 36e555a commit 65ce976
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/bau_inputs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ function BAUInputs(p::REoptInputs)
om_cost_per_kw = Dict(t => 0.0 for t in techs.all)
cop = Dict(t => 0.0 for t in techs.cooling)
thermal_cop = Dict{String, Float64}()
heating_cop = Dict{String, Float64}()
production_factor = DenseAxisArray{Float64}(undef, techs.all, p.time_steps)
tech_renewable_energy_fraction = Dict(t => 0.0 for t in techs.all)
# !!! note: tech_emissions_factors are in lb / kWh of fuel burned (gets multiplied by kWh of fuel burned, not kWh electricity consumption, ergo the use of the HHV instead of fuel slope)
Expand Down Expand Up @@ -209,7 +210,8 @@ function BAUInputs(p::REoptInputs)
tech_emissions_factors_NOx,
tech_emissions_factors_SO2,
tech_emissions_factors_PM25,
p.techs_operating_reserve_req_fraction
p.techs_operating_reserve_req_fraction,
heating_cop
)
end

Expand Down

0 comments on commit 65ce976

Please sign in to comment.