11 lines
323 B
Matlab
11 lines
323 B
Matlab
function v = enthalpy_mole(tp)
|
|
% ENTHALPY_MOLE Get the mole specific enthalpy.
|
|
% v = enthalpy_mole(tp)
|
|
% :param tp:
|
|
% Instance of class :mat:func:`ThermoPhase` (or another
|
|
% object that derives from ThermoPhase)
|
|
% :return:
|
|
% Molar specific enthalpy of the mixture. Units: J/kmol
|
|
%
|
|
|
|
v = thermo_get(tp.tp_id, 2);
|