-
|
Hello, When i am using Moving boundary heat exchanger as my condensor even though the ttd_u and ttd_l values are much greater than 0 but the td_pinch is getting below 0. How to control the td_pinch value not getting negative ? ttd_u : 7.29e+00 I understand ttd_pinch is the minimum temperature difference between hot and cold fluid that could be within the heat exchanger. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
You can just impose the desired value for The profile can be retrieved with |
Beta Was this translation helpful? Give feedback.
-
|
Thanks. |
Beta Was this translation helpful? Give feedback.
You can just impose the desired value for
td_pinch, e.g.condenser.set_attr(td_pinch=2.5).The profile can be retrieved with
heat, T_hot, T_cold, _, _ = condenser.calc_sections()and then plot the temperatures over heat exchanged.