Collection of TESPy heat pump models and additional Streamlit dashboard.
Project description
heatpumps
Steady-state simulation of design and partload operation of a wide collection of heat pump topologies.
Key Features
- Steady-state simulation of design and partload operation based on TESPy
- Parametrization and result visualisation through a Streamlit dashboard
- Industry standard, as well as topologies still in research and developement, supported
- Sub- and transcritical processes
- Wide variety of refrigerants due to the integration of CoolProp
Installation
Installation of heatpumps is very easy using pip. If you are using Miniforge, you can create and activate a clean environment like this:
conda create -n my_new_env python=3.11
conda activate my_new_env
Then simply install heatpumps with the following command:
python -m pip install heatpumps
If you want to use an editable version of the package, e.g. if you want to contribute to the project and test your own changes, skip the command above, clone the repository from GitHub and use this one:
python -m pip install -e .[dev]
The addition of the "-e" flag allows for changes to directly have an effect and adding "[dev]" to the installation path tells pip to also install the optional dependencies for developers.
Run the dashboard
The heatpumps package comes with a command to run the dashboard directly from your terminal. Running the dashboard is as easy as typing the following command:
heatpumps-dashboard
Using the heat pump model classes
To use the heat pump model classes in your own scripts, you can import them as follows:
from heatpumps.models import HeatPumpSimple, HeatPumpEconIHX
from heatpumps.parameters import get_params
# Simple cycle model
params = get_params('HeatPumpSimple')
params['setup']['refrig'] = 'R1234yf'
params['fluids']['wf'] = 'R1234yf'
params['C3']['T'] = 85 # feed flow temperature of heat sink
params['C1']['T'] = 50 # return flow temperature of heat sink
hp = HeatPumpSimple(params=params)
hp.run_model()
hp.generate_state_diagram(diagram_type='logph', savefig=True, open_file=True)
# Serial compression with closed economizer and internal heat exchanger
econ_type = 'closed'
params = get_params('HeatPumpEconIHX', econ_type=econ_type)
params['ihx']['dT_sh'] = 7.5 # superheating by internal heat exchanger
hp = HeatPumpEconIHX(params=params, econ_type=econ_type)
hp.run_model()
hp.perform_exergy_analysis(print_results=True)
License
Copyright (c) 2023-2026 Jonas Freißmann and Malte Fritz
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file heatpumps-1.4.0.tar.gz.
File metadata
- Download URL: heatpumps-1.4.0.tar.gz
- Upload date:
- Size: 2.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1ce3849dab20f0bee3350cb4ac4636adec60e85423806ef936933a72843af1c
|
|
| MD5 |
3a6759f200b0a772ea903b89f496cadf
|
|
| BLAKE2b-256 |
661a9906bb7cdb12be55fdc1bc177fcbe4378b494d16834c41476e575eadd48a
|
File details
Details for the file heatpumps-1.4.0-py3-none-any.whl.
File metadata
- Download URL: heatpumps-1.4.0-py3-none-any.whl
- Upload date:
- Size: 1.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ff5f931616bbe67a14e14d1d0fa4732a709ab89297303274a20e4381210a5f7
|
|
| MD5 |
62338544133f77fea16d777aa81e519f
|
|
| BLAKE2b-256 |
8e047748baa240256b6647d24053c532050289e5ef4c4966e5d71d1b10b53eb8
|