From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 884/CH5/EX5.13/Example5_13.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 884/CH5/EX5.13/Example5_13.sce (limited to '884/CH5/EX5.13') 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 -- cgit