summaryrefslogtreecommitdiff
path: root/1388/CH5/EX5.9/5_9.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1388/CH5/EX5.9/5_9.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1388/CH5/EX5.9/5_9.sce')
-rwxr-xr-x1388/CH5/EX5.9/5_9.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1388/CH5/EX5.9/5_9.sce b/1388/CH5/EX5.9/5_9.sce
new file mode 100755
index 000000000..3e1417bd2
--- /dev/null
+++ b/1388/CH5/EX5.9/5_9.sce
@@ -0,0 +1,15 @@
+clc
+//initialisation of variables
+m= 100 //gms
+m1= 1 //gms
+m2= 2 //gms
+P= 23.756 //mm of Hg
+n= 18.02
+n1= 60.06
+n2= 342.3
+//CALCULATIONS
+r= ((m1/n1)+(m2/n2))/((m1/n1)+(m2/n2)+(m/n))
+dp= P*r
+P1= P-dp
+//RESULTS
+printf (' vapour pressure = %.3f mm of Hg',P1)