Skip to content

Commit

Permalink
added HYDRO_SHORT_DURATION flag to inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
filippopecci committed Feb 14, 2024
1 parent 2f7c06c commit 5c4b661
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/load_inputs/load_generators_data.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ function load_generators_data!(setup::Dict, path::AbstractString, inputs_gen::Di

# Set of storage resources with long duration storage capabilitites
inputs_gen["STOR_HYDRO_LONG_DURATION"] = gen_in[(gen_in.LDS.==1) .& (gen_in.HYDRO.==1),:R_ID]
inputs_gen["STOR_HYDRO_SHORT_DURATION"] = gen_in[(gen_in.LDS.==0) .& (gen_in.HYDRO.==1),:R_ID]
inputs_gen["STOR_LONG_DURATION"] = gen_in[(gen_in.LDS.==1) .& (gen_in.STOR.>=1),:R_ID]
inputs_gen["STOR_SHORT_DURATION"] = gen_in[(gen_in.LDS.==0) .& (gen_in.STOR.>=1),:R_ID]

Expand Down

0 comments on commit 5c4b661

Please sign in to comment.