summaryrefslogtreecommitdiff
path: root/2762/CH11/EX11.3.1/11_3_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '2762/CH11/EX11.3.1/11_3_1.sce')
-rwxr-xr-x2762/CH11/EX11.3.1/11_3_1.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2762/CH11/EX11.3.1/11_3_1.sce b/2762/CH11/EX11.3.1/11_3_1.sce
new file mode 100755
index 000000000..49d52f990
--- /dev/null
+++ b/2762/CH11/EX11.3.1/11_3_1.sce
@@ -0,0 +1,17 @@
+//Transport Processes and Seperation Process Principles
+//Chapter 11
+//Example 11.3-1
+//Vapour Liquid Seperation Processes
+//given data
+//85 deg C
+Pa1=116.9;
+Pb1=46;
+alpha1=Pa1/Pb1;
+// 105 deg C
+Pa2=204.2;
+Pb2=86;
+alpha2=Pa2/Pb2;
+mprintf("alpha at 85 deg C = %f",alpha1);
+mprintf(" alpha at 105 deg C = %f",alpha2);
+p=((alpha1-alpha2)/alpha2)*100;
+mprintf(" percentage variation=%f",p)