summaryrefslogtreecommitdiff
path: root/2144/CH8/EX8.16/ex8_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '2144/CH8/EX8.16/ex8_16.sce')
-rwxr-xr-x2144/CH8/EX8.16/ex8_16.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2144/CH8/EX8.16/ex8_16.sce b/2144/CH8/EX8.16/ex8_16.sce
new file mode 100755
index 000000000..61ecc535a
--- /dev/null
+++ b/2144/CH8/EX8.16/ex8_16.sce
@@ -0,0 +1,15 @@
+// Exa 8.16
+clc;
+clear;
+close;
+// Given data
+H2= 0.4;// in m^3
+CH= 0.425;// in m^3
+C2H4= 0.0253;// in m^3
+C4H8= 0.0127;// in m^3
+CO= 0.075;// in m^3
+O2_vol= 0.5*H2 + 2*CH + 3*C2H4 + 6*C4H8 + 0.5*CO;// in m^3
+Air_vol= O2_vol/0.21;// in m^3
+disp(Air_vol,"The volume of air required for complete combustion in m^3 is");
+actualAirSupplied= 1.3*Air_vol;// in m^3
+disp(actualAirSupplied,"The actual quantity of air supplied in m^3 is : ")