Skip to content

Commit

Permalink
adjust example to make easier to understand
Browse files Browse the repository at this point in the history
  • Loading branch information
j-brendel committed Nov 1, 2024
1 parent 26036b0 commit 6e86d3a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 17 deletions.
7 changes: 3 additions & 4 deletions data/examples/electrified_stations.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@
"csv_file": "data/examples/price_timeseries_extended.csv", // path to price csv
"start_time": "2022-03-07 00:00:00", // optional: start time as YYYY-MM-DD hh:mm:ss. If not given, use CSV timestamps (first column)
"step_duration_s": 21600, // timestep in seconds, required if start_time is given
"procurement_column": "procurement", // optional: procurement column name in .csv
"commodity_column": "commodity", // optional: commodity column name in .csv
"virtual_column": "virtual", // optional: column name for virtual costs in .csv
"factor": 0.5 // optional: factor to multiply column values, default 1. Simulation expects €/kWh
"procurement_column": "procurement [ct/kWh]", // optional: procurement column name in .csv
"commodity_column": "commodity [ct/kWh]", // optional: commodity column name in .csv
"virtual_column": "virtual [ct/kWh]" // optional: column name for virtual costs in .csv
},
"battery": { // optional: local stationary battery
"charging_curve": [[0,50], [1,50]], // piecewise linear function that maps SoC to power, from 0 to 1, required
Expand Down
22 changes: 11 additions & 11 deletions data/examples/price_timeseries_extended.csv
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
time,procurement,commodity,virtual
2022-03-07 00:00,0.2,0.1,0.0
2022-03-07 06:00,0.4,0.2,0.1
2022-03-07 12:00,0.3,0.1,0.0
2022-03-07 18:00,0.2,0.3,0.0
2022-03-08 00:00,0.1,0.1,0.0
2022-03-08 06:00,0.4,0.2,0.1
2022-03-08 12:00,0.3,0.1,0.0
2022-03-08 18:00,0.5,0.2,0.0
2022-03-09 00:00,0.1,0.1,0.0
2022-03-09 00:06,0.3,0.4,0.0
time,procurement [ct/kWh],commodity [ct/kWh],virtual [ct/kWh]
2022-03-07 00:00,20,10,0.0
2022-03-07 06:00,40,20,0.1
2022-03-07 12:00,30,10,0.0
2022-03-07 18:00,20,30,0.0
2022-03-08 00:00,10,10,0.0
2022-03-08 06:00,40,20,0.1
2022-03-08 12:00,30,10,0.0
2022-03-08 18:00,50,20,0.0
2022-03-09 00:00,10,10,0.0
2022-03-09 06:00,30,40,0.0
4 changes: 2 additions & 2 deletions data/examples/simba.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ strategy_options_opps = {}

# Cost calculation to use. Remove to use default for strategy.
# Options: fixed_wo_plw, fixed_w_plw, variable_wo_plw, variable_w_plw, balanced_market, flex_window
cost_calculation_method_deps = fixed_wo_plw
cost_calculation_method_opps = fixed_wo_plw
cost_calculation_method_deps = variable_wo_plw
cost_calculation_method_opps = variable_wo_plw

##### Physical setup of environment #####
### Parametrization of the physical setup ###
Expand Down

0 comments on commit 6e86d3a

Please sign in to comment.