-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 19464bc
Showing
99 changed files
with
12,560 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 84e2c76a5f957d4cd237c1d518258990 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Set Up Environment | ||
|
||
**Requirements** | ||
* Python >= 3.11 | ||
* Recent version of PIP | ||
|
||
|
||
To set up a development environment: | ||
|
||
1. Clone the repository: | ||
|
||
```shell | ||
git clone git@github.com:Illuminator-team/Illuminator.git | ||
``` | ||
|
||
2. Go the root tof the repository: | ||
|
||
```shell | ||
cd Illuminator/ | ||
``` | ||
|
||
3. install the development dependencies in editable mode: | ||
|
||
```shell | ||
pip install -e .e | ||
``` | ||
|
||
## Running Unit Tests | ||
|
||
We use `Pytest` to write and test the source code. To run all unit-tests, run the following command at the root of the repository: | ||
|
||
``` | ||
pytest tests/ | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
.. Illuminator documentation master file, created by | ||
sphinx-quickstart on Wed Jul 31 14:38:44 2024. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
Illuminator documentation | ||
========================= | ||
|
||
|
||
The Illuminator is an easy-to-use Energy System Integration | ||
Development kit to demystify energy system operation, illustrate challenges | ||
that arise due to the energy transition and test | ||
state-of-the-art energy management concepts. we utilise Raspberry Pis | ||
as the individual components of the energy system emulator, | ||
and the simulation engine is based on `Mosaik. <https://mosaik.offis.de/>`_ | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Contents | ||
|
||
quick-start | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: User's Documentation | ||
|
||
user/start | ||
user/user-guide | ||
user/models | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Tutorials | ||
|
||
turotials/example.ipynb | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Developer's Documentation | ||
|
||
developer/start | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: References | ||
|
||
references/models.rst | ||
references/engine-api.rst | ||
|
||
Indices and tables | ||
================== | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Quick Start | ||
|
||
> Comming soon... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Engine's API | ||
===================== | ||
|
||
.. automodule:: illuminator.engine | ||
:members: | ||
:show-inheritance: | ||
|
||
|
||
|
||
.. | ||
more about autodoc: https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#module-sphinx.ext.autodoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Illumator Models | ||
===================== | ||
|
||
.. autoclass:: illuminator.models.Battery.battery_model::BatteryModel | ||
:members: | ||
:undoc-members: this not necessary when docstrings are written | ||
|
||
|
||
.. | ||
more about autodoc: https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#module-sphinx.ext.autodoc |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.