diff options
Diffstat (limited to '2495/CH4/EX4.6.3/Ex4_6_3.sce')
-rw-r--r-- | 2495/CH4/EX4.6.3/Ex4_6_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2495/CH4/EX4.6.3/Ex4_6_3.sce b/2495/CH4/EX4.6.3/Ex4_6_3.sce new file mode 100644 index 000000000..c3f12e422 --- /dev/null +++ b/2495/CH4/EX4.6.3/Ex4_6_3.sce @@ -0,0 +1,12 @@ +clear
+clc
+Kh=150;//Henry's law constant in torr
+X1=0.12;//mole fraction of acetone
+P=(Kh*X1);//vapour pressure of acetone in torr
+printf('P=%.1d torr',P)
+Kh1=175;//Henry's law constant for chloroform in torr
+X2=(P/Kh1);
+printf('\nX2=%.3f',X2)
+
+//page 119
+
|