Skip to content

Commit

Permalink
Messages for further work
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-e-bernal committed Feb 5, 2025
1 parent 8c60ad2 commit 3776b03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/reopt_inputs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ function setup_wind_inputs(s::AbstractScenario, max_sizes, min_sizes, existing_s
max_sizes["Wind"] = s.wind.max_kw
min_sizes["Wind"] = s.wind.min_kw
existing_sizes["Wind"] = 0.0

""" This needs more editing"""
if !(s.site.land_acres === nothing) # Limit based on available land
land_max_kw = s.site.land_acres / s.wind.acres_per_kw
if land_max_kw < 1500 # turbines less than 1.5 MW aren't subject to the acres/kW limit
Expand Down
4 changes: 2 additions & 2 deletions src/core/wind.jl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ struct Wind <: AbstractTech
can_export_beyond_nem_limit::Bool
can_curtail::Bool
operating_reserve_required_fraction::Real

"""Still needs to undergo more work"""
function Wind(;
off_grid_flag::Bool = false,
min_kw = 0.0,
Expand Down Expand Up @@ -168,7 +168,7 @@ struct Wind <: AbstractTech
size_class = "Bespoke 6 MW 196"
end
elseif !(size_class in keys(size_class_to_hub_height))
throw(@error("Wind size_class must be one of $(keys(size_class_to_hub_height))"))
#throw(@error("Wind size_class must be one of $(keys(size_class_to_hub_height))"))
throw(@error("Wind size_class must be one of $(keys(size_class_to_hub_height))"))
end

Expand Down

0 comments on commit 3776b03

Please sign in to comment.