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.
7 lines
234 B
Matlab
Executable file
7 lines
234 B
Matlab
Executable file
function gas = air
|
|
% AIR - create an object representing air.
|
|
%
|
|
% Air is modeled as an ideal gas mixture, and several reactions
|
|
% are defined. The specification is taked from file air.xml.
|
|
%
|
|
gas = importPhase('air.cti','air');
|