rtc-tools-heat-network


Namertc-tools-heat-network JSON
Version 0.4.6 PyPI version JSON
download
home_pagehttps://github.com/Nieuwe-Warmte-Nu/rtc-tools-heat-network
SummaryHeat network models for RTC-Tools 2.
upload_time2024-01-26 12:58:40
maintainerJim Rojer, Kobus van Rooyen, Kelbij Star, Femke Janssen, Jesús Andrés Rodríguez Sarasty, Thijs van der Klauw
docs_urlNone
authorJim Rojer
requires_python>=3.8,<3.11
licenseLGPLv3
keywords heat network optimization rtc tools
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # rtc-tools-heat-network

Rtc-tools-heat-network is an optimization application for optimal planning, design and 
operation of Energy Systems with the current main focus on District Heating Systems (DHS). The current application focuses on a Mixed Integer Linear Problem (MILP) approach, with multiple linearization strategies to conservatively approximate the steady-state physics and financial models.
All physics are combined in the HeatMixin class. When inherited this class can be combined with objective functions (that typically incorporate the financial aspects) and interface methods to create an
optimization workflow (see also running an example).

The main supported method for defining your Energy system is ESDL (Energy System Description Language), which is a modelling language for energy systems. See also:https://github.com/EnergyTransition/ESDL.
With ESDL you can define assets like demands, sources, pipes, etc. and fill in their attributes. The ESDLMixin class
will parse the ESDL file and utilize the attributes to build up the model representation.

This optimization package was originally developed for operational optimization and hosts two 
optimization approaches 1) A MILP approach 
and 2) Nonlinear Problem (NLP) approach. These two approaches were developed to run sequentially for 
operational optimization. the MILP would fix the integer decision for the NLP problem, such that only the continuous variables need to be solved. The NLP
problem would then find the optimized solution with the steady-state non-linear physics included. The existing outdated (still to be updated / update in progress) documentation can be found on: http://warmingup.pages.ci.tno.nl/rtc-tools-heat-network/

Installation
============

Installation of the RTC-Tools Heat Network library is as simple as::

    # 1a. Use pip to install directly
    pip install rtc-tools-heat-network

If you are going to develop and change the source code, you probably want to do something like::

	# 1b. Use git clone and pip to make an editable/developer installation
	git clone https://ci.tno.nl/gitlab/warmingup/rtc-tools-heat-network
	pip install -e rtc-tools-heat-network

RTC-Tools Heat Network depends on `RTC-Tools <https://gitlab.com/deltares/rtc-tools.git>`_, which is automatically installed as one of its dependencies.

Running an example
==================

To make sure that everything is set-up correctly, you can run one of the example cases.
These do not come with the installation, and need to be downloaded separately::

    # 1. Clone the repository
    git clone https://github.com/Nieuwe-Warmte-Nu/rtc-tools-heat-network.git

    # 2. Change directory to the example folder
    cd rtc-tools-heat-network/examples/pipe_diameter_sizing/src

    # 3. Run the example
    python example.py

You will see the progress of RTC-Tools in your shell.
If all is well, you should see something like the following output:

![img.png](img.png)

In this example.py file you can see a small workflow being set-up. The PipeDiameterSizingProblem class
inherits from (Note only the *classes are defined in rtc-tools-heat-network the others come from rtc-tools package):
- CollocatedIntegratedOptimizationProblem: This class does all the discretization of the state variables in your problem.
- *ESDLMixin: This class does the parsing and setting up of a model based on an ESDL file.
- GoalProgrammingMixin: This class allows you to add Goals (objective functions) with different priorities.
- LinearizedOrderGoalProgrammingMixin: This class allows you to add higher order goals (e.g. order=2) for MILP problems.
- *HeatMixin: This class adds all the heat network physics for MILP problems. 

Within the PipeDiameterSizingProblem class you can see that the path_goals() function is overwritten and that
a path_goal with priority one is added to meet the heat demands. The definition path_goal is used
to define a goal that is applied to a state variable at every time step. Furthermore, the goals() method is also overwritten
in this case where an objective with priority two is added to minimize `length*diameter`.
The goals() method is used here for global variables that do not change over time. The priorities indicate the sequential order 
in which the optimizer would be applied to the goals. In this example the heat demand is matched first, after which priority 2 `length*diameter` 
is minimized. In this example the objective of the priority one goal constraints the priority two goal optimization, which ensures that the 
optimization of the priority two goal does not have impact on the optimal result of the priority one goal.

Contribute
==========

You can contribute to this code through Pull Request on GitHub.
Please, make sure that your code is coming with unit tests to ensure full coverage and continuous integration in the API.

