Skip to content

Commit

Permalink
report: EUR/kWh -> ct/kWh
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan.schirmeister committed Nov 20, 2024
1 parent d593930 commit 33b3c6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spice_ev/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def aggregate_timeseries(scenario, gcID):
header = ["timestep", "time"]
# price
if any(scenario.prices[gcID]):
header.append("price [EUR/kWh]")
header.append("price [ct/kWh]")
# grid power
header.append("grid supply [kW]")
# fixed loads
Expand Down Expand Up @@ -768,7 +768,7 @@ def plot(scenario):
prices = list(zip(*scenario.prices.values()))
lines = ax.step(xlabels, prices, where='post')
ax.set_title('Price')
ax.set(ylabel='Price in /kWh')
ax.set(ylabel='Price in ct/kWh')
if len(gc_ids) <= 10:
ax.legend(lines, sorted(gc_ids))

Expand Down

0 comments on commit 33b3c6a

Please sign in to comment.