Skip to content

Commit

Permalink
Fix unit
Browse files Browse the repository at this point in the history
  • Loading branch information
birgits committed Sep 11, 2024
1 parent 49f23ed commit 28e2216
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions etrago/analyze/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1595,7 +1595,7 @@ def calc_ac_loading(network, timesteps):
Returns
-------
pandas.Series
AC line loading in MVA
AC line loading in MVA/MVA
"""

Expand Down Expand Up @@ -1631,7 +1631,7 @@ def calc_ac_max_loading(network, timesteps):
Returns
-------
pandas.Series
AC line loading in MVA
AC line loading in MVA/MVA
"""

Expand Down Expand Up @@ -1663,7 +1663,7 @@ def calc_dc_loading(network, timesteps):
Returns
-------
pandas.Series
DC line loading in MW
DC line loading in MW/MW
"""
dc_links = network.links.loc[network.links.carrier == "DC", :]
Expand Down Expand Up @@ -1703,7 +1703,7 @@ def calc_dc_max_loading(network, timesteps):
Returns
-------
pandas.Series
DC line loading in MW
DC line loading in MW/MW
"""
dc_links = network.links.loc[network.links.carrier == "DC", :]
Expand Down

0 comments on commit 28e2216

Please sign in to comment.