summaryrefslogtreecommitdiff
path: root/3876/CH4/EX4.2/Ex4_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH4/EX4.2/Ex4_2.sce')
-rw-r--r--3876/CH4/EX4.2/Ex4_2.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3876/CH4/EX4.2/Ex4_2.sce b/3876/CH4/EX4.2/Ex4_2.sce
new file mode 100644
index 000000000..3db800b4d
--- /dev/null
+++ b/3876/CH4/EX4.2/Ex4_2.sce
@@ -0,0 +1,24 @@
+//Chapter 4 Solutions Nonelectrolytes
+
+clc;
+clear;
+
+//Initialisation of Variables
+m= 0.0346 //gms
+V= 800 //ml
+P= 742 //mm
+M= 32 //gms
+p= 400 //mm
+
+//CALCULATIONS
+c= m*1000/V
+g= c*760/(P*M)
+K= g*22.4
+k= c/P
+c1= k*p
+
+//RESULTS
+mprintf("Concentration of oxygen= %.4f gram per litre",c)
+mprintf("\nMoles dissolved = %.4f moles",g)
+mprintf("\nBunsen absorption = %.4f litre",K)
+mprintf("\nGrams of oxygen dissolved = %.4f gram per litre",c1)