GitHub: https://github.com/Nieuwe-Warmte-Nu/rtc-tools-heat-network



## Release
This package is released on pypi [here](https://pypi.org/project/rtc-tools-heat-network/) whenever a new tag is pushed.
In order to release this package:

1. Make sure that all relevant merge requests and commits have been merged to the master and/or poc-release branch.
2. Run `git checkout master` or `git checkout poc-release` to switch to the release branch.
3. Run `git pull origin master` or `git pull origin poc-release` to pull all latest changes.
4. Run `git tag <new_version>` where `<new_version>` is the new version number.
5. Run `git push origin <new_version>` to push the tag to Github.
6. Check [Github](https://github.com/Nieuwe-Warmte-Nu/rtc-tools-heat-network/actions) to confirm the release is
   processed without errors.
7. Once the release has finished, confirm the new version is available on [pypi](https://pypi.org/project/rtc-tools-heat-network/).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Nieuwe-Warmte-Nu/rtc-tools-heat-network",
    "name": "rtc-tools-heat-network",
    "maintainer": "Jim Rojer, Kobus van Rooyen, Kelbij Star, Femke Janssen, Jes\u00fas Andr\u00e9s Rodr\u00edguez Sarasty, Thijs van der Klauw",
    "docs_url": null,
    "requires_python": ">=3.8,<3.11",
    "maintainer_email": "",
    "keywords": "heat network optimization rtc tools",
    "author": "Jim Rojer",
    "author_email": "jim.rojer@tno.nl",
    "download_url": "https://files.pythonhosted.org/packages/bb/8c/245670c5f1038f0045e306234159e2493032790915f1eff4acfa344a0e4d/rtc-tools-heat-network-0.4.6.tar.gz",
    "platform": "Windows",
    "description": "# rtc-tools-heat-network\n\nRtc-tools-heat-network is an optimization application for optimal planning, design and \noperation of Energy Systems with the current main focus on District Heating Systems (DHS). The current application focuses on a Mixed Integer Linear Problem (MILP) approach, with multiple linearization strategies to conservatively approximate the steady-state physics and financial models.\nAll physics are combined in the HeatMixin class. When inherited this class can be combined with objective functions (that typically incorporate the financial aspects) and interface methods to create an\noptimization workflow (see also running an example).\n\nThe main supported method for defining your Energy system is ESDL (Energy System Description Language), which is a modelling language for energy systems. See also:https://github.com/EnergyTransition/ESDL.\nWith ESDL you can define assets like demands, sources, pipes, etc. and fill in their attributes. The ESDLMixin class\nwill parse the ESDL file and utilize the attributes to build up the model representation.\n\nThis optimization package was originally developed for operational optimization and hosts two \noptimization approaches 1) A MILP approach \nand 2) Nonlinear Problem (NLP) approach. These two approaches were developed to run sequentially for \noperational optimization. the MILP would fix the integer decision for the NLP problem, such that only the continuous variables need to be solved. The NLP\nproblem would then find the optimized solution with the steady-state non-linear physics included. The existing outdated (still to be updated / update in progress) documentation can be found on: http://warmingup.pages.ci.tno.nl/rtc-tools-heat-network/\n\nInstallation\n============\n\nInstallation of the RTC-Tools Heat Network library is as simple as::\n\n    # 1a. Use pip to install directly\n    pip install rtc-tools-heat-network\n\nIf you are going to develop and change the source code, you probably want to do something like::\n\n\t# 1b. Use git clone and pip to make an editable/developer installation\n\tgit clone https://ci.tno.nl/gitlab/warmingup/rtc-tools-heat-network\n\tpip install -e rtc-tools-heat-network\n\nRTC-Tools Heat Network depends on `RTC-Tools <https://gitlab.com/deltares/rtc-tools.git>`_, which is automatically installed as one of its dependencies.\n\nRunning an example\n==================\n\nTo make sure that everything is set-up correctly, you can run one of the example cases.\nThese do not come with the installation, and need to be downloaded separately::\n\n    # 1. Clone the repository\n    git clone https://github.com/Nieuwe-Warmte-Nu/rtc-tools-heat-network.git\n\n    # 2. Change directory to the example folder\n    cd rtc-tools-heat-network/examples/pipe_diameter_sizing/src\n\n    # 3. Run the example\n    python example.py\n\nYou will see the progress of RTC-Tools in your shell.\nIf all is well, you should see something like the following output:\n\n![img.png](img.png)\n\nIn this example.py file you can see a small workflow being set-up. The PipeDiameterSizingProblem class\ninherits from (Note only the *classes are defined in rtc-tools-heat-network the others come from rtc-tools package):\n- CollocatedIntegratedOptimizationProblem: This class does all the discretization of the state variables in your problem.\n- *ESDLMixin: This class does the parsing and setting up of a model based on an ESDL file.\n- GoalProgrammingMixin: This class allows you to add Goals (objective functions) with different priorities.\n- LinearizedOrderGoalProgrammingMixin: This class allows you to add higher order goals (e.g. order=2) for MILP problems.\n- *HeatMixin: This class adds all the heat network physics for MILP problems. \n\nWithin the PipeDiameterSizingProblem class you can see that the path_goals() function is overwritten and that\na path_goal with priority one is added to meet the heat demands. The definition path_goal is used\nto define a goal that is applied to a state variable at every time step. Furthermore, the goals() method is also overwritten\nin this case where an objective with priority two is added to minimize `length*diameter`.\nThe goals() method is used here for global variables that do not change over time. The priorities indicate the sequential order \nin which the optimizer would be applied to the goals. In this example the heat demand is matched first, after which priority 2 `length*diameter` \nis minimized. In this example the objective of the priority one goal constraints the priority two goal optimization, which ensures that the \noptimization of the priority two goal does not have impact on the optimal result of the priority one goal.\n\nContribute\n==========\n\nYou can contribute to this code through Pull Request on GitHub.\nPlease, make sure that your code is coming with unit tests to ensure full coverage and continuous integration in the API.\n\nGitHub: https://github.com/Nieuwe-Warmte-Nu/rtc-tools-heat-network\n\n\n\n## Release\nThis package is released on pypi [here](https://pypi.org/project/rtc-tools-heat-network/) whenever a new tag is pushed.\nIn order to release this package:\n\n1. Make sure that all relevant merge requests and commits have been merged to the master and/or poc-release branch.\n2. Run `git checkout master` or `git checkout poc-release` to switch to the release branch.\n3. Run `git pull origin master` or `git pull origin poc-release` to pull all latest changes.\n4. Run `git tag <new_version>` where `<new_version>` is the new version number.\n5. Run `git push origin <new_version>` to push the tag to Github.\n6. Check [Github](https://github.com/Nieuwe-Warmte-Nu/rtc-tools-heat-network/actions) to confirm the release is\n   processed without errors.\n7. Once the release has finished, confirm the new version is available on [pypi](https://pypi.org/project/rtc-tools-heat-network/).\n",
    "bugtrack_url": null,
    "license": "LGPLv3",
    "summary": "Heat network models for RTC-Tools 2.",
    "version": "0.4.6",
    "project_urls": {
        "Homepage": "https://github.com/Nieuwe-Warmte-Nu/rtc-tools-heat-network"
    },
    "split_keywords": [
        "heat",
        "network",
        "optimization",
        "rtc",
        "tools"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ace0026085c065c788cf87501080a46bf1c5af363e6c3e0fc7ead49945b2140f",
                "md5": "bd3ea172b8136678bf33f6ceccbb527c",
                "sha256": "e0b6c3de92d7fcf506c0d8caf54f57acda42f4ebe92a863b17d00191cd938e44"
            },
            "downloads": -1,
            "filename": "rtc_tools_heat_network-0.4.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bd3ea172b8136678bf33f6ceccbb527c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<3.11",
            "size": 250003,
            "upload_time": "2024-01-26T12:58:38",
            "upload_time_iso_8601": "2024-01-26T12:58:38.892487Z",
            "url": "https://files.pythonhosted.org/packages/ac/e0/026085c065c788cf87501080a46bf1c5af363e6c3e0fc7ead49945b2140f/rtc_tools_heat_network-0.4.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb8c245670c5f1038f0045e306234159e2493032790915f1eff4acfa344a0e4d",
                "md5": "69aac79e914b62fd2418afad81bf979b",
                "sha256": "121829a6e6519eff7d32b66d022ca9877bdd1659936c4374c1ed8e5c29c08b68"
            },
            "downloads": -1,
            "filename": "rtc-tools-heat-network-0.4.6.tar.gz",
            "has_sig": false,
            "md5_digest": "69aac79e914b62fd2418afad81bf979b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<3.11",
            "size": 241628,
            "upload_time": "2024-01-26T12:58:40",
            "upload_time_iso_8601": "2024-01-26T12:58:40.634827Z",
            "url": "https://files.pythonhosted.org/packages/bb/8c/245670c5f1038f0045e306234159e2493032790915f1eff4acfa344a0e4d/rtc-tools-heat-network-0.4.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-26 12:58:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Nieuwe-Warmte-Nu",
    "github_project": "rtc-tools-heat-network",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "rtc-tools-heat-network"
}
        
Elapsed time: 0.16888s