Performance tips
NEMO is designed to provide robust performance for a wide variety of models and scenarios. However, it is certainly possible to build a NEMO model that calculates slowly. Most often, this is due to a long solve time (i.e., the solver takes a long time to find a solution), which in turn is driven by model complexity.
If your model isn't calculating as quickly as you'd like, there are several steps to consider.
Only save the output variables you need. Saving unnecessary variables increases disk operations and may result in a longer solve time (because additional constraints are needed to calculate the variables).
Don't save zeros. If you set the
reportzeros
argument forcalculatescenario
tofalse
(the default), NEMO won't save output variable values that are equal to zero. This can substantially reduce the time and disk space needed to write scenario outputs.Check
restrictvars
. Therestrictvars
argument forcalculatescenario
can have an important effect on performance. This option tells NEMO to make a greater effort to eliminate unnecessary variables from the model it provides to the solver. This filtering process requires a little time, but it can considerably reduce the solver's work load. In general, the trade-off is advisable for large models (you should setrestrictvars
totrue
in these cases) but may not be for very small models (setrestrictvars
tofalse
in these cases).Use parallel processing. NEMO can parallelize certain operations, reducing their run time by spreading the load across multiple processes. To enable parallelization, use the
numprocs
ortargetprocs
argument withcalculatescenario
.numprocs
lets you choose the number of parallel processes to run, while withtargetprocs
you can select specific processes for parallelization by their Julia identifier (see the Julia documentation on distributed computing for more information on process identifiers and initialization). The default value fornumprocs
is 0, which means NEMO will set the number of parallel processes based your computer's hardware. As needed, it will start additional processes for you.Note that
numprocs
andtargetprocs
affect parallelization in NEMO's Julia code, but they don't control what happens with the solver. For maximum performance with large models, it's also helpful to use a solver that supports parallelization, such as CPLEX, Gurobi, or Cbc.Simplify the scenario. Substantial performance gains can be realized by reducing the number of dimensions in a scenario - for example, decreasing the number of regions, technologies, time slices, years, or nodes. You can also speed up calculations by forgoing nodal transmission modeling. Of course, this approach generally requires trade-offs: a simpler model may not respond as well to the analytic questions you are asking. The goal is to find a reasonable balance between your model's realism and its performance.
Relax the transmission simulation. If you're simulating transmission, there are some other performance tuning options to consider beyond reducing your model's dimensions. You can change the simulation method with the
TransmissionModelingEnabled
parameter or use this parameter to model transmission only in selected years. Thecalculatescenario
function also has an argument (continuoustransmission
) that determines whether NEMO uses binary or continuous variables to represent the construction of candidate transmission lines. With binary variables (continuoustransmission = false
) candidate lines may only be built in their entirety, while with continuous variables (continuoustransmission = true
) partial line construction is allowed. Continuous simulations are generally faster but may not be as realistic.Use
CapacityOfOneTechnologyUnit
selectively. This parameter sets the minimum increment for endogenously determined capacity additions for a technology. When it's specified, NEMO uses integer variables to solve for capacity, which increases model solve time. If you don't defineCapacityOfOneTechnologyUnit
, NEMO solves for technology capacity with continuous variables. This approach assumes that any increment of new capacity is permissible (subject to limits on minimum and maximum capacity and capacity investment - seeTotalAnnualMinCapacity
,TotalAnnualMaxCapacity
,TotalAnnualMinCapacityInvestment
, andTotalAnnualMaxCapacityInvestment
).Try a different solver. The open-source solvers delivered with NEMO (GLPK and Cbc) may struggle with sizeable models. If you have access to one of the commercial solvers NEMO supports (currently, CPLEX, Gurobi, Mosek, and Xpress), it will usually be a better option. If you're choosing between Cbc and GLPK, test both of them to see which performs better for your scenario.
Consider calculating selected years rather than all years. Calculating selected years in a scenario is a quick way to get results from complex models, but the results may differ from those you would get if you calculated all years. NEMO uses several methods to reduce the differences - see the documentation on calculating selected years for details.