summaryrefslogtreecommitdiff
path: root/3557/CH9/EX9.11/Ex9_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3557/CH9/EX9.11/Ex9_11.sce')
-rw-r--r--3557/CH9/EX9.11/Ex9_11.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3557/CH9/EX9.11/Ex9_11.sce b/3557/CH9/EX9.11/Ex9_11.sce
new file mode 100644
index 000000000..14caeb0c0
--- /dev/null
+++ b/3557/CH9/EX9.11/Ex9_11.sce
@@ -0,0 +1,16 @@
+//Example 9.11//
+//(a)
+xL=54;//wt % //liquid solution composition
+x=50;//wt % //x is the overall composition
+xa=18;//wt % //composition of two phases
+wta=(xL-x)/(xL-xa)*100
+mprintf("wta = %f percent",wta)
+wtL=(x-xa)/(xL-xa)*100
+mprintf("\nwtL =%f percent",wtL)
+//Similarly, at 100 degree C, we obtain
+xb=99;//wt % //composition of two phases
+xa=5;//wt % //composition of two phases
+wta1=(xb-x)/(xb-xa)*100
+mprintf("\nwta1 = %f ",wta1)
+wtb=(x-xa)/(xb-xa)*100
+mprintf("\nwtb = %f percent",wtb)