diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /944/CH5/EX5.32 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '944/CH5/EX5.32')
-rwxr-xr-x | 944/CH5/EX5.32/example5_32_TACC.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/944/CH5/EX5.32/example5_32_TACC.sce b/944/CH5/EX5.32/example5_32_TACC.sce new file mode 100755 index 000000000..26ebf23d7 --- /dev/null +++ b/944/CH5/EX5.32/example5_32_TACC.sce @@ -0,0 +1,14 @@ +//example 5.32
+
+clear;
+clc;
+
+//Given:
+P=1.75*10^-5;//Vapour pressure of pure water at 293K[torr]
+dP=1.1*10^-7;//Lowering in vapour pressure of water
+//To find the mole fraction of sucrose,so that the vapour pressure of water will be lowered by dP
+x=dP/P;//mole fraction of sucrose
+disp(x,'The mole fraction of sucrose is ');
+
+
+
|