013b705ee4
* Cluster first: build renewable profiles and add all assets after clustering * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * correction: pass landfall_lengths through functions * assign landfall_lenghts correctly * remove parameter add_land_use_constraint * fix network_dict * calculate distance to shoreline, remove underwater_fraction * adjust simplification parameter to exclude Crete from offshore wind connections * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * remove unused geth2015 hydro capacities * removing remaining traces of {simpl} wildcard * add release notes and update workflow graphics * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: lisazeyen <lisa.zeyen@web.de>
2.6 KiB
2.6 KiB
1 | Unit | Values | Description | |
---|---|---|---|---|
2 | focus_weights | Optionally specify the focus weights for the clustering of countries. For instance: `DE: 0.8` will distribute 80% of all nodes to Germany and 20% to the rest of the countries. | ||
3 | simplify_network | |||
4 | -- to_substations | bool | {'true','false'} | Aggregates all nodes without power injection (positive or negative, i.e. demand or generation) to electrically closest ones |
5 | -- exclude_carriers | list | List of Str like [ 'solar', 'onwind'] or empy list [] | List of carriers which will not be aggregated. If empty, all carriers will be aggregated. |
6 | -- remove stubs | bool | {'true','false'} | Controls whether radial parts of the network should be recursively aggregated. Defaults to true. |
7 | -- remove_stubs_across_borders | bool | {'true','false'} | Controls whether radial parts of the network should be recursively aggregated across borders. Defaults to true. |
8 | cluster_network | |||
9 | -- algorithm | str | One of {‘kmeans’, ‘hac’} | |
10 | -- hac_features | list | List of meteorological variables contained in the weather data cutout that should be considered for hierarchical clustering. | |
11 | exclude_carriers | list | List of Str like [ 'solar', 'onwind'] or empy list [] | List of carriers which will not be aggregated. If empty, all carriers will be aggregated. |
12 | consider_efficiency_classes | bool | {'true','false'} | Aggregated each carriers into the top 10-quantile (high), the bottom 90-quantile (low), and everything in between (medium). |
13 | aggregation_strategies | |||
14 | -- generators | |||
15 | -- -- {key} | str | {key} can be any of the component of the generator (str). It’s value can be any that can be converted to pandas.Series using getattr(). For example one of {min, max, sum}. | Aggregates the component according to the given strategy. For example, if sum, then all values within each cluster are summed to represent the new generator. |
16 | -- buses | |||
17 | -- -- {key} | str | {key} can be any of the component of the bus (str). It’s value can be any that can be converted to pandas.Series using getattr(). For example one of {min, max, sum}. | Aggregates the component according to the given strategy. For example, if sum, then all values within each cluster are summed to represent the new bus. |
18 | temporal | Options for temporal resolution | ||
19 | -- resolution_elec | -- | {false,``nH``; i.e. ``2H``-``6H``} | Resample the time-resolution by averaging over every ``n`` snapshots in :mod:`prepare_network`. **Warning:** This option should currently only be used with electricity-only networks, not for sector-coupled networks. |
20 | -- resolution_sector | -- | {false,``nH``; i.e. ``2H``-``6H``} | Resample the time-resolution by averaging over every ``n`` snapshots in :mod:`prepare_sector_network`. |