There are three problems with this function. It does not work, since it calls ctmethods with the wrong number of arguments. Even if that were fixed, it wouldn't do what it claims, as the method it calls generates a CTI file, not an XML file. Finally, it is redundant, as the 'ck2cti' function can be used for generating the CTI file, and the CTI to XML conversion is handled automatically when importing the phase. Therefore, this function is being removed.
55 lines
1.9 KiB
Matlab
Executable file
55 lines
1.9 KiB
Matlab
Executable file
function s = IdealGasMix(a,b,c)
|
|
% IDEALGASMIX - Create a Solution instance representing an ideal gas mixture.
|
|
%
|
|
% gas1 = IdealGasMix('ctml_file'[,'transport_model'])
|
|
% gas2 = IdealGasMix('ck_file'[,'thermo_db'[,'tran_db'[,'transport_model']]])
|
|
%
|
|
% creates an object that represents an ideal gas mixture. The
|
|
% species in the mixture, their properties, and the reactions among
|
|
% the species, if any, are specified in file 'input_file'. Two
|
|
% input file formats are supported - CTML and CK
|
|
% (Chemkin-compatible). Examples:
|
|
%
|
|
% g1a = IdealGasMix('mech.xml')
|
|
% g1b = IdealGasMix('mech.xml','Multi')
|
|
% g2 = IdealGasMix('mech2.inp')
|
|
% g3 = IdealGasMix('mech3.inp','therm.dat')
|
|
% g4 = IdealGasMix('mech4.inp','therm.dat','tran.dat','Mix')
|
|
%
|
|
% Objects g1a and g1b are created from a CTML file. CTML files
|
|
% contain all data required to build the object, and do not require
|
|
% any additional database files. Objects g2 - g4 are created from
|
|
% CK-format input files. For g2, 'mech2.inp' contains all required
|
|
% species thermo data. File 'mech3.inp' is missing some or all
|
|
% species thermo data, and requires database file 'therm.dat.'
|
|
% Object g4 is created including transport data.
|
|
%
|
|
% Note that calling IdealGasMix with a CK-format input file
|
|
% also creates an equivalent CTML file that may be used in future
|
|
% calls. If the initial call includes a transport database, then
|
|
% the CTML file will contain transport data.
|
|
%
|
|
% See also: ck2cti, Solution
|
|
%
|
|
dotloc = findstr(a,'.');
|
|
if dotloc(end) > 1
|
|
ext = a(dotloc(end):end);
|
|
if ~strcmp(ext,'.inp')
|
|
if nargin == 1
|
|
s = Solution(a);
|
|
elseif nargin == 2
|
|
s = Solution(a, b);
|
|
end
|
|
return
|
|
end
|
|
end
|
|
|
|
if nargin == 1
|
|
b = '-';
|
|
c = '-';
|
|
elseif nargin == 2
|
|
c = '-';
|
|
end
|
|
xml = ck2cti(a,b,c);
|
|
s = Solution(xml);
|
|
set(s,'P',oneatm);
|