summaryrefslogtreecommitdiff
path: root/1427/CH4/EX4.5
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH4/EX4.5')
-rw-r--r--1427/CH4/EX4.5/4_5.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1427/CH4/EX4.5/4_5.sce b/1427/CH4/EX4.5/4_5.sce
new file mode 100644
index 000000000..8ef9683e6
--- /dev/null
+++ b/1427/CH4/EX4.5/4_5.sce
@@ -0,0 +1,11 @@
+//ques-4.5
+//Determining BOD of given sample
+clc
+V=25;//Volume of water sample (in mL)
+v1=30;//volume of ferrous ammonium sulphate(FAS) in blank (in mL)
+v2=18;//volume of FAS in sample (in mL)
+n=0.1;//normality of FAS
+//1000mL of 1N FAS = 8g oxygen
+O=(8*(v1-v2)*n)/1000;//Oxygen in 25mL of water (in g)
+O=O*(1000/25);//Oxygen in 1L of water (in g)
+printf("COD of given sample is %d ppm.",O*1000);