11 lines
317 B
Matlab
11 lines
317 B
Matlab
function v = entropy_mole(tp)
|
|
% ENTROPY_MOLE Get the mole specific entropy.
|
|
% v = entropy_mole(tp)
|
|
% :param tp:
|
|
% Instance of class :mat:func:`ThermoPhase` (or another
|
|
% object that derives from ThermoPhase)
|
|
% :return:
|
|
% Molar specific entropy of the mixture. Units: J/kg
|
|
%
|
|
|
|
v = thermo_get(tp.tp_id, 4);
|