12 lines
358 B
Matlab
12 lines
358 B
Matlab
function v = intEnergy_mole(tp)
|
|
% INTENERGY_MOLE Get the mole specific internal energy.
|
|
% v = intEnergy_mole(tp)
|
|
% :param tp:
|
|
% Instance of class :mat:func:`ThermoPhase` (or another
|
|
% object that derives from ThermoPhase)
|
|
% :return:
|
|
% Vector of mole specific internal energies of the species.
|
|
% Units: J/kmol
|
|
%
|
|
|
|
v = thermo_get(tp.tp_id, 3);
|