Metadata-Version: 2.1
Name: oHySEM
Version: 1.0.3rc1
Summary: Optimized Hybrid Systems for Energy and Market management (oHySEM)
Home-page: https://ohysem.readthedocs.io/en/latest/index.html
Author: IIT-EnergySystemModels
Author-email: andres.ramos@comillas.edu
Requires-Python: >=3.11
Description-Content-Type: text/x-rst
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: pyomo>=5.7.3
Requires-Dist: matplotlib>=3.3.4
Requires-Dist: numpy>=1.20.1
Requires-Dist: pandas>=1.2.3
Requires-Dist: plotly>=5.7.0
Requires-Dist: colour>=0.1.5
Requires-Dist: altair>=5.0.0
Requires-Dist: psutil>=5.8.0
Requires-Dist: jsonschema>=4.16.0
Requires-Dist: networkx>=3.3
Requires-Dist: dill>=0.3.8


.. image:: doc/img/oHySEM_v2.png
   :target: https://ohysem.readthedocs.io/en/latest/index.html
   :alt: logo
   :align: center

|

\ **o**\ptimized \ **Hy**\brid  \ **S**\ystems for \ **E**\nergy and \ **M**\arket management **(oHySEM)**

|

.. image:: https://img.shields.io/pypi/v/ohysem
    :target: https://badge.fury.io/py/oHySEM
    :alt: PyPI

.. image:: https://img.shields.io/pypi/pyversions/ohysem
   :target: https://pypi.org/project/oHySEM/
   :alt: PyPI - Python Version

.. image:: https://img.shields.io/readthedocs/ohysem
   :target: https://ohysem.readthedocs.io/en/latest/index.html#
   :alt: Read the Docs

.. image:: https://img.shields.io/pypi/l/ohysem
   :target: https://github.com/IIT-EnergySystemModels/oHySEM/blob/main/LICENSE
   :alt: PyPI - License

.. image:: https://img.shields.io/pepy/dt/ohysem
   :target: https://www.pepy.tech/projects/ohysem
   :alt: Pepy Total Downloads

.. image:: https://app.codacy.com/project/badge/Grade/c676f237a6cc4fc88a2439da0611ae2f    
   :target: https://app.codacy.com/gh/IIT-EnergySystemModels/oHySEM/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade
   :alt: Codacy Badge

======================================================================================================

``Simplicity and Transparency in Power Systems Operation and Planning``

**oHySEM** is an open-source model distributed as a Python library, designed to provide optimal planning, operation, and management strategies for hybrid renewable electricity-hydrogen systems. It supports both stand-alone and grid-connected systems in participating in electricity and hydrogen markets, ensuring the seamless integration of new assets and efficient system scheduling.

Table of Contents
=================

1. `Overview <#overview>`_
2. `Features <#features>`_
3. `Installation <#installation>`_
4. `Getting Started <#getting-started>`_
5. `API Reference <#api-reference>`_
6. `Use Cases <#use-cases>`_
7. `Contributing <#contributing>`_
8. `License <#license>`_

---

Overview
========

**oHySEM** provides a robust framework for optimizing hybrid energy systems, incorporating renewable electricity and hydrogen networks. The library is designed for users needing advanced tools for integrated resource planning, asset integration, system scheduling, and market participation in electricity and hydrogen markets.

Key Applications:
-----------------

- **Optimal Planning & Scheduling**: Ensure efficient energy resource management in hybrid systems.
- **Integrated Resource Planning (IRP)**: Plan long-term energy strategies integrating multiple energy sources.
- **Market Participation**: Engage in real-time electricity markets and future hydrogen markets.
- **Asset Integration**: Seamlessly incorporate new assets (e.g., renewable generators, storage units) into the system.
- **Self-scheduling**: Operation planning of the hybrid system. 

---

Features
========

- **Hybrid System Modeling**: Simulate and optimize the interaction between renewable electricity and hydrogen systems.
- **Market Integration**: Enable systems to participate in energy markets and optimize based on market conditions.
- **Asset Integration**: Support dynamic integration of new energy assets into the system.
- **Grid and Stand-alone Systems**: Model systems that are either grid-connected or self-sufficient.
- **Scalable**: Suitable for small- to large-scale hybrid power plants and virtual power plants (VPPs).

---

Installation
============

Install **oHySEM** using pip:

.. code-block:: bash

    pip install ohysem

Alternatively, clone the GitHub repository and install it manually:

.. code-block:: bash

    git clone https://github.com/yourusername/ohysem.git
    cd oHySEM
    pip install .

---

Getting Started
===============

Here’s a basic example of how to create and run an optimization model using oHySEM:

.. code-block:: python

    import oHySEM as oH

    # Define your hybrid system
    system = oH.HybridSystem()

    # Add energy assets
    system.add_asset(oH.SolarPlant(capacity=100))  # 100 MW solar plant
    system.add_asset(oH.HydrogenStorage(capacity=50))  # 50 MWh hydrogen storage

    # Define market participation and scheduling parameters
    market = oH.MarketParticipation()
    scheduler = oH.Scheduler(system, market)

    # Run optimization
    results = scheduler.optimize()

    # Display results
    print(results)

This example shows how to create a basic hybrid system, integrate assets, and run an optimization for market participation and scheduling.

---

API Reference
=============

The API gives users full flexibility in defining, integrating, and optimizing hybrid systems. The following are key components:

``HybridSystem()``
    - Purpose: Represents the hybrid energy system, including both electricity and hydrogen networks.
    - Methods: add_asset(), optimize(), schedule(), etc.

``MarketParticipation()``
    - Purpose: Represents the system's participation in electricity and hydrogen markets.
    - Methods: define_market_conditions(), participate(), etc.

``Scheduler()``
    - Purpose: Optimizes the hybrid system's operation based on system constraints and market signals.
    - Methods: optimize(), get_results()

Please refer to the full API documentation for more detailed usage and advanced configurations.

---

Use Cases
=========

- **Grid-connected Hybrid Systems**: Optimize energy flows between electricity and hydrogen markets while meeting grid regulations.
- **Stand-alone VPPs**: Use oHySEM to ensure optimal operation for off-grid renewable systems.
- **Integrated Resource Planning (IRP)**: Plan the addition of new renewable assets and storage units to meet long-term energy goals.
- **Market Participation**: Optimize market bids for both electricity and future hydrogen markets.

---

Contributing
============

Contributions to oHySEM are welcome! Please refer to our Contributing Guide for more information on how to contribute to the project.

---

License
=======

oHySEM is licensed under the GPL-3.0 license. See the `LICENSE file <https://github.com/IIT-EnergySystemModels/oHySEM/blob/main/LICENSE>`_ for details.

