-
Notifications
You must be signed in to change notification settings - Fork 3
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 #7 from project-angus/dev
Merge current dev to master.
- Loading branch information
Showing
66 changed files
with
297,052 additions
and
586 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,19 @@ | ||
language: python | ||
|
||
matrix: | ||
include: | ||
- python: 3.5 | ||
- python: 3.7 | ||
dist: xenial | ||
sudo: true | ||
|
||
install: | ||
- pip install . | ||
- pip install coveralls | ||
|
||
# command to run tests | ||
script: | ||
- nosetests --with-doctest --with-coverage -c nose.cfg | ||
|
||
after_success: | ||
- coveralls |
Binary file not shown.
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,5 +1,9 @@ | ||
~~~~~~~~~~~~~~~~~~~~ | ||
IF_PPlant_GeoStorage | ||
~~~~~~~~~~~~~~~~~~~~ | ||
Zusammenfassung | ||
+++++++++++++++ | ||
|
||
Software interface between power plant and storage model | ||
Die Schnittstelle zwischen Kraftwerk und geologischem Speicher stellt eine flexible Methode zum Koppeln einer Speichersimulation mit dem Betrieb von Kraftwerksanlagen. Der Speicherbetrieb wird mit Hilfe von Entscheidungsregeln gesteuert und übergibt die Schnittstellenparameter zwischen den Modellen automatisch. Der modulare Aufbau der Softwareschnittstelle erlaubt es, zwischen unterschiedlichen Simulationsmodellen für Speicher und Kraftwerk auszuwählen. | ||
|
||
Abstract | ||
++++++++ | ||
|
||
The Power Plant Geostorage Interface provides a flexible method to couple the simulation of a geological storage to the operation of a power plant. The interface provides a operation control logic and exchanges the interface parameters between the sotrage and the power plant model automatically. Due to a modular architecture, it is possible to choose between different simulation models for the power plant and the geological storage. |
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 @@ | ||
""" | ||
.. moduleauthor:: Francesco Witte <[email protected]> | ||
""" | ||
__version__ = '0.0.1 dev' | ||
|
||
from coupled_simulation import coupling as cp | ||
from coupled_simulation import powerplant as pp | ||
from coupled_simulation import geostorage as gs | ||
from coupled_simulation import utilities as util |
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.