-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #188 from openego/release/v0.6
Release/v0.6
- Loading branch information
Showing
27 changed files
with
2,972 additions
and
1,277 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
etrago/cluster/__pycache__/networkclustering.cpython-36.pyc | ||
eTraGo.egg-info/* | ||
src/* | ||
-eTraGo.egg-info/* | ||
-src/* |
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
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 |
---|---|---|
@@ -1,11 +1,53 @@ | ||
============ | ||
About eTraGo | ||
============ | ||
|
||
Optimization of flexibility options for transmission grids based on PyPSA. | ||
|
||
A speciality in this context is that transmission grids are described by the 380, 220 and 110 kV in Germany. Conventionally the 110kV grid is part of the distribution grid. The integration of the transmission and 'upper' distribution grid is part of eTraGo. | ||
A speciality in this context is that transmission grids are described by the | ||
380, 220 and 110 kV in Germany. Conventionally the 110kV grid is part of the | ||
distribution grid. The integration of the transmission and 'upper' distribution | ||
grid is part of eTraGo. | ||
|
||
The focus of optimization are flexibility options with a special focus on | ||
energy storages and grid expansion measures. | ||
|
||
The focus of optimization are flexibility options with a special focus on energy storages and grid expansion measures. | ||
|
||
The open_eGo project | ||
==================== | ||
This software project is part of the research project | ||
`open_eGo <https://openegoproject.wordpress.com>`_. | ||
|
||
|
||
The OpenEnergy Platform | ||
======================= | ||
With in this project we developted the OpenEnergy Platform which this software | ||
is using in order to get and store the in- and output data. Before you start to | ||
calculate a registration on the platform is needed. For more see | ||
`openenergy-platform <https://openenergy-platform.org/>`_ and login. | ||
|
||
|
||
LICENSE | ||
======= | ||
|
||
© Copyright 2015-2018 | ||
Flensburg University of Applied Sciences, | ||
Europa-Universität Flensburg, | ||
Centre for Sustainable Energy Systems and | ||
DLR-Institute for Networked Energy Systems | ||
|
||
|
||
|
||
This program is free software: you can redistribute it and/or modify it under | ||
the terms of the GNU Affero General Public License as published by the Free | ||
Software Foundation, either version 3 of the License, or (at your option) | ||
any later version. | ||
|
||
This program is distributed in the hope that it will be useful, but WITHOUT | ||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for | ||
more details. | ||
|
||
You should have received a copy of the GNU General Public License along | ||
with this program. | ||
If not, see `www.gnu.org/licenses <https://www.gnu.org/licenses/>`_. |
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
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
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
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,52 @@ | ||
|
||
=============== | ||
Developer notes | ||
=============== | ||
|
||
|
||
Installation for Developers | ||
=========================== | ||
|
||
The best way is to use a virtual environment. see: | ||
|
||
Step 2) Clone the source code from github | ||
|
||
.. code-block:: | ||
$ git clone https://github.com/openego/eTraGo | ||
$ git checkout dev | ||
With your activated environment `cd` to the cloned directory and run: | ||
|
||
.. code-block:: | ||
$ pip3 install -e eTraGo/ --process-dependency-links | ||
This will install all needed packages into your environment. | ||
Now you should be ready to go. | ||
|
||
|
||
Windows or Mac OSX users | ||
************************ | ||
|
||
|
||
|
||
- download and install github (https://desktop.github.com) | ||
|
||
- open GitHubDesktop and clone eTraGo from open_eGo | ||
|
||
- open an anaconda prompt as administrator and run: | ||
|
||
``` | ||
pip install -e path/to/Github/Folder/eTraGo | ||
``` | ||
|
||
``` | ||
pip install pandas == 0.20.3 (version 0.21 is not working!) | ||
``` | ||
|
||
- to check if everything is installed run: | ||
|
||
``` | ||
pip freeze | ||
``` |
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
Oops, something went wrong.