ExerPy: Exergy Analysis in Python

ExerPy is a Python library and framework for automated exergy analysis of energy-conversion systems. It builds on the exergy analysis methodology implemented in TESPy and extends its capabilities to seamlessly integrate with simulation tools such as Ebsilon Professional, Aspen Plus, and TESPy itself. ExerPy enables engineers and researchers to identify inefficiencies and optimize the performance of thermodynamic systems through automated workflows and consistent data handling.

With its advanced features, ExerPy accounts for both physical and chemical exergy, automates exergy balances, and allows users to perform automated analysis of individual components and entire processes. This helps identify where and why exergy losses occur, facilitating strategies to improve efficiency, reduce costs, and support sustainable energy use.

ExerPy is part of the Open Energy Modelling Framework oemof.

_images/logo_exerpy_big.svg _images/logo_exerpy_big_dark.svg

Key Features

  • Automated, User-friendly Analysis: Minimizes user input and enables automated exergy analysis with minimal human error.

  • Comprehensive Exergy Analysis: Calculates physical and chemical exergies for both component- and system-level analyses.

  • Flexible Integration: Compatible with multiple simulation tools (Ebsilon Professional, Aspen Plus, TESPy, and user-defined input; other software will be integrated in the future based on user feedback).

  • Advanced Component Library: Pre-built components for common energy system elements (turbines, heat exchangers, etc.).

  • Extensible Architecture: Easy-to-use framework for implementing custom components and analysis methods.

  • Robust Data Handling: Consistent fluid property models and automated data extraction from simulation tools.

  • Open Source: MIT licensed, free for academic and commercial use.

Getting Started

Installation

You can install the latest version of ExerPy using pip:

pip install exerpy

For complete installation instructions go to this page

Quick Start Example

Here are simple examples how to perform an exergy analysis using ExerPy:

Custom json

from exerpy import ExergyAnalysis

model_path = 'my_model.json'

ean = ExergyAnalysis.from_json(model_path, chemExLib='Ahrendts')

fuel = {"inputs": ['Fuel'], "outputs": []}
product = {"inputs": ['Power'], "outputs": []}

ean.analyse(E_F=fuel, E_P=product)
ean.exergy_results()

Exported tespy model

from exerpy import ExergyAnalysis

model_path = 'tespy_model_export.json'

ean = ExergyAnalysis.from_tespy(model_path, chemExLib='Ahrendts')

fuel = {"inputs": ['Fuel'], "outputs": []}
product = {"inputs": ['Power'], "outputs": []}

ean.analyse(E_F=fuel, E_P=product)
ean.exergy_results()

You can also use a tespy network object instead!

Ebsilon model

from exerpy import ExergyAnalysis

model_path = 'my_model.ebs'

ean = ExergyAnalysis.from_ebsilon(model_path, chemExLib='Ahrendts')

fuel = {"inputs": ['Fuel'], "outputs": []}
product = {"inputs": ['Power'], "outputs": []}

ean.analyse(E_F=fuel, E_P=product)
ean.exergy_results()

For more detailed tutorials and examples, see the Example applications.

Citation

If you use ExerPy in your scientific work, please cite it to support ongoing development. Use the following BibTeX entry:

@software{ExerPy,
     author = {Tomasinelli, Sergio and Witte, Francesco and Müller, Robert},
     title = {{ExerPy}: Exergy Analysis in Python},
     note = {Supervision: Prof. Dr.-Ing. Fontina Petrakopoulou}
     url = {https://github.com/oemof/exerpy},
     version = {0.0.8},
     year = {2026}
}

License

MIT License

Copyright (c) Sergio Tomasinelli

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.