How to calculate the value of specific enthalpy of R134a in vapor state?

9 Ansichten (letzte 30 Tage)
Why does the calculated  enthalpy value of R134a in vapor state differ from the value shown in the following diagram? 

Akzeptierte Antwort

MathWorks Support Team
MathWorks Support Team am 30 Dez. 2021
Bearbeitet: MathWorks Support Team am 22 Nov. 2021
Since you are interpolating the value of specific internal energy "u", you are observing this difference. 
 
You can compute specific enthalpy "h" from the specific internal energy "u", pressure "p", and specific volume "v":
>> u_sat_v = interp1( r134aPropertyTables.p, r134aPropertyTables.vapor.u_sat, p)
>> v_sat_v = interp2( r134aPropertyTables.p, r134aPropertyTables.vapor.unorm, r134aPropertyTables.vapor.v, p, 1)
>> h_sat_v = u_sat_v + p*1e3*v_sat_v
To get "v_sat_v", I interpolated the table at unorm = 1, where "unorm" is what we call the normalized internal energy, because that corresponds to the vapor saturation line. 
For liquid, specific volume is very small, so specific enthalpy and specific internal energy are very close in value.
In general, please be careful about comparing values of enthalpy, internal energy, and entropy from different sources because they are state properties, which means they can have an arbitrary reference value.

Weitere Antworten (0)

Kategorien

Mehr zu Thermal Analysis finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by