summaryrefslogtreecommitdiff
path: root/3428/CH5/EX5.5/Ex5_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3428/CH5/EX5.5/Ex5_5.sce')
-rw-r--r--3428/CH5/EX5.5/Ex5_5.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3428/CH5/EX5.5/Ex5_5.sce b/3428/CH5/EX5.5/Ex5_5.sce
new file mode 100644
index 000000000..aea4495f8
--- /dev/null
+++ b/3428/CH5/EX5.5/Ex5_5.sce
@@ -0,0 +1,10 @@
+//Section-1,Example-5,Page no.-AC.164
+//To calculate the quantity of air needed for complete combustion of 1 kg fuel.
+clc;
+W_C=800 //(gm)
+W_H=40 //(gm)
+W_S=20 //(gm)
+W_O=30 //(gm)
+WO_net=(((32/12)*W_C)+((16/2)*W_H)+((32/32)*W_S))-W_O //Net O_2 //(gm)
+M=WO_net*(100/23)*(160/100)*10^-3
+disp(M,'mass of air needed for complete combustion(kg)')