Skip to content

Commit

Permalink
Merge pull request #943 from AlbertoCuadra/develop
Browse files Browse the repository at this point in the history
Update: comments
  • Loading branch information
AlbertoCuadra authored Feb 1, 2024
2 parents 966e7ab + bab985d commit 9a08fab
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions modules/self/Species/list_species.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function [self, LS] = list_species(varargin)
% Set list of species in the mixture (reactants and products)
% Set list of species in the mixture (products)
%
% Predefined list of species:
% * SOOT FORMATION (default)
Expand All @@ -17,9 +17,6 @@
% * HC/O2/N2 PROPELLANTS
% * SI/HC/O2/N2 PROPELLANTS
%
% Args:
% empty (none): return default list of species (soot formation)
%
% Optional Args:
% * self (struct): Data of the mixture, conditions, and databases
% * LS (cell): Name list species / list of species
Expand All @@ -31,6 +28,11 @@
%
% * self (struct): Data of the mixture, conditions, and databases
% * LS (cell): List of species
%
% Examples:
% * LS = list_species('soot formation');
% * [self, LS] = list_species(self, 'soot formation');
% * [self, LS] = list_species(self, 'complete', 1.5, 2.5);

% Unpack inputs
[self, LS, FLAG] = unpack(varargin{:});
Expand Down

0 comments on commit 9a08fab

Please sign in to comment.