cantera/interfaces/matlab/toolbox/@Reactor/setKineticsMgr.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

11 lines
291 B
Matlab

function setKineticsMgr(r, k)
% SETKINETICSMGR - set the kinetics manager. This method is used
% internally during Reactor initialization, but is usually not
% called by users.
%
if ~isa(k,'Kinetics')
error('wrong object type');
end
reactormethods(7, reactor_hndl(r), kinetics_hndl(k));