diff --git a/notebooks/1.3-openTEPES-Running-StepByStep.ipynb b/notebooks/1.3-openTEPES-Running-StepByStep.ipynb index db058b6..0f19416 100644 --- a/notebooks/1.3-openTEPES-Running-StepByStep.ipynb +++ b/notebooks/1.3-openTEPES-Running-StepByStep.ipynb @@ -133,7 +133,12 @@ "\n", "# the empty model object everything is attached to\n", "mTEPES = ConcreteModel(\"openTEPES\")\n", - "mTEPES.pIndSectorDecomposition = 0 # solve the full problem, no sector decomposition" + "\n", + "# solve options that openTEPES_run normally sets on the model; the solve reads them\n", + "mTEPES.pIndSectorDecomposition = 0 # solve the full problem, no sector decomposition\n", + "mTEPES.pIndCompleteProblem = 1 # solve the complete problem, not time Benders decomposition\n", + "mTEPES.pIndSequentialSolving = 1 # solve the stages one after another\n", + "mTEPES.pBdTol = 1e-6 # Benders bound tolerance (unused when solving the complete problem)" ] }, {