summaryrefslogtreecommitdiff
path: root/3825/CH3/EX3.17/Ex3_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '3825/CH3/EX3.17/Ex3_17.sce')
-rw-r--r--3825/CH3/EX3.17/Ex3_17.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3825/CH3/EX3.17/Ex3_17.sce b/3825/CH3/EX3.17/Ex3_17.sce
new file mode 100644
index 000000000..33d58b906
--- /dev/null
+++ b/3825/CH3/EX3.17/Ex3_17.sce
@@ -0,0 +1,11 @@
+clc
+vc=0.00317
+vf=0.0010434
+vg=1.694
+X=(vc-vf)/(vg-vf)
+mprintf("X=%f\n",X)
+mprintf("volume of liquid=%fmetre-cube\n",(1-X)*vf)
+mprintf("Volume of vapor=%fmetre-cube\n",X*vg)
+mprintf("Ratio of liquid to vapor by volume=%f\n",((1-X)*vf)/(X*vg))//ans may vary due to roundoff error
+
+