Replies: 2 comments 11 replies
-
Hi @lennipapa,
I guess, you need
Not yet, I might implement something soon but cannot promise, or you can make a pull request. |
Beta Was this translation helpful? Give feedback.
-
|
Hi @lennipapa, I did not have time to thoroughly look into the issue, were you able to resolve it? In any case, the problem is, that you cannot have variable inlet guide vane angle for both compressors or you must control one of the pressure ratios of the compressors: cp1.set_attr(design=["eta_s"], offdesign=['char_map_pr', 'char_map_eta_s']) # pressure ratio of cp1 was fixed previously and remains fixed
cp2.set_attr(design=["eta_s"], offdesign=['char_map_pr', 'char_map_eta_s'])
cp1.set_attr(igva='var')
cp2.set_attr(igva='var')or cp1.set_attr(design=["eta_s", "pr"], offdesign=['char_map_pr', 'char_map_eta_s']) # pressure ratio of cp1 was fixed previously and remains fixed
cp2.set_attr(design=["eta_s"], offdesign=['char_map_pr', 'char_map_eta_s'])
cp1.set_attr(igva=0)
cp2.set_attr(igva='var')For the standard UA offdesign characteristics you will have to wait a good more month for me to implement it, otherwise look into the heat exchanger source code and modify it to your needs: tespy/src/tespy/components/heat_exchangers/sectioned.py Lines 707 to 774 in f6fa9b3 Best Francesco |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm implementing part-load analysis for the two-stage NH3 heat pump from the documentation and have two questions:
When using [offdesign=['char_map_pr_group', 'char_map_eta_s_group'], my system is under-determined. What additional constraints are needed for proper compressor map usage in offdesign?
For MovingBoundaryHeatExchanger, is there a simpler offdesign method than UA_cecchinato? The required parameters (alpha_ratio, re_exp_r, re_exp_sf) are hard to find in literature and probably differ for different fluids/geometries. Is there a chance to use UA_char similar to regular HeatExchanger?
Thanks!
stepwise (3).py
Beta Was this translation helpful? Give feedback.
All reactions