[Matlab] Move lowercase air.m to uppercase Air.m to be consistent with the other PureFluid functions
This commit is contained in:
parent
9977fd6f49
commit
cf49649dd8
1 changed files with 4 additions and 4 deletions
|
|
@ -1,12 +1,12 @@
|
|||
function gas = air
|
||||
function gas = Air()
|
||||
% AIR Create an object representing air.
|
||||
% gas = air
|
||||
% gas = Air()
|
||||
% Air is modeled as an ideal gas mixture. The specification is taken
|
||||
% from file air.cti. Several reactions among oxygen and nitrogen are
|
||||
% from file ``air.xml``. Several reactions among oxygen and nitrogen are
|
||||
% defined.
|
||||
%
|
||||
% :return:
|
||||
% Instance of class :mat:func:`Solution`
|
||||
%
|
||||
|
||||
gas = Solution('air.cti', 'air');
|
||||
gas = Solution('air.xml', 'air');
|
||||
Loading…
Add table
Reference in a new issue