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.
10 lines
284 B
Matlab
Executable file
10 lines
284 B
Matlab
Executable file
function v = binDiffCoeffs(a)
|
|
%BINDIFFCOEFFS Binary diffusion coefficients (m^2/s).
|
|
%
|
|
% d = binDiffCoeffs(gas)
|
|
%
|
|
% returns the matrix of binary diffusion coefficients in array
|
|
% d. The matrix is symmetric: d(i,j) = d(j,i).
|
|
%
|
|
v = trans_get(a.id, 21, nSpecies(a.th));
|
|
|