Metadata-Version: 2.4
Name: uesgraphs
Version: 2.2.0
Summary: Automated graph-based simulation model generation and analysis tool
Author-email: Rahul Mohandasan Karuvingal <rahul.karuvingal@eonerc.rwth-aachen.de>
License: MIT
Project-URL: repository, https://github.com/RWTH-EBC/uesgraphs
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: geopandas
Requires-Dist: networkx>=2.1
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: shapely
Requires-Dist: pyproj
Requires-Dist: matplotlib
Requires-Dist: scikit-learn
Requires-Dist: mako
Requires-Dist: dxfgrabber
Requires-Dist: seaborn
Requires-Dist: openpyxl
Requires-Dist: pyarrow
Requires-Dist: ipykernel
Requires-Dist: scipy
Requires-Dist: tomli>=1.2.0; python_version < "3.11"
Provides-Extra: dev
Requires-Dist: pyyaml; extra == "dev"
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-mpl>=0.12; extra == "dev"
Requires-Dist: pytest-cov<5.0.0,>=4.0.0; extra == "dev"
Requires-Dist: coverage<8.0.0,>=7.0.0; extra == "dev"
Provides-Extra: templates
Requires-Dist: OMPython<4.0.0,>=3.4.0; extra == "templates"
Provides-Extra: full
Requires-Dist: pyyaml; extra == "full"
Requires-Dist: pytest>=6.0; extra == "full"
Requires-Dist: pytest-mpl>=0.12; extra == "full"
Requires-Dist: pytest-cov<5.0.0,>=4.0.0; extra == "full"
Requires-Dist: coverage<8.0.0,>=7.0.0; extra == "full"
Requires-Dist: OMPython<4.0.0,>=3.4.0; extra == "full"
Requires-Dist: holidays==0.94; extra == "full"
Requires-Dist: pandapipes==0.13.0; extra == "full"
Requires-Dist: teaser==1.3.1; extra == "full"
Requires-Dist: pandapipes==0.13.0; extra == "full"
Provides-Extra: pandapipes
Requires-Dist: pandapipes==0.13.0; extra == "pandapipes"
Provides-Extra: teaser
Requires-Dist: teaser==1.3.1; extra == "teaser"
Provides-Extra: dhw
Requires-Dist: holidays==0.94; extra == "dhw"
Dynamic: license-file

![E.ON EBC RWTH Aachen University](./uesgraphs/img/EBC_Logo.png)

# UESgraphs

