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 /884/CH5/EX5.13 | |
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 '884/CH5/EX5.13')
-rwxr-xr-x | 884/CH5/EX5.13/Example5_13.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/884/CH5/EX5.13/Example5_13.sce b/884/CH5/EX5.13/Example5_13.sce new file mode 100755 index 000000000..98b559600 --- /dev/null +++ b/884/CH5/EX5.13/Example5_13.sce @@ -0,0 +1,21 @@ +//Gas Stoichiometry
+
+clear;
+clc;
+
+printf("\t Example 5.13\n");
+
+R=0.0821;//universal Gas constant, L.atm/K.mol
+T=312;//temp in K
+V=2.4*10^5;//volume, L
+P1=7.9*10^-3;//pressure initial in atm
+P2=1.2*10^-4;//pressure final in atm
+Pdrop=P1-P2;//pressure drop, atm
+n=Pdrop*V/(R*T);//moles of Co2 reacted
+Li2CO3=73.89;//mol. mass of Li2CO3, g
+mLi2CO3=n*Li2CO3;//mass of Li2CO3, g
+
+printf("\t the mass of Li2CO3 formed is : %4.1f *10^3 g\n",mLi2CO3*10^-3);
+
+
+//End
|