From cd4405f5132495e7d0d8e7a51172bab517c5c4b2 Mon Sep 17 00:00:00 2001 From: ClaraBuettner Date: Mon, 30 Oct 2023 10:19:13 +0100 Subject: [PATCH] Name disaggregation methods 'spatial_' and 'temporal_disaggregation' --- etrago/appl.py | 4 ++-- etrago/tools/network.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/etrago/appl.py b/etrago/appl.py index fde0be7a..c3f55a5a 100644 --- a/etrago/appl.py +++ b/etrago/appl.py @@ -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() diff --git a/etrago/tools/network.py b/etrago/tools/network.py index 1dfbb231..de101b08 100644 --- a/etrago/tools/network.py +++ b/etrago/tools/network.py @@ -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