summaryrefslogtreecommitdiff
path: root/647/CH9/EX9.1
diff options
context:
space:
mode:
Diffstat (limited to '647/CH9/EX9.1')
-rwxr-xr-x647/CH9/EX9.1/Example9_1.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/647/CH9/EX9.1/Example9_1.sce b/647/CH9/EX9.1/Example9_1.sce
new file mode 100755
index 000000000..cf49ae51d
--- /dev/null
+++ b/647/CH9/EX9.1/Example9_1.sce
@@ -0,0 +1,24 @@
+clear;
+clc;
+
+// Example: 9.1
+// Page: 338
+
+printf("Example: 9.1 - Page: 338\n\n");
+
+// Solution
+
+//*****Data******//
+V1_bar = 52.37*10^(-6);// [partial molar volume of ethanol, cubic m/mol]
+y1 = 0.5;// [mole fraction of ethanol]
+Density = 800.21;// [kg/cubic m]
+M1 = 46*10^(-3);// //[Molecular wt. of ethanol,kg/mol]
+M2 = 18*10^(-3);// [Molecular wt. of water,kg/cmol]
+//*************//
+
+y2 = 1 - y1;// [mole fraction of water]
+M = y1*M1 + y2*M2;// [Molecular wt. of mixture, kg/mol]
+V = M/Density;// [Volume of mixture, cubic m/mol]
+// From Eqn. 9.9:
+V2_bar = (V - y1*V1_bar)/y2;// [partial molar volume of water, cubic m/mol]
+printf("Partial molar volume of water is %.2e cubic m/mol\n",V2_bar); \ No newline at end of file