Uwe Krien
Uwe Krien
> Would be cool if you could review too! If you want somebody to be a reviewer you can select him within the PR (top right). The person will be...
:+1: Would be a helpful feature.
What about `WindFarmCluster`?
I have two ideas how to deal with the problem. 1. We could convert all WindTurbines to WindFarms with just one Turbine. This is not very elegant but in my...
Does this problem persist or did you solve it by using the power curve. We could add something like a "force_to_max" method that will force the output to the nominal...
I use namedtuples as labels and do **NOT** convert them to strings. Doing so it is very easy to filter nodes. You can find some explanations in [this posting](https://forum.openmod-initiative.org/t/locations-and-energy-carriers-in-oemof/1266) or...
If you really want to use strings you can use a string or a normal tuple: ```python >>> label = "tag_1§tag2§tag3" >>> label.split('§') ['tag_1', 'tag2', 'tag3'] >>> label = tuple(['tag_1',...
The main point to discuss is the structure of the equations. The old equations were (more or less) mathematically exact. In the equations of the ExtractionTurbine the explicit time dependency...
Would be great to have consistent docstrings for v0.3.0. @oemof/oemof-assistants @oemof/documentation This is not too difficult and good issue for new developer.
Could you add this commit to PR #493. It is easier to review there.