diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1226/CH17/EX17.26/EX17_26.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1226/CH17/EX17.26/EX17_26.sce')
-rwxr-xr-x | 1226/CH17/EX17.26/EX17_26.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1226/CH17/EX17.26/EX17_26.sce b/1226/CH17/EX17.26/EX17_26.sce new file mode 100755 index 000000000..e41fc0e0c --- /dev/null +++ b/1226/CH17/EX17.26/EX17_26.sce @@ -0,0 +1,16 @@ +clc;funcprot(0);//EXAMPLE 17.26
+// Initialisation of Variables
+n=1.3;...................//Index of compression
+pa=1.4;pb=3.6;posa=(1/4);..........//Point a - the position 1/4 of the stroke
+posb=(3/4);..........//Point b - the position 3/4 of the stroke
+ga=1.4;...............//Degree of freedom for gas
+etarel=0.4;...................//Relative efficiency
+C=18800;....................//Calorific value of fuel in kJ/m^3
+//Calculations
+r=1+((((pb/pa)^(1/n))-1)/(posb-(((pb/pa)^(1/n))*(posa))));.........//Compression ratio
+disp(r,"The compression ratio :")
+etast=1-(1/r^(ga-1));............//Air standard efficiency
+etath=etarel*etast;............//Thermal efficiency
+disp(etath*100,"Thermal efficiency (in %):")
+v=1/(etath*C);...............//Gas consumption per IP sec
+disp(v*3600,"Gas consumption (in m^3/IP hour):")
|