PowNet

A least-cost optimization model for simulating the Unit Commitment and Economic Dispatch of large-scale (regional to country) power systems.
https://github.com/Critical-Infrastructure-Systems-Lab/PowNet

Category: Energy Systems
Sub Category: Energy System Modeling Frameworks

Keywords

dc-flow dispatchable-units economic-dispatch electricity-supply n-1-criterion power-system-analysis python renewable-resources substations transmission unit-commitment water-energy-nexus

Keywords from Contributors

power-systems-analysis thailand

Last synced: about 5 hours ago
JSON representation

Repository metadata

PowNet: Network-constrained Unit Commitment / Economic Dispatch model in Python

README.md

license MIT
CI Tests
Coverage
GitHub Release
Read the Docs
status

PowNet: A Production Cost Modeling Framework for Large-scale Power Systems

PowNet is an open-source production cost model (PCM) framework written in Python, designed to simulate the operational scheduling of large-scale (regional or national) power systems. It determines the least-cost schedule for power generation by solving the unit commitment (UC) and economic dispatch (ED) problems – a process commonly used for applications like day-ahead market simulation. Designed for users focused on power system analysis rather than complex model development, PowNet uses simple spreadsheet files for data inputs, significantly simplifying model setup and modification. As for advanced users, the framework's modular design provides modeling flexibility to implement customized analysis or explore complex modeling algorithms.

Key functionalities

  • Models power systems including generator techno-economic constraints and network limits
  • Uses computationally efficient linearized DC power flow for network analysis
  • Supports variable renewable energy (VRE) sources, such as hydro, wind, and solar
  • Built for computational speed using the high-performance Gurobipy modeling framework with support for the open-source HiGHS solver
  • Includes features allowing the analysis of water-energy nexus impacts (e.g., drought effects on thermal units)

PowNet enables analysts to readily study grid operations, VRE integration, and water-energy interactions in a low-code environment. For advanced users, it retains the flexibility needed to explore complex model configurations and research modeling algorithms.

Read the Documentation for more information at https://pownet.readthedocs.io/en/latest.

Using PowNet

To use PowNet, a user needs to supply it with CSV files. For guidance on creating these CSV files, please see examples provided here. Please ensure that column names matches with those from the examples. Details on preparing some input files can be found here.

As for installing PowNet, there are multiple options depending on whether we want to modify the source code. However, the following step is highly recommended for any user: creating a virtual environment to manage dependencies. If using Conda, we can create an envrionment with the following command

conda create --name your_env_name_here
conda activate your_env_name_here

If deciding on a name for the environment takes too long, please feel free to name the environment as "pownet".

Option 1: Regular user

A regular user is someone who has created their input files and wish to just run PowNet. In this case, it is best to simply install PowNet as a package from PyPI. We can achieve this with the following command:

pip install pownet

Once the package has been installed, we can now go to our working directory. In this example, we assume the following folder structure:

working_directory/
├── scripts/
│   └── run_quickstart.py
├── model_library/
│   └── dummy/
│       ├── demand_export.csv
│       ├── thermal_unit.csv
│       ├── nondispatch_unit.csv
│       ├── hydropower.csv
│       ├── import.csv
│       ├── contract_cost.csv
│       └── transmission.csv
└── outputs/

A tutorial "quickstart.py" provides an example on running a simulation, saving the simulation outputs, and visualizing the outputs.

Option 2: Power user (no pun intended)

In case we wish to modify the source code, PowNet should be installed as an editable package. First, download or clone the PowNet repository to your local machine. For example: if we want to clone to "C://user/pownet",

git clone https://github.com/your-username/pownet.git C://user/pownet

Next, open a terminal and navigate to the directory where we cloned the repository:

cd C://user/pownet

Now, we can install this PowNet package using pip, which is a manager for Python packages:

pip install -e .

This command installs the package in "editable" mode (-e) using pyproject.toml that is located in the root directory of PowNet. The editable mode allows us to edit PowNet codebase when we need to modify or implement new features. The pyproject.toml file specifies the dependencies required to run PowNet.

Overview of PowNet

overview_pownet


Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 3 days ago

Total Commits: 679
Total Committers: 9
Avg Commits per committer: 75.444
Development Distribution Score (DDS): 0.194

Commits in past year: 286
Committers in past year: 6
Avg Commits per committer in past year: 47.667
Development Distribution Score (DDS) in past year: 0.091

Name Email Commits
Dae 6****p 547
AFM Kamal Chowdhury a****y@u****u 65
ngjiayi93 n****3@h****m 28
Hisham Eldardiry 3****y 23
Stefano Galelli g****i@c****u 8
Jerry Zhuoer Feng z****5@c****u 4
stefano-galelli s****i@s****g 2
Matija Pavičević m****c@g****m 1
Greg Thomsen g****n@g****m 1

Committer domains:


Issue and Pull Request metadata

Last synced: 1 day ago

Total issues: 11
Total pull requests: 4
Average time to close issues: about 1 month
Average time to close pull requests: about 7 hours
Total issue authors: 5
Total pull request authors: 3
Average comments per issue: 1.55
Average comments per pull request: 0.5
Merged pull request: 4
Bot issues: 0
Bot pull requests: 0

Past year issues: 7
Past year pull requests: 4
Past year average time to close issues: about 2 months
Past year average time to close pull requests: about 7 hours
Past year issue authors: 3
Past year pull request authors: 3
Past year average comments per issue: 1.57
Past year average comments per pull request: 0.5
Past year merged pull request: 4
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/Critical-Infrastructure-Systems-Lab/PowNet

Top Issue Authors

  • phumthep (3)
  • ngjiayi93 (3)
  • ijbd (3)
  • Mostafa494 (1)
  • AdamRJensen (1)

Top Pull Request Authors

  • Jerry-Zhuoer-Feng (2)
  • gthomsen (1)
  • HishamEldardiry (1)

Top Issue Labels

  • enhancement (4)
  • documentation (3)
  • bug (2)
  • question (2)
  • help wanted (2)
  • good first issue (2)
  • refactoring (1)

Top Pull Request Labels


Package metadata

pypi.org: pownet

A simple production cost model of framework for power systems

  • Homepage: https://github.com/Critical-Infrastructure-Systems-Lab/PowNet
  • Documentation: https://pownet.readthedocs.io/en/latest/index.html
  • Licenses: MIT License Copyright (c) 2024 Phumthep Bunnak Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  • Latest release: 2.3.0 (published 26 days ago)
  • Last Synced: 2025-06-27T20:32:12.581Z (1 day ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 94 Last month
  • Rankings:
    • Dependent packages count: 9.699%
    • Average: 32.154%
    • Dependent repos count: 54.609%
  • Maintainers (1)

Dependencies

pyproject.toml pypi
  • gurobipy >= 10.0.3
  • highs >= 1.6.0
  • matplotlib >= 3.7.1
  • mplcursors >= 0.5.1
  • networkx >= 3.1.0
  • numpy >= 1.24.3
  • pandas >= 1.5.3
  • pyomo >= 6.5.0
docs/requirements.txt pypi
  • sphinx >=4.3.0
  • sphinx-rtd-theme >=0.5.1
  • sphinx-toolbox >=v0.8.0

Score: 11.205448765190267