diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1040/CH4/EX4.1.a | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1040/CH4/EX4.1.a')
-rw-r--r-- | 1040/CH4/EX4.1.a/Chapter4_Ex1_a.sce | 32 | ||||
-rw-r--r-- | 1040/CH4/EX4.1.a/Chapter4_Ex1_a_Output.txt | 1 |
2 files changed, 33 insertions, 0 deletions
diff --git a/1040/CH4/EX4.1.a/Chapter4_Ex1_a.sce b/1040/CH4/EX4.1.a/Chapter4_Ex1_a.sce new file mode 100644 index 000000000..34ff568da --- /dev/null +++ b/1040/CH4/EX4.1.a/Chapter4_Ex1_a.sce @@ -0,0 +1,32 @@ +//Harriot P.,2003,Chemical Reactor Design (I-Edition) Marcel Dekker,Inc., USA,pp 436.
+//Chapter-4 Ex4.1.a Pg No. 135
+//Title:Diffusivity of Chlorine at 573K and 1.5atm
+//===========================================================================================================
+clear
+clc
+//INPUT
+S_g=235;//Total surface per gram (m2/g)
+V_g=0.29E-6;//Pore volume per gram (cm3/g)
+rho_p=1.41;
+D_He=0.0065;//Effective diffusivity of He (cm2/sec)
+M_He=4;//Molecular weight of He
+M_Cl2=70.09;//Molecular weight of Cl2
+T_ref=293;//Reference temperature
+T_degC=300;
+T=T_degC+273;//Reaction temperature(K)
+
+//CALCULATION
+r_bar=2*V_g/S_g;//Mean Pore radius
+D_Cl2=D_He*((M_He/M_Cl2)*(T/T_ref))^(0.5);//Assuming Knudsen flow at 573K
+
+//OUTPUT
+//Console Output
+mprintf('The predicted diffusivity of Chlorine is %0.2E cm2/s ',D_Cl2);
+
+//File Output
+fid= mopen('.\Chapter4_Ex1_a_Output.txt','w');
+mfprintf(fid,'The predicted diffusivity of Chlorine is %0.2E cm2/s ',D_Cl2);
+mclose(fid);
+//============================================END OF PROGRAM=================================================
+
+
diff --git a/1040/CH4/EX4.1.a/Chapter4_Ex1_a_Output.txt b/1040/CH4/EX4.1.a/Chapter4_Ex1_a_Output.txt new file mode 100644 index 000000000..076d782b4 --- /dev/null +++ b/1040/CH4/EX4.1.a/Chapter4_Ex1_a_Output.txt @@ -0,0 +1 @@ +The predicted diffusivity of Chlorine is 2.17E-03 cm2/s
\ No newline at end of file |