Figure 7.18:

Asymptotic behavior of the effectiveness factor versus Thiele modulus; first-order reaction in spherical pellet.

Code for Figure 7.18

Text of the GNU GPL.

main.m


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
% Copyright (C) 2001, James B. Rawlings and John G. Ekerdt
%
% This program is free software; you can redistribute it and/or
% modify it under the terms of the GNU General Public License as
% published by the Free Software Foundation; either version 2, or (at
% your option) any later version.
%
% This program is distributed in the hope that it will be useful, but
% WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
% General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program; see the file COPYING.  If not, write to
% the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
% MA 02111-1307, USA.

%
% compute the actual phi versus eta
%
Bbig   = 100;
Bsmall = 0.01;
nphi = 100;
phismall = 10^(-2);
phibig = 10^(4);
phi = [logspace(log10(phismall), log10(phibig), nphi)]';

B = Bbig;
etabig = 1./phi.*(1./tanh(3*phi) - 1./(3*phi))./ ...
            ( 1 + (phi./tanh(3*phi) - 1/3)/B );
B = Bsmall;
etasmall = 1./phi.*(1./tanh(3*phi) - 1./(3*phi))./ ...
            ( 1 + (phi./tanh(3*phi) - 1/3)/B );

tmp = [phi  etabig etasmall];

%save -ascii biotasy.dat tmp;
%
% compute the various straight line approximations for asymptotic plots
%

horiz  = [phismall 1;
          sqrt(Bbig) 1];
minus1 = [1 1;
          phibig 1/phibig];
minus2small = [sqrt(Bsmall) 1;
               phibig 1/(phibig*phibig/Bsmall)];
minus2big = [sqrt(Bbig) 1;
             phibig 1/(phibig*phibig/Bbig)];
auxvbl = [horiz minus1 minus2small minus2big];

%save -ascii biotasy_01.dat auxvbl;
save biotasy.dat tmp auxvbl

if (~ strcmp (getenv ('OMIT_PLOTS'), 'true')) % PLOTTING
    loglog (tmp(:,1), tmp(:,2:3), ...
            auxvbl(:,1), auxvbl(:,2), ...
            auxvbl(:,3), auxvbl(:,4), ...
            auxvbl(:,5), auxvbl(:,6), ...
            auxvbl(:,7), auxvbl(:,8));
    axis(10.^[-2 4 -6 .5])
    % TITLE
end % PLOTTING