Skip to content

Commit

Permalink
Merge pull request #605 from e2nIEE/release_0.10.0
Browse files Browse the repository at this point in the history
Release 0.10.0
  • Loading branch information
EPrade committed Apr 9, 2024
2 parents e9c8265 + 2c1060b commit 9dc077e
Show file tree
Hide file tree
Showing 7 changed files with 1,006 additions and 8 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
Change Log
=============

[0.10.0] - 2024-04-09
-------------------------------

- [ADDED] function for plotting pressure profile
- [ADDED] function for calculating distance to junctions
- [ADDED] topology function for returning unsupplied junctions
- [ADDED] topology function for returning elements on path
- [ADDED] function for getting all branch-component table names
- [ADDED] function for getting all branch-component models
- [ADDED] component 'heat_consumer' that combines the two components heat_exchanger and flow_control
- [CHANGED] moving generalizing pit entries up from specific components to the abstract class
- [CHANGED] 'JAC_DERIV_DT1' to 'JAC_DERIV_DTOUT'
- [CHANGED] solving for minit instead of vinit
- [CHANGED] distinct max. iteration settings for hydraulic and thermal calculation
- [CHANGED] default tolerances from 1e-4 to 1e-5
- [FIXED] results of old grid are wrong, pipeflow needs to be conducted again
- [FIXED] taking norm density instead of real density in Darcy-Weisbach equation
- [FIXED] in circulation pumps only junctions in-service are considered

[0.9.0] - 2023-12-22
-------------------------------

Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
# built documents.
#
# The short X.Y version.
version = "0.9"
version = "0.10"
# The full version, including alpha/beta/rc tags.
release = "0.9.0"
release = "0.10.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

setup(
name='pandapipes',
version='0.9.0',
version='0.10.0',
author='Simon Ruben Drauz-Mauel, Daniel Lohmeier, Jolando Marius Kisse',
author_email='simon.ruben.drauz-mauel@iee.fraunhofer.de, daniel.lohmeier@retoflow.de, '
'jolando.kisse@uni-kassel.de',
Expand All @@ -44,7 +44,7 @@
long_description_content_type='text/x-rst',
url='http://www.pandapipes.org',
license='BSD',
install_requires=["pandapower>=2.13.1", "matplotlib", "shapely"],
install_requires=["pandapower>=2.14.6", "matplotlib", "shapely"],
extras_require={"docs": ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex"],
"plotting": ["plotly", "igraph"],
"test": ["pytest", "pytest-xdist", "nbmake"],
Expand Down
4 changes: 2 additions & 2 deletions src/pandapipes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# and Energy System Technology (IEE), Kassel, and University of Kassel. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.

__version__ = '0.9.0'
__format_version__ = '0.8.0'
__version__ = '0.10.0'
__format_version__ = '0.10.0'

import pandas as pd
import os
Expand Down
458 changes: 458 additions & 0 deletions src/pandapipes/test/api/old_versions/example_0.10.0_gas.json

Large diffs are not rendered by default.

520 changes: 520 additions & 0 deletions src/pandapipes/test/api/old_versions/example_0.10.0_water.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -367,5 +367,6 @@ def add_ts_controllers(net):


if __name__ == '__main__':
water_net = release_control_test_network_water(True)
gas_net = release_control_test_network_gas(True)
water_net = release_control_test_network_water(10,True)
gas_net = release_control_test_network_gas(10,True)

0 comments on commit 9dc077e

Please sign in to comment.