Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion notebooks/1.3-openTEPES-Running-StepByStep.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
},
{
Expand Down
Loading