diff options
Diffstat (limited to '3718/CH13/EX13.7/Ex13_7.sce')
-rw-r--r-- | 3718/CH13/EX13.7/Ex13_7.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3718/CH13/EX13.7/Ex13_7.sce b/3718/CH13/EX13.7/Ex13_7.sce new file mode 100644 index 000000000..3c51b354c --- /dev/null +++ b/3718/CH13/EX13.7/Ex13_7.sce @@ -0,0 +1,10 @@ +//Chapter 13: Fuel and Combustions
+//Problem: 7
+clc;
+
+// Solution
+wt_O = 2 * 32 / 12.0
+wt_a = wt_O * 100 / 23.2
+vol_a = wt_a / 28.94 * 22.4
+
+mprintf("Volume of air needed for the complete combustion of 2kg coke is %.3f litres at NTP",vol_a)
|