diff options
Diffstat (limited to '632/CH7/EX7.3/example7_3.sce')
-rwxr-xr-x | 632/CH7/EX7.3/example7_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/632/CH7/EX7.3/example7_3.sce b/632/CH7/EX7.3/example7_3.sce new file mode 100755 index 000000000..131fde85f --- /dev/null +++ b/632/CH7/EX7.3/example7_3.sce @@ -0,0 +1,12 @@ +//clc()
+xa = 0.25;
+xb = 0.30;
+xc = 1 - xa - xb;
+Ptotal = 200;//kPa
+Pcs = 50;//kPa(Vapour pressure of c)
+Pc = xc * Pcs;//(partial pressure of c)
+yc = Pc / Ptotal;
+yb = 0.5;
+ya = 1 - yb - yc;
+per1 = ya * 100;
+disp("%",per1,"Percentage of A in vapour = ")
\ No newline at end of file |