Skip to content

Commit

Permalink
Name disaggregation methods 'spatial_' and 'temporal_disaggregation'
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaraBuettner committed Oct 30, 2023
1 parent 94acf8d commit cd4405f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions etrago/appl.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,14 +691,14 @@ def run_etrago(args, json_path):
etrago.lopf()

# conduct lopf with full complex timeseries for dispatch disaggregation
etrago.dispatch_disaggregation()
etrago.temporal_disaggregation()

# start power flow based on lopf results
etrago.pf_post_lopf()

# spatial disaggregation
# needs to be adjusted for new sectors
etrago.disaggregation()
etrago.spatial_disaggregation()

# calculate central etrago results
etrago.calc_results()
Expand Down
4 changes: 2 additions & 2 deletions etrago/tools/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,11 +255,11 @@ def __init__(

lopf = lopf

dispatch_disaggregation = dispatch_disaggregation
temporal_disaggregation = dispatch_disaggregation

pf_post_lopf = run_pf_post_lopf

disaggregation = run_disaggregation
spatial_disaggregation = run_disaggregation

calc_results = calc_etrago_results

Expand Down

0 comments on commit cd4405f

Please sign in to comment.