Skip to content

Commit

Permalink
fix unit conversion of om_cost_per_kw
Browse files Browse the repository at this point in the history
  • Loading branch information
zolanaj committed Aug 25, 2023
1 parent d38b2ae commit 8575711
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/electric_heater.jl
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,15 @@ function ElectricHeater(;
macrs_option_years::Int = 0, # MACRS schedule for financial analysis. Set to zero to disable
macrs_bonus_fraction::Real = 0.0, # Fraction of upfront project costs to depreciate under MACRS
can_supply_steam_turbine::Union{Bool, nothing} = nothing # If the boiler can supply steam to the steam turbine for electric production
heating_cop::Union{Real, nothing} = nothing # COP of the heating (i.e., thermal produced / electricity consumed)
)
```
"""
function ElectricHeater(;
min_mmbtu_per_hour::Real = 0.0,
max_mmbtu_per_hour::Real = BIG_NUMBER,
installed_cost_per_mmbtu_per_hour::Union{Real, Nothing} = nothing,
om_cost_per_kw::Union{Real, Nothing} = nothing,
om_cost_per_mmbtu_per_hour::Union{Real, Nothing} = nothing,
macrs_option_years::Int = 0,
macrs_bonus_fraction::Real = 0.0,
can_supply_steam_turbine::Union{Bool, Nothing} = nothing,
Expand Down

0 comments on commit 8575711

Please sign in to comment.