Exergy Analysis for heatpump #568
Replies: 2 comments 1 reply
|
Hi @Adefunmike, you are missing saturation state information after the condenser Best |
|
Thanks for the help so far Define ambient conditionspamb = 1e5 # Ambient pressure in Pa Define exergy busesE_F = Bus("Fuel Exergy") Add components to busesE_F.add_comps({'comp': compressor}) # Compressor work as fuel Perform exergy analysisex = ExergyAnalysis(network=nw, E_F=[E_F], E_P=[E_P]) Print resultsex.print_results() |

Hi @Adefunmike,
you are missing saturation state information after the condenser
x=0and the evaporatorx=1as well as pressure drop in those components. For that reason I would also not specify the pressure after compression and expansion, but let that be a result from the heat exchangers' pressure drops. Finally, the compressor outlet state is not determined, it misses a temperature or the compressor misses an efficiency value.Best