-
Hello community, i am new to the TESPy package and am currently trying out many examples to increase my understanding. ValueError: Pressure to PQ_flash [ 5e+06 Pa] must be in range [0.000171848 Pa, 4.2512e+06 Pa]. This error message also appears specifically in the example: Link: https://oemof.github.io/heat-pump-tutorial/getting-started/5-minutes-into-tespy.html Can someone please suggest a solution to this problem? Thank you very much! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hi, thank you for reporting, does it happen with the code as is or if modified by you? Thanks! Best Francesco |
Beta Was this translation helpful? Give feedback.
Du verwendest noch die alte API. Man sollte (bis auf in wenigen Nischenanwendungen) nicht mehr
fluid={"a": 1, "b":0}
sondern nur nochfluid={"a": 1}
verwenden. Es kann sein, dass das der Grund für den Fehler ist.In deinem environment musst du zum Aktualisieren von TESPy
pip install tespy --upgrade
oderconda update tespy
(je nachdem, ob du mit pip oder mit conda installiert hast)ausführen und dann spyder neu starten.
Viele Grüße