Skip to content

Commit

Permalink
ensure only capacities between 15 min and 4 hours duration
Browse files Browse the repository at this point in the history
  • Loading branch information
prakaa committed Aug 2, 2024
1 parent 1eb63b7 commit 7645769
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions results/standard_vs_apb_results.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ function merge_summary_data(standard_data_path::String, apb_data_path::String)
df_standard.formulation = fill(key, size(df_standard, 1))
df_apb.formulation = fill(key, size(df_apb, 1))
df_standard_forecast = df_standard[df_standard.data_type.=="forecast", :]
df_standard_forecast = df_standard_forecast[(df_standard_forecast.power_capacity.>=25.0).&(df_standard_forecast.power_capacity.<=400.0), :]
df_apb_forecast = df_apb[df_apb.data_type.=="forecast", :]
df_apb_forecast = df_apb_forecast[(df_apb_forecast.power_capacity.>=25.0).&(df_apb_forecast.power_capacity.<=400.0), :]
merged = innerjoin(
df_standard_forecast,
df_apb_forecast,
Expand Down

0 comments on commit 7645769

Please sign in to comment.