File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11"""
22The ``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
59There are mainly three steps. First you have to import your weather data, then
610you need to specify your wind turbine, and in the last step call the
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ def read(fname):
55 return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
66
77setup (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' ,
Original file line number Diff line number Diff line change 11__copyright__ = "Copyright oemof developer group"
22__license__ = "GPLv3"
3- __version__ = '0.0.6 '
3+ __version__ = '0.1.0 '
44
55from windpowerlib .wind_turbine import WindTurbine
66from windpowerlib .wind_farm import WindFarm
You can’t perform that action at this time.
0 commit comments