Heat pump model behavior with UA against ttd in evaporator and condenser #951
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
|
Hi Jan, there is a couple things happening here. First, please do the following: Rerun your first simulation (the one with the fixed ttd_l) and output the UA that results for that instead of the COP. Can you post that plot here? To the error: With the fixed UA you set to the model the solver cannot find a solution, which has a non-negative pinch internally. With negative pinch the UA equation does not work and it would make the solver crash. Therefore, TESPy locally adjusts the outcome of the equation. The simulation converges but always with the adjustment in place, which means, that the result is invalid. Something to help can be sorting the simulations you do in a specific order, i.e., in a way that the change between one simulation and the next one is as small as possible. We can have a short meeting if you are interested and see how we can make that work in your model. Best |
Beta Was this translation helpful? Give feedback.





You can already see in the
UAplots how vastly different the numbers are based on the other boundary conditions. You can try to make use of the structure in the sensitivity_analysis method:This will much improve numerical stability of the simulations. To keep track, if a simulation was successful, use
Network.statusvariable also. If status is != 0, then there was an issue in the simulation. Also, maybe use the current dev branch implementation, I improved convergence beh…