diff options
Diffstat (limited to '632/CH7/EX7.6/example7_6.sce')
-rwxr-xr-x | 632/CH7/EX7.6/example7_6.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/632/CH7/EX7.6/example7_6.sce b/632/CH7/EX7.6/example7_6.sce new file mode 100755 index 000000000..9b6b4a40d --- /dev/null +++ b/632/CH7/EX7.6/example7_6.sce @@ -0,0 +1,12 @@ +//clc()
+Ps = 100;//kPa
+A1 = 13.8587;//(1 = n-heptane)
+A2 = 13.8216;//(2 = n-hexane)
+B1 = 2911.32;
+B2 = 2697.55;
+C1 = 56.51;
+C2 = 48.78;
+//lnPs = A - B / ( T - C)
+T1 = B1 / (-log(Ps)+A1) + C1;
+T2 = B2 / (-log(Ps)+A2) + C2;
+x2 = 0.25;
|