Skip to content

Commit

Permalink
Merge remote-tracking branch 'pp/develop' into connectivity_VLRL
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonRubenDrauz committed Nov 8, 2024
2 parents 61511bc + 464fb63 commit f47ceb8
Show file tree
Hide file tree
Showing 6 changed files with 1,026 additions and 7 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
Change Log
=============

- [FIXED] some imports from pandapower
[0.11.0] - 2024-11-07
-------------------------------
- [ADDED] heat_consumer plotting
- [ADDED] variable "u_w_per_m2k" to std_type pipe
- [ADDED] standard district heating pipe types
- [ADDED] support for Python 3.12
- [ADDED] t_outlet_k to result tables of branch components
- [ADDED] relying tests, to check the ability to work with pandapower develop
- [ADDED] bidirectional calculation mode for heat calculations
- [CHANGED] heat_consumer to enable temperature control
- [CHANGED] switched from setup.py to pyproject.toml
- [CHANGED] variable "alpha_w_per_m2k" to "u_w_per_m2k"
- [CHANGED] option "all" for pipeflow heat calculations to "sequential", the new option is "bidirectional"
- [CHANGED] volume flow in result tables instead of normalized volume flow for non gas fluids
- [CHANGED] introduction of slack mass flow into nodes as solved variable
- [CHANGED] circulation pumps are now branches and thus cannot generate or consume mass
- [FIXED] Pressure plot not working for circ pump
- [FIXED] volume flow rate for incompressible fluids based on real density, thus in this case results are renamed from "vdot_norm_m3_per_s" to "vdot_m3_per_s"
- [FIXED] some imports from pandapower
- [FIXED] NAN to nan because of numpy changes
- [FIXED] if velocity in a branch is negative to get corrected nodes from the branch pit
- [FIXED] plot pressure profile not working for circulation pump sources
- [FIXED] Infeed switches are considered correctly
- [FIXED] Heat consumers with qext_w = 0 and temperature control ignore temperature set points
- [FIXED] alpha also applied to mdot
- [REMOVED] support for Python 3.8 due to EOL


Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"

[project]
name = "pandapipes"
version = "0.10.0" # File format version '__format_version__' is tracked in __init__.py
version = "0.11.0" # File format version '__format_version__' is tracked in __init__.py
authors=[
{ name = "Simon Ruben Drauz-Mauel", email = "[email protected]" },
{ name = "Daniel Lohmeier", email = "[email protected]" },
{ name = "Jolando Marius Kisse", email = "[email protected]" }
]
description = "A pipeflow calculation tool that complements pandapower in the simulation of multi energy grids"
readme = "README.md"
readme = "README.rst"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
Expand All @@ -32,7 +32,7 @@ classifiers = [
"Programming Language :: Python :: 3.12"
]
dependencies = [
"pandapower ~= 2.14.6",
"pandapower ~= 2.14.11",
"matplotlib",
"shapely",
]
Expand Down
2 changes: 1 addition & 1 deletion src/pandapipes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import importlib.metadata

__version__ = importlib.metadata.version("pandapipes")
__format_version__ = '0.10.1'
__format_version__ = '0.11.0'

import pandas as pd
import os
Expand Down
Loading

0 comments on commit f47ceb8

Please sign in to comment.