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.22 | |
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.22')
-rwxr-xr-x | 1226/CH17/EX17.22/EX17_22.jpg | bin | 0 -> 122388 bytes | |||
-rwxr-xr-x | 1226/CH17/EX17.22/EX17_22.sce | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/1226/CH17/EX17.22/EX17_22.jpg b/1226/CH17/EX17.22/EX17_22.jpg Binary files differnew file mode 100755 index 000000000..e64db2089 --- /dev/null +++ b/1226/CH17/EX17.22/EX17_22.jpg diff --git a/1226/CH17/EX17.22/EX17_22.sce b/1226/CH17/EX17.22/EX17_22.sce new file mode 100755 index 000000000..7e01ebfef --- /dev/null +++ b/1226/CH17/EX17.22/EX17_22.sce @@ -0,0 +1,24 @@ +clc;funcprot(0);//EXAMPLE 17.22
+// Initialisation of Variables
+n=1;.................//No of cylinders
+D=0.25;................//Engine bore in m
+L=0.4;.................//Engine stroke in m
+pmg=7;.................//Gross mean effective pressure in bar
+pmp=0.5;...............//Pumping mean effective pressure in bar
+N=250;..................//Engine rpm
+Db=1.5;................//Effective diameter of the brake in m
+Nl=1080;..............//Net load on the brake in N
+fh=10;.................//Fuel used per hour in kg
+C=44300;...............//Calorific value of fuel in kJ/kg
+k=0.5;.................//Four stroke engine
+//Calculations
+mf=fh/3600;.........................//Fuel used per second in kg
+pm=pmg-pmp;.......................//Net pressure
+IP=(n*pm*L*(%pi/4)*D*D*N*k*10)/6;..........///Indicated power in kW
+disp(IP,"Indicated power (in kW):")
+BP=((Nl)*%pi*Db*N)/(60*1000);...............//Brake power in kW
+disp(BP,"Brake power (in kW):")
+etamech=BP/IP;...........................//Mechanical efficiency
+disp(etamech*100,"Mechanical efficiency (in %):")
+etath=IP/(mf*C);.........................//Indicated thermal efficiency
+disp(etath*100,"Indicated thermal efficiency (in %):")
|