You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Patrik Schönfeldt edited this page Mar 5, 2020
·
5 revisions
This is a list of badly handled errors in oemof app development as suggested in #514. As we assume that errors we name here are regularly mad, we dubbed them "frequently occurring errors" (FOEs).
AttributeError: 'EnergySystem' object has no attribute 'signals'
ERROR-Optimization failed with status warning and terminal condition infeasible
The energy system (oemof.solph) is designed in a way that there is no solution. Often, there is inflexible (fixed) demand that cannot be fulfilled. Another option is that a fixed (over-) supply cannot go anywhere.
Solving strategies:
Add an additional Source that acts as backup/shortage (and does not represent any actual unit of the energy system) - it will make the energy system feasible.
To check swiftly whether or not it is the Sink/Source that causes the problem release the boundary condition Flow(fixed=True) and set it fixed=False.