Uwe Krien
Uwe Krien
Travis becomes problematic, because of the new pricing model. Therefore, we should use github workflows as e.g. oemof.solph. Furthermore, we should use tox to improve local tests. I already tested...
Fixes #70. I would prefer to make sure that all classes will have the attributes needed in WindTurbineCluster. It is also possible to convert a WindTurbine to a WindFarm with...
The input of the `WindTurbineCluster` is a list of `WindFarm` objects. `WindTurbine` objects are not allowed. I think we should either rename the class or allow `WindTurbine` objects or both.
In my opinion the way kwargs is used in this method is confusing. I think we should revise the concept. Or maybe I just do not understand it.
We decided to move the solph examples to the solph repository.
The actual documentation of this PR: https://oemof-solph.readthedocs.io/en/docs-revise-docstrings/reference/ We have dozen of wrong references in our docstrings and some equations are unreadable. It is a lot of work for one person...
* Add the possibility to add all dual variables to the results dictionary. By now it is only possible to get the dual variables of the buses. * The API...
The `FLow` attributes `summed_max` and `summed_min` can be used to define the minimum or maximum amount of energy of a Flow summarised over the whole period. Due to the Investment...
In issue #591 the idea came up to introduce facade or alias components in solph. @p-snft presented a concrete proposal ```python class solph.custom.airsource_heatpump(solph.Transformer): def __init__(**kwargs): cop = heat.airsource_heatpump.cop(**kwargs) parent().__init__(conversion_factors={b_el: cop}),...
In the block classes you can find the following lines: ```python if group is None: return None ``` I was thinking about how to test this line but I could...