[Matlab] Remove spurious arguments from scripts for running examples

This commit is contained in:
Ray Speth 2018-01-24 15:46:56 -05:00
parent 411be3e6cf
commit a31b7d1bb5
2 changed files with 11 additions and 11 deletions

View file

@ -1,15 +1,15 @@
% runs all examples
equil(0);
equil();
disp('press any key to continue');
pause
isentropic(0);
isentropic();
disp('press any key to continue');
pause
reactor1(0);
reactor1();
disp('press any key to continue');
pause
reactor2(0);
reactor2();
disp('press any key to continue');
pause
surfreactor;
@ -21,10 +21,10 @@ pause;
rankine(300.0, 2.0*oneatm, 0.8, 0.7);
disp('press any key to continue');
pause;
prandtl1(0);
prandtl1();
disp('press any key to continue');
pause
prandtl2(0);
prandtl2();
disp('press any key to continue');
pause
flame1

View file

@ -1,12 +1,12 @@
% runs selected examples without pausing
equil(0);
isentropic(0);
reactor1(0);
reactor2(0);
equil();
isentropic();
reactor1();
reactor2();
surfreactor;
periodic_cstr;
rankine(300.0, 2.0*oneatm, 0.8, 0.7);
prandtl1(0);
prandtl1();
flame1;
catcomb;
exit;