clustering strats to configurables: documentation and testing
This commit is contained in:
parent
e004b27f40
commit
8dba48c412
@ -1,3 +1,8 @@
|
|||||||
,Unit,Values,Description
|
,Unit,Values,Description
|
||||||
simplify,,,
|
simplify,,,
|
||||||
-- to_substations,bool,"{'true','false'}","Aggregates all nodes without power injection (positive or negative, i.e. demand or generation) to electrically closest ones"
|
-- to_substations,bool,"{'true','false'}","Aggregates all nodes without power injection (positive or negative, i.e. demand or generation) to electrically closest ones"
|
||||||
|
-- aggregation_strategies,,,
|
||||||
|
-- -- generators,,,
|
||||||
|
-- -- -- {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."
|
||||||
|
-- -- buses,,,
|
||||||
|
-- -- -- {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."
|
||||||
|
|
@ -74,6 +74,7 @@ Upcoming Release
|
|||||||
|
|
||||||
* Update rasterio version to correctly calculate exclusion raster
|
* Update rasterio version to correctly calculate exclusion raster
|
||||||
|
|
||||||
|
* Clustering strategies for generators and buses have moved from distinct scripts to configurables to unify the process and make it more transparent.
|
||||||
|
|
||||||
PyPSA-Eur 0.4.0 (22th September 2021)
|
PyPSA-Eur 0.4.0 (22th September 2021)
|
||||||
=====================================
|
=====================================
|
||||||
|
@ -21,6 +21,15 @@ countries: ['BE']
|
|||||||
clustering:
|
clustering:
|
||||||
simplify:
|
simplify:
|
||||||
to_substations: false # network is simplified to nodes with positive or negative power injection (i.e. substations or offwind connections)
|
to_substations: false # network is simplified to nodes with positive or negative power injection (i.e. substations or offwind connections)
|
||||||
|
aggregation_strategies:
|
||||||
|
generators:
|
||||||
|
p_nom_max: sum # use "min" for more conservative assumptions
|
||||||
|
p_nom_min: sum
|
||||||
|
p_min_pu: mean
|
||||||
|
marginal_cost: mean
|
||||||
|
committable: any
|
||||||
|
ramp_limit_up: max
|
||||||
|
ramp_limit_down: max
|
||||||
|
|
||||||
snapshots:
|
snapshots:
|
||||||
start: "2013-03-01"
|
start: "2013-03-01"
|
||||||
|
Loading…
Reference in New Issue
Block a user