How to calculate the value of specific enthalpy of R134a in vapor state?
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 18 Août 2017
Modifié(e) : MathWorks Support Team
le 30 Déc 2021
Why does the calculated enthalpy value of R134a in vapor state differ from the value shown in the following diagram?

Réponse acceptée
MathWorks Support Team
le 30 Déc 2021
Modifié(e) : MathWorks Support Team
le 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.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Thermal Analysis dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!