Skip to content

Commit

Permalink
add reference temps to ASHP object for defaults updates
Browse files Browse the repository at this point in the history
  • Loading branch information
zolanaj committed Sep 25, 2024
1 parent af19daf commit 0cf2c1e
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions src/core/ashp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ struct ASHP <: AbstractThermalTech
max_ton::Real
installed_cost_per_ton::Real
om_cost_per_ton::Real
heating_cop_reference::Array{<:Real,1}
heating_cf_reference::Array{<:Real,1}
heating_reference_temps_degF::Array{<:Real,1}
cooling_cop_reference::Array{<:Real,1}
cooling_cf_reference::Array{<:Real,1}
cooling_reference_temps_degF::Array{<:Real,1}
end


Expand Down Expand Up @@ -242,7 +248,13 @@ function ASHPSpaceHeater(;
avoided_capex_by_ashp_present_value,
max_ton,
installed_cost_per_ton,
om_cost_per_ton
om_cost_per_ton,
heating_cop_reference,
heating_cf_reference,
heating_reference_temps_degF,
cooling_cop_reference,
cooling_cf_reference,
cooling_reference_temps_degF
)
end

Expand Down Expand Up @@ -390,7 +402,13 @@ function ASHPWaterHeater(;
avoided_capex_by_ashp_present_value,
max_ton,
installed_cost_per_ton,
om_cost_per_ton
om_cost_per_ton,
heating_cop_reference,
heating_cf_reference,
heating_reference_temps_degF,
Real[],
Real[],
Real[]
)
end

Expand Down

0 comments on commit 0cf2c1e

Please sign in to comment.