Exergy Analysis for heatpump #568
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @Adefunmike, you are missing saturation state information after the condenser Best |
Beta Was this translation helpful? Give feedback.
-
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() |
Beta Was this translation helpful? Give feedback.
Hi @Adefunmike,
you are missing saturation state information after the condenser
x=0
and the evaporatorx=1
as 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