GenX is a highly-configurable, open source electricity resource capacity expansion model that incorporates several state-of-the-art practices in electricity system planning to offer improved decision support for a changing electricity landscape.
The model was originally developed by Jesse D. Jenkins and Nestor A. Sepulveda at the Massachusetts Institute of Technology and is now jointly maintained by a team of contributors at the MIT Energy Initiative (led by Dharik Mallapragada) and the Princeton University ZERO Lab (led by Jenkins).
GenX is a constrained linear or mixed integer linear optimization model that determines the portfolio of electricity generation, storage, transmission, and demand-side resource investments and operational decisions to meet electricity demand in one or more future planning years at lowest cost, while subject to a variety of power system operational constraints, resource availability limits, and other imposed environmental, market design, and policy constraints.
GenX features a modular and transparent code structure developed in Julia + JuMP. The model is designed to be highly flexible and configurable for use in a variety of applications from academic research and technology evaluation to public policy and regulatory analysis and resource planning. Depending on the planning problem or question to be studied, GenX can be configured with varying levels of model resolution and scope, with regards to: (1) temporal resolution of time series data such as electricity demand and renewable energy availability; (2) power system operational detail and unit commitment constraints; and (3) geospatial resolution and transmission network representation. The model is also capable of representing a full range of conventional and novel electricity resources, including thermal generators, variable renewable resources (wind and solar), run-of-river, reservoir and pumped-storage hydroelectric generators, energy storage devices, demand-side flexibility, demand response, and several advanced technologies such as long-duration energy storage.
The 'main' branch is the current master branch of GenX. The various subdirectories are described below:
-
src/
Contains the core GenX model code for reading inputs, model generation, solving and writing model outputs. -
Example_Systems/
Contains fully specified examples that users can use to test GenX and get familiar with its various features. Within this folder, we have two sets of examples:
RealSystemExample/
, a detailed system representation based on ISO New England and including many different resources (upto 58)SmallNewEngland/
, a simplified system consisting of 4 different resources per zone.
-
docs/
Contains all the documentation pertaining to the model. -
GenXJulEnv
Contains the .toml files related to setting up the Julia environment with all the specified package versions injulenv.jl
.
GenX currently exists in version 0.1.0 and runs only on Julia v1.6.x and v1.5.x series, where x>=0 and a minimum version of JuMP v0.21.x. There is also an older version of GenX, which is also currently maintained and runs on Julia 1.3.x and 1.4.x series (For those users who has previously cloned GenX, and has been running it successfully so far, and therefore might be unwilling to run it on the latest version of Julia: please look into the GitHub branch, old_version). It is currently setup to use one of the following open-source freely available solvers: A) Clp for linear programming (LP) problems and (B) Cbc for mixed integer linear programming (MILP) problems. We also provide the option to use one of these two commercial solvers: C) Gurobi, and D) CPLEX. Note that using Gurobi and CPLEX requires a valid license on the host machine. There are two ways to run GenX with either type of solver options (open-source free or, licensed commercial) as detailed in the section, Running an Instance of GenX
.
The file julenv.jl
in the parent directory lists all of the packages and their versions needed to run GenX. You can see all of the packages installed in your Julia environment and their version numbers by running pkg> status
on the package manager command line in the Jula REPL.
Detailed documentation for GenX can be found here. It includes details of each of GenX's methods, required and optional input files, and outputs. Interested users may also want to browse through prior publications that have used GenX to understand the various features of the tool. Full publication list is available here.
Download or clone the GenX repository on your machine in a directory named 'GenX'. Create this new directory in a location where you wish to store the GenXJulEnv environment.
The Run.jl file in each of the example sub-folders within Example_Systems/
provides an example of how to use GenX.jl for capacity expansion modeling. The following are the main steps performed in the Run.jl script:
- Establish path to environment setup files and GenX source files.
- Read in model settings
GenX_Settings.yml
from the example directory. - Configure solver settings.
- Load the model inputs from the example directory and perform time-domain clustering if required.
- Generate a GenX model instance.
- Solve the model.
- Write the output files to a specified directory.
Here are step-by-step instructions for running Run.jl, following the two slightly different methods:
- Start an instance of the Julia kernel from inside the GenX/ folder (which corresponds to the GenX repo, that you've just cloned) by typing
julia --project="GenX"
. - Go to the package prompt by typing
]
. You will see that you're already within the(GenX)
environment. Typeactivate .
to activate the dependecnies in the environment. - If it's your first time running GenX (or, if you have pulled after some major upgrades/release/version) run
instantiate
from the(GenX) pkg
prompt. - In order to make sure that the dependecies have been installed, type
st
in the package prompt.
Execution of the entire sequence of the four steps above should look like the figure below:
Figure.Creating the Julia environment and installing dependencies from Project.toml file from inside the GenX folder: Steps 1-4
- Type the back key to come back to the
julia>
prompt. - Run the script by executing the command
julia> include(“<path to your case>/Run.jl”)
. For example, in order to run the ISONE_Singlezone case within the Example_Systems/RealSystemExample/, typeinclude("Example_Systems/RealSystemExample/ISONE_Singlezone/Run.jl")
from thejulia>
prompt (while being still in the GenX i.e. the root level in the folder hierarchy)
Execution of the steps 5 and 6 above should look like the figure below:
Figure.Creating the Julia environment and installing dependencies from Project.toml file from inside the GenX folder: Steps 5-6
- After the script runs to completion, results will be written to a folder called “Results”, also located in the same directory as
Run.jl
.
If however, the user opens a julia kernel, while not yet inside the GenX folder, it's still possible to reach to the GenX folder while being inside the Julia REPL by executing the pwd()
command first to check where on the directory structure the user is currently, and then by executing the cd(<path to GenX>)
command. Afterwards, the steps are the same as above. This is shown in the three figures below:
Figure.Creating the Julia environment and installing dependencies from Project.toml file from inside the GenX folder: Changing path to GenX
Figure.Creating the Julia environment and installing dependencies from Project.toml file from inside the GenX folder: Steps 1-4
Figure.Creating the Julia environment and installing dependencies from Project.toml file from inside the GenX folder: Steps 5-6
Method 2: Creating the Julia environment and installing the dependencies by building the Project.toml files by running activation script
- Start an instance of the Julia kernel.
- Make your present working directory to be where the Run.jl is located. To do this, you can use the Julia command
julia> cd(“/path/to/directory/containing/file)
, using the actual pathname of the directory containing Run.jl. Note that all your inputs files should be in this directory in addition to Run.jl. Details about the required input files can be found in the documentation linked above or in the examples provided in the folderExample_Systems/
. You can check your present working directory by running the commandjulia> pwd()
. - Uncomment the following lines of code at the beginning of the
Run.jl
file (which is currently commented out):environment_path = "../../../package_activate.jl"
include(environment_path)
- Run the script by executing the command
julia> include(“Run.jl”)
. - After the script runs to completion, results will be written to a folder called “Results”, also located in the same directory as
Run.jl
.
Note that if you have not already installed the required Julia packages, you are using a version of JuMP other than v0.21.4, or you do not have a valid Gurobi license on your host machine, you will receive an error message and Run.jl will not run to completion.
If you want to use either of Gurobi or CPLEX solvers, instead or Clp or Cbc do the following:
- Uncomment the relevant lines in the
[deps]
and[compat]
in the Project.toml file within GenX/ folder - Uncomment the relevent
using Gurobi
and/orusing CPLEX
at the beginning of theGenX.jl
file - Set the appropriate solver in the
genx_settings.yml
file - Make sure you have a valid license and the actual solvers for either of Gurobi or CPLEX installed on your machine
Note that if you have not already installed the required Julia packages, you are using a version of JuMP other than v0.21.4, or you do not have a valid Gurobi license on your host machine, you will receive an error message and Run.jl will not run to completion.
GenX includes a modeling to generate alternatives (MGA) package that can be used to automatically enumerate a diverse set of near cost-optimal solutions to electricity system planning problems. To use the MGA algorithm, user will need to perform the following tasks:
- Add a
Resource_Type
column in theGenerators_data.csv
file denoting the type of each technology. - Add a
MGA
column in theGenerators_data.csv
file denoting the availability of the technology. - Set the
ModelingToGenerateAlternatives
flag in theGenX_Settings.yml
file to 1. - Set the
ModelingtoGenerateAlternativeSlack
flag in theGenX_Settings.yml
file to the desirable level of slack. - Create a
Rand_mga_objective_coefficients.csv
file to provide random objective function coefficients for each MGA iteration. For each iteration, number of rows in theRand_mga_objective_coefficients.csv
file represents the number of distinct technology types while number of columns represent the number of model zones. - Solve the model using
Run.jl
file.
Results from the MGA algorithm would be saved in MGA_max
and MGA_min
folders in the Example_Systems/
folder.
Python users can now run GenX from a thin-python-wrapper interface, developed by Daniel Olsen. This tool is called pygenx
and can be cloned from the github page: pygenx. It needs installation of Julia 1.3 and a clone of GenX repo along with your python installation.
If you would like to report a bug in the code or request a feature, please use our Issue Tracker. If you're unsure or have questions on how to use GenX that are not addressed by the above documentation, please reach out to Sambuddha Chakrabarti ([email protected]), Jesse Jenkins ([email protected]) or Dharik Mallapragada ([email protected]).
GenX has been developed jointly by researchers at the MIT Energy Initiative and the ZERO lab at Princeton University. Key contributors include Nestor A. Sepulveda, Jesse D. Jenkins, Dharik S. Mallapragada, Aaron M. Schwartz, Neha S. Patankar, Qingyu Xu, Jack Morris, Sambuddha Chakrabarti.