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.
20 lines
686 B
Matlab
Executable file
20 lines
686 B
Matlab
Executable file
function v = mixDiffCoeffs(a)
|
|
%MIXDIFFCOEFFS Mixture-averaged diffusion coefficients (m^2/s).
|
|
%
|
|
% d = mixDiffCoeffs(gas)
|
|
%
|
|
% returns in column vector d the mixture-averaged diffusion
|
|
% coefficients. Object 'gas' must belong to a class derived from
|
|
% Transport, and that was constructed by specifying the 'Mix'
|
|
% option. If 'Mix' was not specified, you will get the error message
|
|
%
|
|
% **** Method getMixDiffCoeffs not implemented. ****
|
|
%
|
|
% In this case, try method 'multiDiffCoeffs', or create a new gas
|
|
% mixture model that uses a mixture-averaged transport manager,
|
|
% for example:
|
|
%
|
|
% gas = GRI30('Mix')
|
|
%
|
|
v = trans_get(a.id, 11, nSpecies(a.th));
|
|
|