Section 17.6: Diffusion and Chemical Reaction inside a porous Catalyst:

"The Effectiveness Factor"

> restart;

> A:=r->4*Pi*r^2;

[Maple Math]

> WA:=r->A(r)*NAr(r);

[Maple Math]

> eq:=WA(r)-WA(r+dr)+RA(r)*A(r)*dr;

[Maple Math]

> de:=limit(eq/(A(r)*dr),dr=0); Compare with eq. 17.6-3

[Maple Math]

> NAr:=r->-DA*D(cA)(r); eq. 17.6-4

[Maple Math]

> de; Compare to 17.6-5

[Maple Math]

> RA:=r->-kpp*a*cA(r); Volumetric rate of production of cA for 1st order rxn.

[Maple Math]

> s:=dsolve({de,cA(R)=cAs},cA(r));

[Maple Math]
[Maple Math]

> assign(s);

> cA:=unapply(cA(r),r); A little complicated, but we can deal with it.

[Maple Math]
[Maple Math]

> assume(kpp>0,a>0,DA>0,R>0);

> simplify(cA(r)); Still rather complicated!

[Maple Math]
[Maple Math]
[Maple Math]

> limit(cA(r),r=0,right); Let's see what happens as r->0

[Maple Math]

> _C2:=0: Note the infinity. Thus we must set _C1 to 0.

> simplify(cA(r)); This agrees with 17.6-9

[Maple Math]

> dif:=cA(r)/cAs-(R/r)*sinh(sqrt(kpp*a/DA)*r)/sinh(sqrt(kpp*a/DA)*R): s ubtracting off the expression given in 17.6-9

> simplify(%); There is still one more assume to do.

[Maple Math]

> WAs:=WA(R); Eq. 17.6-10

[Maple Math]

> combine(simplify(%)); Oh well, it was worth a try.

[Maple Math]
[Maple Math]

> dif:=%-4*Pi*R*DA*cAs*(1-rt*R*coth(rt*R)): Subtracting off 17.6-11

> rt:=sqrt(kpp*a/DA);

[Maple Math]

> simplify(dif); 17.6-11 is also OK.

[Maple Math]