The threshold for printing species is a new, optional parameter to the 'report' function. If any species are excluded, the total number of minor species and their aggregate mass and mole fraction are printed.
5 lines
122 B
Matlab
5 lines
122 B
Matlab
function display(self, threshold)
|
|
if nargin < 2
|
|
threshold = 1e-14
|
|
end
|
|
phase_get(thermo_hndl(self), 15, 1, threshold);
|