Name | pownet JSON |
Version |
2.2.0
JSON |
| download |
home_page | None |
Summary | A simple production cost model of framework for power systems |
upload_time | 2025-01-28 21:13:49 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | 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.
|
keywords |
power_system
optimization
production_cost_model
unit_commitment
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|

[](https://github.com/Critical-Infrastructure-Systems-Lab/PowNet/actions)
[](https://github.com/Critical-Infrastructure-Systems-Lab/PowNet/releases/tag/v2.0)
[](https://pownet.readthedocs.io/en/latest/)
# PowNet: Unit Commitment / Economic Dispatch model in Python
PowNet is a least-cost optimization model for simulating the Unit Commitment and Economic Dispatch (UC/ED) of large-scale (regional to country) power systems. In PowNet, a power system is represented by a set of nodes that include power plants, high-voltage substations, and import/export stations (for cross-border systems). The model schedules and dispatches the electricity supply from power plant units to meet hourly electricity demand in substations at a minimum cost. It considers the techno-economic constraints of both generating units and high-voltage transmission network. The power flow calculation is based on a Direct Current (DC) network (with N-1 criterion), which provides a reasonable balance between modelling accuracy and data and computational requirements. PowNet can easily integrate information about variable renewable resources (e.g., hydro, wind, solar) into the UC/ED process. For example, it can be linked with models that estimate the electricity supply available from renewable resources as a function of the climatic conditions. In addition, PowNet has provision to account for the effect of droughts on the generation of dispatchable thermal units (e.g., coal, oil, gas-fired units) that depend on freshwater availability. These features facilitate the application of PowNet to problems in the water-energy nexus domain that investigate the impact of water availability on electricity supply and demand.
Read the PowNet Documentation here: https://pownet.readthedocs.io/en/latest
## Installation
Download or clone the PowNet 2.0 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 you cloned the repository:
```
cd C://user/pownet
```
The following step is highly recommended: creating a virtual environment to manage dependencies. If using Conda, you can create an envrionment named "pownet":
```
conda create --name pownet
conda activate pownet
```
Now, you 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 you to edit PowNet codebase when you need to modify or implement new features. The pyproject.toml file specifies the dependencies required to run PowNet.
A quick start tutorial to run a simple case study is provided here: https://pownet.readthedocs.io/en/latest/pages/quickstarter.html
## Overview of PowNet

Raw data
{
"_id": null,
"home_page": null,
"name": "pownet",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "power_system, optimization, production_cost_model, unit_commitment",
"author": null,
"author_email": "Phumthep Bunnak <pb585@cornell.edu>",
"download_url": "https://files.pythonhosted.org/packages/63/4c/b030cb69cce25c2bf624a35e3ce10a66c064b2b1ee12fbfad07afb2dcbaa/pownet-2.2.0.tar.gz",
"platform": null,
"description": "\r\n[](https://github.com/Critical-Infrastructure-Systems-Lab/PowNet/actions)\r\n[](https://github.com/Critical-Infrastructure-Systems-Lab/PowNet/releases/tag/v2.0)\r\n[](https://pownet.readthedocs.io/en/latest/)\r\n\r\n# PowNet: Unit Commitment / Economic Dispatch model in Python\r\nPowNet is a least-cost optimization model for simulating the Unit Commitment and Economic Dispatch (UC/ED) of large-scale (regional to country) power systems. In PowNet, a power system is represented by a set of nodes that include power plants, high-voltage substations, and import/export stations (for cross-border systems). The model schedules and dispatches the electricity supply from power plant units to meet hourly electricity demand in substations at a minimum cost. It considers the techno-economic constraints of both generating units and high-voltage transmission network. The power flow calculation is based on a Direct Current (DC) network (with N-1 criterion), which provides a reasonable balance between modelling accuracy and data and computational requirements. PowNet can easily integrate information about variable renewable resources (e.g., hydro, wind, solar) into the UC/ED process. For example, it can be linked with models that estimate the electricity supply available from renewable resources as a function of the climatic conditions. In addition, PowNet has provision to account for the effect of droughts on the generation of dispatchable thermal units (e.g., coal, oil, gas-fired units) that depend on freshwater availability. These features facilitate the application of PowNet to problems in the water-energy nexus domain that investigate the impact of water availability on electricity supply and demand. \r\n\r\nRead the PowNet Documentation here: https://pownet.readthedocs.io/en/latest\r\n\r\n\r\n## Installation\r\n\r\nDownload or clone the PowNet 2.0 repository to your local machine. For example: if we want to clone to \"C://user/pownet\",\r\n\r\n```\r\ngit clone https://github.com/your-username/pownet.git C://user/pownet\r\n```\r\n\r\nNext, open a terminal and navigate to the directory where you cloned the repository:\r\n\r\n```\r\ncd C://user/pownet\r\n```\r\n\r\nThe following step is highly recommended: creating a virtual environment to manage dependencies. If using Conda, you can create an envrionment named \"pownet\":\r\n\r\n```\r\nconda create --name pownet\r\nconda activate pownet\r\n```\r\n\r\nNow, you can install this PowNet package using pip, which is a manager for Python packages:\r\n\r\n```\r\npip install -e .\r\n```\r\n\r\nThis command installs the package in \"editable\" mode (-e) using pyproject.toml that is located in the root directory of PowNet. The editable mode allows you to edit PowNet codebase when you need to modify or implement new features. The pyproject.toml file specifies the dependencies required to run PowNet.\r\n\r\nA quick start tutorial to run a simple case study is provided here: https://pownet.readthedocs.io/en/latest/pages/quickstarter.html\r\n\r\n## Overview of PowNet\r\n\r\n\r\n\r\n\r\n",
"bugtrack_url": null,
"license": "MIT License\r\n \r\n \r\n Copyright (c) 2024 Phumthep Bunnak\r\n \r\n Permission is hereby granted, free of charge, to any person obtaining a\r\n copy of this software and associated documentation files (the \"Software\"), to\r\n deal in the Software without restriction, including without limitation the\r\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\r\n sell copies of the Software, and to permit persons to whom the Software is \r\n furnished to do so, subject to the following conditions: \r\n \r\n The above copyright notice and this permission notice shall be included\r\n in all copies or substantial portions of the Software.\r\n \r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\r\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n ",
"summary": "A simple production cost model of framework for power systems",
"version": "2.2.0",
"project_urls": {
"Documentation": "https://pownet.readthedocs.io/en/latest/index.html",
"Homepage": "https://github.com/Critical-Infrastructure-Systems-Lab/PowNet"
},
"split_keywords": [
"power_system",
" optimization",
" production_cost_model",
" unit_commitment"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "dc202c969bf03506a70c2cd4b75fca567475676cc7ddec36e2f60a57c5b24a49",
"md5": "fe2eb8beee1127617cc59e3bea3e134b",
"sha256": "0cc5e5011ba3ed66fd003299670de66268ef1dfc3cbf14fb5d0167c5a1058e77"
},
"downloads": -1,
"filename": "pownet-2.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "fe2eb8beee1127617cc59e3bea3e134b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 233746,
"upload_time": "2025-01-28T21:13:47",
"upload_time_iso_8601": "2025-01-28T21:13:47.093883Z",
"url": "https://files.pythonhosted.org/packages/dc/20/2c969bf03506a70c2cd4b75fca567475676cc7ddec36e2f60a57c5b24a49/pownet-2.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "634cb030cb69cce25c2bf624a35e3ce10a66c064b2b1ee12fbfad07afb2dcbaa",
"md5": "a97928b83472a6e0595754c81dd3e292",
"sha256": "5356be914c368f755d94aad5278c753240f3247430b88ec6720fb6bb0141f81d"
},
"downloads": -1,
"filename": "pownet-2.2.0.tar.gz",
"has_sig": false,
"md5_digest": "a97928b83472a6e0595754c81dd3e292",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 921770,
"upload_time": "2025-01-28T21:13:49",
"upload_time_iso_8601": "2025-01-28T21:13:49.560958Z",
"url": "https://files.pythonhosted.org/packages/63/4c/b030cb69cce25c2bf624a35e3ce10a66c064b2b1ee12fbfad07afb2dcbaa/pownet-2.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-28 21:13:49",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Critical-Infrastructure-Systems-Lab",
"github_project": "PowNet",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pownet"
}