From 0dc42ef359e8ad7c78d6fbfd5187359fd55b3580 Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Thu, 3 Oct 2019 16:21:59 +0200 Subject: [PATCH] add plotting rules note and solver note --- doc/tutorial.rst | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/doc/tutorial.rst b/doc/tutorial.rst index 2247187d..bac4ffe1 100644 --- a/doc/tutorial.rst +++ b/doc/tutorial.rst @@ -72,13 +72,19 @@ For example, we may want to use the ERA-5 dataset for solar and not the default :language: yaml :lines: 48,91-92 -Finally, it is possible to pick a solver. For instance, this tutorial uses the open-source solver Ipopt and does not rely +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: 156-157 +.. note:: + + To run the tutorial, either install CBC and Ipopt (see instructions for :ref:`installation`). + + Alternatively, choose another installed solver in the ``config.yaml`` at ``solving: solver:``. + Note, that we only note major changes to the provided default configuration that is comprehensibly documented in :ref:`config`. There are many more configuration options beyond what is adapted for the tutorial! @@ -252,6 +258,9 @@ the wildcards given in ``scenario`` in the configuration file ``config.yaml`` ar In this example we would not only solve a 6-node model of Germany but also a 2-node model. +How to analyse solved networks? +=============================== + The solved networks can be analysed just like any other PyPSA network (e.g. in Jupyter Notebooks). .. code:: python @@ -262,4 +271,10 @@ The solved networks can be analysed just like any other PyPSA network (e.g. in J ... -For inspiration, read the `examples section in the PyPSA documentation `_. \ No newline at end of file +For inspiration, read the `examples section in the PyPSA documentation `_. + +.. note:: + + There are rules for summaries and plotting available in the repository of PyPSA-Eur. + + They are currently under revision and therefore not yet documented.