Skip to content

Commit 0ebac01

Browse files
committed
Merge branch 'release_branch' into dev
2 parents 63fa13f + cc310b5 commit 0ebac01

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

example/modelchain_example.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
"""
22
The ``modelchain_example`` module shows a simple usage of the windpowerlib by
3-
using the :class:`~.modelchain.ModelChain` class.
3+
using the :class:`~.modelchain.ModelChain` class. The modelchains are
4+
implemented to ensure an easy start into the Windpowerlib. They work like
5+
models that combine all functions provided in the library. Via parameteres
6+
desired functions of the windpowerlib can be selected. For parameters not being
7+
specified default parameters are used.
48
59
There are mainly three steps. First you have to import your weather data, then
610
you need to specify your wind turbine, and in the last step call the

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def read(fname):
55
return open(os.path.join(os.path.dirname(__file__), fname)).read()
66

77
setup(name='windpowerlib',
8-
version='0.0.6',
8+
version='0.1.0',
99
description='Creating time series from wind power plants.',
1010
url='http://github.com/wind-python/windpowerlib',
1111
author='oemof developing group',

windpowerlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__copyright__ = "Copyright oemof developer group"
22
__license__ = "GPLv3"
3-
__version__ = '0.0.6'
3+
__version__ = '0.1.0'
44

55
from windpowerlib.wind_turbine import WindTurbine
66
from windpowerlib.wind_farm import WindFarm

0 commit comments

Comments
 (0)