diff options
Diffstat (limited to '3718/CH15/EX15.2/Ex15_2.sce')
-rw-r--r-- | 3718/CH15/EX15.2/Ex15_2.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3718/CH15/EX15.2/Ex15_2.sce b/3718/CH15/EX15.2/Ex15_2.sce new file mode 100644 index 000000000..88f5060e4 --- /dev/null +++ b/3718/CH15/EX15.2/Ex15_2.sce @@ -0,0 +1,17 @@ +//Chapter 15: Environmental Pollution and Control
+//Problem: 2
+clc;
+
+//Declaration of Variables
+v0 = 30 // cm cube, effluent
+v1 = 9.8 // cm cube, K2Cr2O7
+M = 0.001 // M, K2Cr2O7
+
+// Solution
+Oeff = 6 * 8 * v1 * M
+mprintf("30 cm cube of effluent contains =:%.4f mg of O2\n",Oeff)
+
+cod = Oeff * 1000 / 30.
+
+mprintf(" 1l of the effluent requires %.2f mg of O2\n",cod)
+mprintf(" COD of the effluent sample=%.2f ppm",cod)
|