summaryrefslogtreecommitdiff
path: root/1226/CH11/EX11.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1226/CH11/EX11.9
downloadScilab-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/CH11/EX11.9')
-rwxr-xr-x1226/CH11/EX11.9/EX11_9.jpgbin0 -> 124344 bytes
-rwxr-xr-x1226/CH11/EX11.9/EX11_9.sce18
2 files changed, 18 insertions, 0 deletions
diff --git a/1226/CH11/EX11.9/EX11_9.jpg b/1226/CH11/EX11.9/EX11_9.jpg
new file mode 100755
index 000000000..26dc797bf
--- /dev/null
+++ b/1226/CH11/EX11.9/EX11_9.jpg
Binary files differ
diff --git a/1226/CH11/EX11.9/EX11_9.sce b/1226/CH11/EX11.9/EX11_9.sce
new file mode 100755
index 000000000..a7f6061e9
--- /dev/null
+++ b/1226/CH11/EX11.9/EX11_9.sce
@@ -0,0 +1,18 @@
+clc;funcprot(0);//EXAMPLE 11.9
+// Initialisation of Variables
+da=0.018;..........................//Throat Diameter in m
+df=0.0012;......................//Diameter of fuel orifice in m
+Cda=0.82;.................//Coefficient of air flow
+Cdf=0.65;......................//Coefficient of fuel flow
+z=0.006;........................//Level of petrol surface below the throat
+rhoa=1.2;.......................//density of air in kg/m^3
+rhof=750;.........................//density of fuel in kg/m^3
+g=9.81;........................//Acceleration due to gravity in m/s^2
+delp=0.065*10^5;...................//Pressure drop in N/m^2
+//Calculations
+afr1=(Cda/Cdf)*((da/df)^2)*sqrt(rhoa/rhof);..................//Air fuel ratio when the nozzle lip is neglected
+disp(afr1,"Air fuel ratio when the nozzle lip is neglected:")
+afr2=afr1*sqrt(delp/(delp-(g*z*rhof)));.....................//Air fuel ratio when nozzle lip is taken into account
+disp(afr2,"Air fuel ratio when nozzle lip is taken into account:")
+C2=sqrt((2*g*z*rhof)/rhoa);.........................//Minimum velocity of air in m/s
+disp(C2,"Minimum velocity of air (in m/s):")