eGo

Overview of modules

scenario_settings.json

With the scenario_settings.json file you set up your calcualtion. The file can be found on github.

appl.py

This is the application file for the tool eGo. The application eGo calculates the distribution and transmission grids of eTraGo and eDisGo.

Note

Note, the data source of eGo relies on the Open Energy Database. - The registration for the public accessible API can be found on openenergy-platform.org/login.

Run the appl.py file with:

>>> python3 -i appl.py
>>> ...
>>> INFO:ego:Start calculation
>>> ...

The eGo application works like:

>>> from ego.tools.io import eGo
>>> ego = eGo(jsonpath='scenario_setting.json')
>>> ego.etrago_line_loading()
>>> print(ego.etrago.storage_costs)
>>> ...
>>> INFO:ego:Start calculation
>>> ...