Skip to content

Commit

Permalink
Add ToDo for how function could be improved
Browse files Browse the repository at this point in the history
  • Loading branch information
birgits committed Feb 16, 2024
1 parent 85b49f4 commit 9e0d85d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion edisgo/tools/temporal_complexity_reduction.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ def _scored_most_critical_loading(
one component is maximally overloaded, and is sorted descending order.
"""

# ToDo The relative loading is used in this function to determine most critical
# time steps. While this makes sense to determine which lines are overloaded, it
# is not the best indicator for the weighting as it does not convey the number
# of additional lines needed to solve a problem. For that the number of parallel
# standard lines and transformers needed would be better. However, for now
# using the relative overloading as an estimation is okay.
# Get current relative to allowed current
relative_i_res = check_tech_constraints.components_relative_load(edisgo_obj)

Expand Down

0 comments on commit 9e0d85d

Please sign in to comment.