diff options
Diffstat (limited to '647/CH9/EX9.13')
-rwxr-xr-x | 647/CH9/EX9.13/Example9_13.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/647/CH9/EX9.13/Example9_13.sce b/647/CH9/EX9.13/Example9_13.sce new file mode 100755 index 000000000..f66e3f61f --- /dev/null +++ b/647/CH9/EX9.13/Example9_13.sce @@ -0,0 +1,21 @@ +clear;
+clc;
+
+// Example: 9.13
+// Page: 357
+
+printf("Example: 9.13 - Page: 357\n\n");
+
+// Solution
+
+//*****Data******//
+Vl = 90.45*10^(-6);// [molar volume of liquid butadiene, cubic m/mol]
+fsat = 4.12;// [bar]
+P = 10;// [bar]
+Psat = 4.12;// [bar]
+T = 313;// [K]
+R = 8.314;// [J/mol K]
+//************//
+
+fl = fsat*exp(Vl*(P - Psat)*10^5/(R*T));// [bar]
+printf("The fugacity of the liquid water is %.4f bar",fl);
\ No newline at end of file |