From cf49649dd86a6c68cc8291e73c13a77eac3d1069 Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Sat, 26 Dec 2015 14:49:47 -0500 Subject: [PATCH] [Matlab] Move lowercase air.m to uppercase Air.m to be consistent with the other PureFluid functions --- interfaces/matlab/toolbox/{air.m => Air.m} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename interfaces/matlab/toolbox/{air.m => Air.m} (56%) diff --git a/interfaces/matlab/toolbox/air.m b/interfaces/matlab/toolbox/Air.m similarity index 56% rename from interfaces/matlab/toolbox/air.m rename to interfaces/matlab/toolbox/Air.m index 886d84f9b..67b2f59c1 100644 --- a/interfaces/matlab/toolbox/air.m +++ b/interfaces/matlab/toolbox/Air.m @@ -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');