cantera/interfaces/matlab/toolbox/@ThermoPhase/maxTemp.m
Ray Speth 2528df0f75 Reorganized source tree structure
These changes make it unnecessary to copy header files around during
the build process, which tends to confuse IDEs and debuggers. The
headers which comprise Cantera's external C++ interface are now in
the 'include' directory.

All of the samples and demos are now in the 'samples' subdirectory.
2012-02-12 02:27:14 +00:00

12 lines
465 B
Matlab

function v = maxTemp(p)
% MAXTEMP - Maximum temperature.
%
% The parameterizations used to represent the temperature-dependent
% species thermodynamic properties are generally only valid in some
% finite temperature range, which may be different for each species
% in the phase. This method returns the highest temperature at which
% the parameterizations are valid for all species in the phase.
%
% See also: minTemp
%
v = thermo_get(p.tp_id,17);