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 /3428/CH12/EX6.12.9/Ex6_12_9.sce | |
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 '3428/CH12/EX6.12.9/Ex6_12_9.sce')
-rw-r--r-- | 3428/CH12/EX6.12.9/Ex6_12_9.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3428/CH12/EX6.12.9/Ex6_12_9.sce b/3428/CH12/EX6.12.9/Ex6_12_9.sce new file mode 100644 index 000000000..b96dc37fa --- /dev/null +++ b/3428/CH12/EX6.12.9/Ex6_12_9.sce @@ -0,0 +1,9 @@ +//Section-6,Example-1,Page no.-P.41 +//To calculate the minimum partial pressure of oxygen in the atmosphere that can achieve the given concentration. +clc; +n_O2=(4*10^-3)/(32) +n_H2O=(1.0*10^3)/(18) +x_O2=n_O2/(n_O2+n_H2O) +K_O2=3.3*10^7 +p_O2=x_O2*K_O2 +disp(p_O2,'Required partial pressure(Torr)') |