[![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)
[![Documentation](https://raw.githubusercontent.com/RWTH-EBC/uesgraphs/gh-pages/docs/master/docs/doc.svg)](https://rwth-ebc.github.io//uesgraphs/master/docs/)
[![CI](https://github.com/RWTH-EBC/uesgraphs/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/RWTH-EBC/uesgraphs/actions/workflows/ci.yml)
![Coverage](https://raw.githubusercontent.com/RWTH-EBC/uesgraphs/gh-pages/docs/master/coverage/badge.svg)


**UESgraphs** (Urban Energy Systems graphs) is a Python package for describing Urban Energy Systems, managing their data within a Python graph structure, and enabling the automatic generation of dynamic district simulation models. We extend the
[networkx](https://networkx.github.io/) Graph class and add basic methods to
represent buildings and energy networks in the graph. **UESgraphs** can be used as a
foundation to analyze energy network structures, evaluate district energy
systems or generate simulation models. **Version 2** has been updated with the following enhancements:
- **Simplified Installation**: Easier installation with the removal of unnecessary Python library dependencies.
- **Enabled Logging Features**: Logging functionality has been activated for better tracking and debugging.
- **Enhanced Compatibility**: Compatible with the latest versions of Modelica and the AixLib package.
- **Demand Estimation**: Estimation of heating and cooling demands using the tool [TEASER](https://github.com/rwth-ebc/teaser) and integrated code from [OpenDHW](https://github.com/RWTH-EBC/OpenDHW) for estimating domestic hot water demands for the buildings.
- **Hydronic Sizing**: Integrated calculation algorithm for estimation of pipe diameters for the district heating and cooling networks.
- **Quasi-static Simulation**: Quasi-static simulations for district heating networks using [Pandapipes](https://github.com/e2nIEE/pandapipes ).
- **Dynamic Python Based Simulation**: Quick dynamic network simulations using python for thermo-hydraulic analysis of the network. 
- **Improved Visualization**: Enhanced visualization features for better representation of results.
- **Updated Model Template Generation**: The template generation feature for Modelica models has been updated, enabling automation of multiple models.
- **Updated Examples**: The examples for **UESgraphs** have been updated, and two new examples have been added to clarify the use of template generation and the `analyze.py` script.

**UESgraphs** is being developed at [RWTH Aachen University, E.ON Energy
Research Center, Institute for Energy Efficient Buildings and Indoor
Climate](https://www.ebc.eonerc.rwth-aachen.de/cms/~dmzz/E-ON-ERC-EBC/?lidx=1).

If you have any questions regarding the tool, feel free to contact us at [ebc-tools@eonerc.rwth-aachen.de](mailto:ebc-tools@eonerc.rwth-aachen.de).

## :rocket: Quick start

### :wrench: Install UESgraphs

We recommend using **Conda** or **Anaconda** for installing **UESgraphs**. Usage of `python venv` has shown to cause trouble in the installation process.

Follow these steps to install **UESgraphs** using Conda:

1. **Create a new virtual environment**:

   ```bash
   conda create -n uesgraphs python=3.13
   ```

   > **Note**: Replace `3.13` with your desired version of Python.

2. **Activate the virtual environment**:

   ```bash
   conda activate uesgraphs
   ```

3. **Install UESgraphs from PyPI** (Quick Installation):

   If you want to use UESgraphs without modifying the source code, install directly from PyPI:

   **Basic Installation** (core functionality only):
   ```bash
   pip install uesgraphs
   ```

   **Installation with Optional Dependencies**:

   - **For template generation and Modelica support**:
     ```bash
     pip install uesgraphs[templates]
     ```

   - **For development (includes testing and coverage tools)**:
     ```bash
     pip install uesgraphs[dev]
     ```

   - **For pandapipes simulations**:
     ```bash
     pip install uesgraphs[pandapipes]
     ```

   - **For TEASER integration**:
     ```bash
     pip install uesgraphs[TEASER]
     ```

   - **For OpenDHW integration usage**:
     ```bash
     pip install uesgraphs[DHW]
     ```

   - **Complete installation with all dependencies**:
     ```bash
     pip install uesgraphs[full]
     ```

   > **Note**: If you're installing from PyPI, skip steps 4 and 5 and proceed directly to step 6 for OpenModelica setup.

4. **Clone or download the UESgraphs repository** (Development Installation):

   If you want to modify the source code or contribute to development:

   - If you're cloning the repository using Git, run:

     ```bash
     git clone https://github.com/RWTH-EBC/uesgraphs.git
     ```

   - If you've downloaded the repository as a ZIP file, extract it to your desired location.

5. **Install UESgraphs in editable mode** (Development Installation):

   Navigate to the directory where _uesgraphs_ is located and choose your installation method:

   **Basic Installation** (core functionality only):
   ```bash
   pip install -e <path/to/your/uesgraphs>
   ```

   **Installation with Optional Dependencies**:

   - **For template generation and Modelica support**:
     ```bash
     pip install -e <path/to/your/uesgraphs>[templates]
     ```

   - **For development (includes testing and coverage tools)**:
     ```bash
     pip install -e <path/to/your/uesgraphs>[dev]
     ```

   - **For pandapipes simulations**:
     ```bash
     pip install -e <path/to/your/uesgraphs>[pandapipes]
     ```

   - **For TEASER integration**:
     ```bash
     pip install -e <path/to/your/uesgraphs>[TEASER]
     ```
     
   - **For OpenDHW integration usage**:
     ```bash
     pip install -e <path/to/your/uesgraphs>[DHW]
     ```

   - **Complete installation with all dependencies**:
     ```bash
     pip install -e <path/to/your/uesgraphs>[full]
     ```

   > **Note**: The `[full]` option installs all optional dependencies including OMPython, pytest, coverage, and other development tools. Use this for a complete development environment.

6. **Verify your UESgraphs installation** by running the automated tests:

   Navigate to the top-level _uesgraphs_ folder and execute:

   ```bash
   pytest --mpl
   ```

   This will run the test suite and verify that everything is set up correctly.

   > **Note**: Running tests requires the `[dev]` or `[full]` optional dependencies to be installed. If you only installed the basic version, install the dev dependencies first: `pip install uesgraphs[dev]` or `pip install -e .[dev]` (for editable installs).

For more detailed information, please check the `pyproject.toml` file.

7. **Install OpenModelica and OMPython to Run Examples 9 to 14**

   To run examples 9 to 14, you need to install **OpenModelica** and **OMPython**.

   - **Download and Install OpenModelica**:

     - Visit the [OpenModelica download page](https://openmodelica.org/download/download-windows/) to download the installer for your operating system.
     - Follow the on-screen instructions to install OpenModelica on your computer.
     - Add OpenModelica to the environment variable

   - **Install OMPython**:

     If you haven't already installed OMPython with the `[templates]`,  or `[full]` options in step 3 or 5, you can install it separately:

     ```bash
     pip install "OMPython>=3.4.0,<4.0.0"
     ```

     **Alternative**: If you skipped the optional dependencies, you can add them:

     For PyPI installation:
     ```bash
     pip install uesgraphs[templates]
     # or for complete installation:
     pip install uesgraphs[full]
     ```

     For editable/development installation:
     ```bash
     pip install -e <path/to/your/uesgraphs>[templates]
     # or for complete installation:
     pip install -e <path/to/your/uesgraphs>[full]
     ```

     **Important Notes**:
     - ✓ UESgraphs is compatible with **OMPython 3.x only** (versions `>=3.4.0,<4.0.0`)
     - ✗ OMPython 4.0.0+ introduces breaking API changes and is **not yet supported**
     - If you encounter the error `'OMCSessionZMQ' object has no attribute 'loadFile'`, downgrade OMPython:
       ```bash
       pip install "OMPython==3.6.0"
       ```

     **Tested Configurations**:
     - ✓ OpenModelica 1.24.4 + OMPython 3.6.0
     - ✓ OpenModelica 1.26.0 + OMPython 3.6.0

     For more information on OMPython, refer to the [OMPython documentation](https://openmodelica.org/doc/OpenModelicaUsersGuide/latest/ompython.html#ompython).


### :bulb: Usage

You can assemble a graph of an urban energy system by adding buildings, network
nodes and edges to an `UESGraph` object. The following code builds a heating
network from one building to another, connected via one network node:

```Python
import uesgraphs as ug
from shapely.geometry import Point

graph = ug.UESGraph()

supply = graph.add_building(
    name='Supply',
    position=Point(0, 10),
    is_supply_heating=True,
)
demand = graph.add_building(
    name='Building 1',
    position=Point(50, 15),
)
heating_node = graph.add_network_node(
    network_type='heating',
    position=Point(30, 5),
)

graph.add_edge(supply, heating_node)
graph.add_edge(heating_node, demand)
```

You can go on to plot this energy system with

```Python
vis = ug.Visuals(graph)
vis.show_network(
    show_plot=True,
    scaling_factor=30,
    )
```

![Example graph](./uesgraphs/img/graph.png)

Instead of building a graph from scratch, UESgraphs comes with an example
containing all supported energy network types. You can create this example
graph with

```Python
import uesgraphs as ug
from shapely.geometry import Point

graph = ug.simple_dhc_model()
graph = ug.add_more_networks(graph)

vis = ug.Visuals(example_district)
fig = vis.show_network(
    show_plot=True,
    scaling_factor=10,
)
```

This leads to the following plot:

![Example graph](./tests/baseline_images/01_district.png)

You can extract single networks into their own subgraph with

```Python
heating_network_1 = graph.create_subgraphs('heating')['default']
```

In the example above, this extracts the first of the two heating networks shown
in red:

![Example graph](./tests/baseline_images/02_heating_1.png)

You can use this graph framework to add data to the nodes and edges, e.g.

```Python
import uesgraphs as ug
from shapely.geometry import Point

graph = ug.UESGraph()

demand = graph.add_building(
    name='Building 1',
    position=Point(50, 15),
)

graph.nodes[demand]['heat_load_kW'] = 200
```

This can be used as a foundation to analyze networks or to generate models.

## Version Information

The package version can be accessed programmatically:

```python
import uesgraphs
print(f"UESgraphs version: {uesgraphs.__version__}")
```

## :herb: Branch strategy

Main branch: `master`

## :memo: Documentation

Further documentation is available in the `/doc` directory. There you find:

- Manual that gives a gist
- Development guidelines

## :page_facing_up: License

**UESgraphs** is released by RWTH Aachen University, E.ON Energy
Research Center, Institute for Energy Efficient Buildings and Indoor Climate,
under the
[MIT License](https://github.com/RWTH-EBC/uesgraphs/blob/master/LICENSE.md).

## :books: How to cite UESgraphs

To reference **UESgraphs**, please cite the following papers: 
+ (doi [10.1016/j.energy.2016.04.023](https://doi.org/10.1016/j.energy.2016.04.023)):

> M. Fuchs, J. Teichmann, M. Lauster, P. Remmen, R. Streblow, and D. Müller, “Workflow automation for combined modeling of buildings and district energy systems,” Energy, vol. 117, pp. 478–484, Dec. 2016.

The BibTex for this paper is:

```BibTex
@article{Fuchs2016,
  doi = {10.1016/j.energy.2016.04.023},
  url = {https://doi.org/10.1016/j.energy.2016.04.023},
  year  = {2016},
  month = {dec},
  publisher = {Elsevier {BV}},
  volume = {117},
  pages = {478--484},
  author = {Marcus Fuchs and Jens Teichmann and Moritz Lauster and Peter Remmen and Rita Streblow and Dirk M\"{u}ller},
  title = {Workflow automation for combined modeling of buildings and district energy systems},
  journal = {Energy}
}
```
### Related Publications
+ (doi [10.3390/en151243723](https://doi.org/10.3390/en15124372)):

> M. Mans, T. Blacha, T. Schreiber, and D. Müller, “Development and Application of an Open-Source Framework for Automated Thermal Network Generation and Simulations in Modelica,” Energies, vol. 15, no. 12, p. 4372, Jun. 2022.

The BibTex for this paper is:

```BibTex
@article{Mans2022,
  doi = {10.3390/en15124372},
  url = {https://doi.org/10.3390/en15124372},
  year  = {2022},
  month = {jun},
  publisher = {Energies},
  volume = {15},
  pages = {4372},
  author = {Michael Mans and Tobias Blacha and Thomas Schreiber and Dirk M\"{u}ller},
  title = {Development and Application of an Open-Source Framework for Automated Thermal Network Generation and Simulations in Modelica},
  journal = {Energies}
}
```

## :clap: Acknowledgements

This  work  was  supported  by  the  Helmholtz  Association  under  the  Joint  Initiative  “Energy System 2050 – A Contribution of the Research Field Energy”.

Parts of UESgraphs have been developed within public funded projects
and with financial support by BMWK (German Federal Ministry for Economic Affairs and Climate Action).

<img src="https://www.innovation-beratung-foerderung.de/INNO/Redaktion/DE/Bilder/Titelbilder/titel_foerderlogo_bmwi.jpg?__blob=normal" width="200">
