[Matlab] Move lowercase air.m to uppercase Air.m to be consistent with the other PureFluid functions

This commit is contained in:
Bryan W. Weber 2015-12-26 14:49:47 -05:00
parent 9977fd6f49
commit cf49649dd8

View file

@ -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');