85d01bceb0
for more information, see https://pre-commit.ci
1.8 KiB
1.8 KiB
1 | Unit | Values | Description | |
---|---|---|---|---|
2 | simplify_network | |||
3 | -- to_substations | bool | {'true','false'} | Aggregates all nodes without power injection (positive or negative, i.e. demand or generation) to electrically closest ones |
4 | -- algorithm | str | One of {‘kmeans’, ‘hac’, ‘modularity‘} | |
5 | -- feature | str | Str in the format ‘carrier1+carrier2+...+carrierN-X’, where CarrierI can be from {‘solar’, ‘onwind’, ‘offwind’, ‘ror’} and X is one of {‘cap’, ‘time’}. | |
6 | -- 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. |
7 | cluster_network | |||
8 | -- algorithm | str | One of {‘kmeans’, ‘hac’} | |
9 | -- feature | str | Str in the format ‘carrier1+carrier2+...+carrierN-X’, where CarrierI can be from {‘solar’, ‘onwind’, ‘offwind’, ‘ror’} and X is one of {‘cap’, ‘time’}. | |
10 | -- 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. |
11 | aggregation_strategies | |||
12 | -- generators | |||
13 | -- -- {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. |
14 | -- buses | |||
15 | -- -- {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. |