adapt configuration options

This commit is contained in:
martacki 2021-06-01 12:02:43 +02:00
parent 9825fa32b2
commit cec9dcc41c
3 changed files with 12 additions and 9 deletions

View File

@ -0,0 +1,3 @@
,Unit,Values,Description
simplify,,,
-- to_substations,bool,"{'true','false'}","Aggregates all nodes without power injection (positive or negative, i.e. demand or generation) to electrically closest ones"
1 Unit Values Description
2 simplify
3 -- to_substations bool {'true','false'} Aggregates all nodes without power injection (positive or negative, i.e. demand or generation) to electrically closest ones

View File

@ -256,7 +256,7 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia
.. literalinclude:: ../config.default.yaml
:language: yaml
:lines: 192-202
:lines: 208-217
.. csv-table::
:header-rows: 1
@ -268,7 +268,7 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia
.. literalinclude:: ../config.default.yaml
:language: yaml
:lines: 192,203-219
:lines: 218-227
.. csv-table::
:header-rows: 1
@ -282,7 +282,7 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia
.. literalinclude:: ../config.default.yaml
:language: yaml
:lines: 221-299
:lines: 236-314
.. csv-table::
:header-rows: 1

View File

@ -53,41 +53,41 @@ Likewise, the example's temporal scope can be restricted (e.g. to a single month
.. literalinclude:: ../config.tutorial.yaml
:language: yaml
:lines: 22-25
:lines: 24-27
It is also possible to allow less or more carbon-dioxide emissions. Here, we limit the emissions of Germany 100 Megatonnes per year.
.. literalinclude:: ../config.tutorial.yaml
:language: yaml
:lines: 36,38
:lines: 38,40
PyPSA-Eur also includes a database of existing conventional powerplants.
We can select which types of powerplants we like to be included with fixed capacities:
.. literalinclude:: ../config.tutorial.yaml
:language: yaml
:lines: 36,52
:lines: 38,54
To accurately model the temporal and spatial availability of renewables such as wind and solar energy, we rely on historical weather data.
It is advisable to adapt the required range of coordinates to the selection of countries.
.. literalinclude:: ../config.tutorial.yaml
:language: yaml
:lines: 54-62
:lines: 56-63
We can also decide which weather data source should be used to calculate potentials and capacity factor time-series for each carrier.
For example, we may want to use the ERA-5 dataset for solar and not the default SARAH-2 dataset.
.. literalinclude:: ../config.tutorial.yaml
:language: yaml
:lines: 64,107-108
:lines: 65,108-109
Finally, it is possible to pick a solver. For instance, this tutorial uses the open-source solvers CBC and Ipopt and does not rely
on the commercial solvers Gurobi or CPLEX (for which free academic licenses are available).
.. literalinclude:: ../config.tutorial.yaml
:language: yaml
:lines: 170,180-181
:lines: 171,181-182
.. note::