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.
13 lines
446 B
Matlab
Executable file
13 lines
446 B
Matlab
Executable file
function v = thermalDiffCoeffs(a)
|
|
%THERMALDIFFCOEFFS Thermal diffusion coefficients.
|
|
%
|
|
% dt = thermalDiffCoeffs(gas)
|
|
%
|
|
% returns in column vector dt the thermal diffusion
|
|
% coefficients. Object 'gas' must belong to a class derived from
|
|
% Transport, and that was constructed by specifying the 'Multi'
|
|
% option. If 'Multi' was not specified, the returned values will
|
|
% all be zero.
|
|
%
|
|
v = trans_get(a.id, 12, nSpecies(a.th));
|
|
|