mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
Added class destructor for Interface class.
This commit is contained in:
parent
798dd7f3a4
commit
526f64ec36
@ -58,9 +58,20 @@ classdef Interface < handle & ThermoPhase & Kinetics
|
||||
end
|
||||
|
||||
s@Kinetics(t, src, id, args{:});
|
||||
|
||||
s.tpClear;
|
||||
s.tpID = t.tpID;
|
||||
end
|
||||
|
||||
%% Interface Class Destructor
|
||||
|
||||
function delete(s)
|
||||
% Delete :mat:class:`Interface` object.
|
||||
s.tpClear;
|
||||
|
||||
disp('Interface class object has been deleted');
|
||||
end
|
||||
|
||||
%% Interface Get Methods
|
||||
|
||||
function c = coverages(s)
|
||||
|
Loading…
Reference in New Issue
Block a user