Rule add_extra_components¶
Workflow Diagram
See the complete workflow in the repository.
digraph snakemake_dag { graph [bgcolor=white, margin=0, size="8,5" ]; node [fontname=sans, fontsize=10, penwidth=2, shape=box, style=rounded ]; edge [color=grey, penwidth=2 ]; 1 [color="0.56 0.6 0.85", label=prepare_network]; 2 [color="0.47 0.6 0.85", fillcolor=gray, label=add_extra_components, style=filled]; 2 -> 1; 3 [color="0.03 0.6 0.85", label=cluster_network]; 3 -> 2; }
Script Documentation¶
Adds extra extendable components to the clustered and simplified network.
Relevant Settings¶
.. code:: yaml
sector:
transmission_efficiency:
.. seealso::
Documentation of the configuration file config.yaml at :ref:sector_cf
Inputs¶
resources/costs.csv: The database of cost assumptions for all included technologies for specific years from various sources; e.g. discount rate, lifetime, investment (CAPEX), fixed operation and maintenance (FOM), variable operation and maintenance (VOM), fuel costs, efficiency, carbon-dioxide intensity.
Outputs¶
networks/elec_s{simpl}_{clusters}_ec.nc:
Description¶
The rule :mod:add_extra_components attaches additional extendable components to the clustered and simplified network. These can be configured in the config.yaml at electricity: extendable_carriers:. It processes networks/elec_s{simpl}_{clusters}.nc to build networks/elec_s{simpl}_{clusters}_ec.nc, which in contrast to the former (depending on the configuration) contain with zero initial capacity
-
StorageUnitsof carrier 'H2' and/or 'battery'. If this option is chosen, every bus is given an extendableStorageUnitof the corresponding carrier. The energy and power capacities are linked through a parameter that specifies the energy capacity as maximum hours at full dispatch power and is configured inelectricity: max_hours:. This linkage leads to one investment variable per storage unit. The defaultmax_hourslead to long-term hydrogen and short-term battery storage units. -
Storesof carrier 'H2' and/or 'battery' in combination withLinks. If this option is chosen, the script adds extra buses with corresponding carrier where energyStoresare attached and which are connected to the corresponding power buses via two links, one each for charging and discharging. This leads to three investment variables for the energy capacity, charging and discharging capacity of the storage unit.