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.10 | |
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.10')
-rw-r--r-- | 3428/CH12/EX6.12.10/Ex6_12_10.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3428/CH12/EX6.12.10/Ex6_12_10.sce b/3428/CH12/EX6.12.10/Ex6_12_10.sce new file mode 100644 index 000000000..814160cfe --- /dev/null +++ b/3428/CH12/EX6.12.10/Ex6_12_10.sce @@ -0,0 +1,9 @@ +//Section-6,Example-2,Page no.-P.42 +//To calculate the minimum partial pressure of methane to achieve the following condition. +clc; +n_M=(21*10^-3)/16 +n_B=100/78 +x_M=n_M/(n_M+n_B) +K_M=4.27*10^5 +p_M=x_M*K_M +disp(p_M,'Required partial pressure(Torr)') |