Fix minor docs typo in Matlab enthalpy_mole
This commit is contained in:
parent
8a86fed0ca
commit
9bba45b01e
1 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
function v = enthalpy_mole(a)
|
||||
function v = enthalpy_mole(tp)
|
||||
% ENTHALPY_MOLE Get the mole specific enthalpy.
|
||||
% v = enthalpy_mole(a)
|
||||
% v = enthalpy_mole(tp)
|
||||
% :param tp:
|
||||
% Instance of class :mat:func:`ThermoPhase` (or another
|
||||
% object that derives from ThermoPhase)
|
||||
|
|
@ -8,4 +8,4 @@ function v = enthalpy_mole(a)
|
|||
% Vector of molar specific enthalpies of the species. Units: J/kmol
|
||||
%
|
||||
|
||||
v = thermo_get(a.tp_id, 2);
|
||||
v = thermo_get(tp.tp_id, 2);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue