summaryrefslogtreecommitdiff
path: root/3876/CH4/EX4.6
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH4/EX4.6')
-rw-r--r--3876/CH4/EX4.6/Ex4_6.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/3876/CH4/EX4.6/Ex4_6.sce b/3876/CH4/EX4.6/Ex4_6.sce
new file mode 100644
index 000000000..bf1809d48
--- /dev/null
+++ b/3876/CH4/EX4.6/Ex4_6.sce
@@ -0,0 +1,25 @@
+//Chapter 4 Solutions Nonelectrolytes
+
+clc;
+clear;
+
+//Initialisation of Variables
+m= 92.13 //gms
+M= 78.11 //gms
+n= 1 //moles
+p= 119.6 //mm
+p1= 36.7 //mm
+
+//CALCULATIONS
+n1= m/M
+x= n/(n+n1)
+y= 1-x
+P= y*p
+P1= x*p1
+P2= P+P1
+m1= P/P2
+m2= 1-m1
+
+//RESULTS
+mprintf("Mole fraction of benzene=%.3f",m1)
+mprintf("\nMole fraction of toulene=%.3f",m2)