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 /647/CH4/EX4.11 | |
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 '647/CH4/EX4.11')
-rwxr-xr-x | 647/CH4/EX4.11/Example4_11.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/647/CH4/EX4.11/Example4_11.sce b/647/CH4/EX4.11/Example4_11.sce new file mode 100755 index 000000000..820cdc6c3 --- /dev/null +++ b/647/CH4/EX4.11/Example4_11.sce @@ -0,0 +1,24 @@ +clear;
+clc;
+
+// Example: 4.11
+// Page: 130
+
+printf("Example: 4.11 - Page: 130\n\n");
+
+// Solution
+
+//*****Data*****//
+CO2 = 13.4;// [percent by volume]
+N2 = 80.5;// [percent by volume]
+O2 = 6.1;// [percent by volume]
+//*************//
+
+// Basis : 100 cubic m of flue gas.
+Vol_N2_flue = N2;// [Volume of Nitrogen in flue gas, cubic m]
+Vol_O2_flue = O2;// [Volume of O2 in flue gas, cubic m]
+Vol_Air = N2/0.79;// [Volume of air supplied, cubic m]
+Vol_O2 = Vol_Air*0.21;// [Volume of O2 in air supply, cubic m]
+Vol_O2_cumbustion = Vol_O2 - Vol_O2_flue;// [Volume of O2 used up in cumbustion of the fuel, cubic m]
+Excess_Air = Vol_O2_flue/Vol_O2_cumbustion * 100;// [percent of excess air supplied]
+printf("Percent of excess air supplied is %.1f %%",Excess_Air);
\ No newline at end of file |