Skip to content

Commit

Permalink
deploy: 09bcc00
Browse files Browse the repository at this point in the history
  • Loading branch information
manuGil committed Nov 4, 2024
0 parents commit 19464bc
Show file tree
Hide file tree
Showing 99 changed files with 12,560 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .buildinfo
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 added .doctrees/developer/start.doctree
Binary file not shown.
Binary file added .doctrees/environment.pickle
Binary file not shown.
Binary file added .doctrees/index.doctree
Binary file not shown.
883 changes: 883 additions & 0 deletions .doctrees/nbsphinx/turotials/example.ipynb

Large diffs are not rendered by default.

Binary file added .doctrees/nbsphinx/turotials_example_13_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .doctrees/nbsphinx/turotials_example_19_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .doctrees/nbsphinx/turotials_example_7_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .doctrees/quick-start.doctree
Binary file not shown.
Binary file added .doctrees/references/engine-api.doctree
Binary file not shown.
Binary file added .doctrees/references/models.doctree
Binary file not shown.
Binary file added .doctrees/turotials/example.doctree
Binary file not shown.
Binary file added .doctrees/user/models.doctree
Binary file not shown.
Binary file added .doctrees/user/start.doctree
Binary file not shown.
Binary file added .doctrees/user/user-guide.doctree
Binary file not shown.
Empty file added .nojekyll
Empty file.
Binary file added _images/turotials_example_13_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/turotials_example_19_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/turotials_example_7_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions _sources/developer/start.md.txt
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/
```

56 changes: 56 additions & 0 deletions _sources/index.rst.txt
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`
3 changes: 3 additions & 0 deletions _sources/quick-start.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Quick Start

> Comming soon...
11 changes: 11 additions & 0 deletions _sources/references/engine-api.rst.txt
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
10 changes: 10 additions & 0 deletions _sources/references/models.rst.txt
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
883 changes: 883 additions & 0 deletions _sources/turotials/example.ipynb.txt

Large diffs are not rendered by default.

Loading

0 comments on commit 19464bc

Please sign in to comment.