summaryrefslogtreecommitdiff
path: root/1427/CH4/EX4.3/4_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH4/EX4.3/4_3.sce')
-rw-r--r--1427/CH4/EX4.3/4_3.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1427/CH4/EX4.3/4_3.sce b/1427/CH4/EX4.3/4_3.sce
new file mode 100644
index 000000000..bf70424fc
--- /dev/null
+++ b/1427/CH4/EX4.3/4_3.sce
@@ -0,0 +1,10 @@
+//ques-4.3
+//Calculating COD of effluent sample
+clc
+V=25;//volume of effluent (in mL)
+v=8.3;//volume of dichromate (in mL)
+M=0.001;//molarity of dichromate
+//1000mL of 0.001M dichromate = 6x8x0.001g of oxygen
+O=(6*8*M*v)/1000;//oxygen in 25mL sample (in g)
+O=O*(1000/25);//oxygen in 1L sample (in g)
+printf("COD of effluent sample is %.2f ppm.",O*1000);