You are on page 1of 7

Example 8 - 7 Production of Acetic Anhydride

Jeffreys1, in a treatment of the design of an acetic anhydride manufacturing facility, states that one
of the key steps is the vapor-phase cracking of acetone to ketene and methane:
CH 3COCH 3 CH 2 CO + CH 4
He states further that this reaction is first order with respect to acetone and that the specific
reaction rate can be expressed by
ln ( k ) = 34.34

34,222
T

where k is in reciprocal seconds and T is in Kelvin. In this design, it is desired to feed 8000 kg of
acetone per hour to a tubular reactor. The reactor consists of a bank of 1000 1-inch Schedule 40
tubes. We will consider two cases:
1. The reactor is operated adiabatically.
2. The reactor is surrounded by a heat exchanger where the heat-transfer coefficient is
110 J/m2AsAK and the ambient temperature is 1150 K.
The inlet temperature and pressure are the same for both cases at 1035 K, and 162 kPa
(1.6 atm), respectively. Plot the conversion and temperature along the length of the reactor.
Solution
Let A = CH3COCH3, B = CH2CO, and C = CH4. Rewriting the reaction in symbols gives us
A B +C

1. Mole Balance:

d FA
= rA
dVR
2. Rate law:

r A = kCA

G. V. Jeffreys, "A Problem in Chemical Engineering Design: The Manufacture of Acetic


Anhydride", 2nd ed. (London: Institution of Chemical Engineers, 1964).

3. Stoichiometry:
FB = FBo + ( FAo FA )

FC = FCo + (FAo FA )
FT = FA + FB + FC = 2FAo + FBo + FCo FA
C A = y A CT = y A
yA =

P
RT

FA
FT

4. Combining yields:

d FA
FA
P
= k
dVR
2 FAo + FBo + FCo FA RT
5. Energy Balance:
CASE I. Adiabatic Operation

For no work done on the system, W s = 0 , and adiabatic operation, Q = 0 (i.e., U = 0),
the energy balance becomes
dT
H r (at T )r
=
dVR
F C pi
i

6. Calculation of mole balance parameters:


FAo =

8000 kg / h
= 137.9 kmol / h = 38.3mol / s
58 g / mol

7. Calculation of energy balance parameters:


H r (at T ) = H r (at 298 K ) + i
i

pi

dT

298 K

(
(
(

1 26.63 + 0.183T 45.86 10 6 T 2

6
2
= 80.77 kJ / mol + + 1 20.04 + 0.0945 T 30.95 10 T
298 K
6
2
+ 1 13.39 + 0.077 T 18.71 10 T
T

= 80.77 kJ / mol + ( 26.63 + 20.04 + 13.39 )(T 298) +

dT

0.5 ( 0.183 + 0.0945 + 0.077 ) T 2 298 2

)(

1
45.86 10 6 + 30.95 10 6 + 18.7110 6 T 3 2983
3
= 80770 J / mol + 6.8 (T 298) 5.75 10 3 T 2 2982 1.267 10 6 T 3 2983

F C
i

pi

= FA C p + FB C p + FC C p
A

= FA 26.63 + 0.183T 45.86 10 6 T 2 +

( FBo + (FAo FA )) (20.04 + 0.0945 T 30.95 10 6 T 2 ) +


( FCo + (FAo FA )) (13.39 + 0.077 T 18.71 10 6 T 2 )

= FAo 33.43 + 0.1715 T 49.66 10 6 T 2

FA 6.8 0.0115 T 3.8 10 6 T 2

Substituting the values calculated above into the two balance equations we may solve the
material and energy balance equations simultaneously using the following MathCAD
program.
Example 8-7 Adiabatic Operation
First define all of the variables either as constants or functions
3

P := 162 10

k( T) := exp 34.34

CT ( T) :=

P
8.31 T

34222
T

FAo := 38.3

) 1.267 10 6 (T3 2983)


6 2
6 2
FICPI( FA , T) := FAo ( 33.43 + 0.1715 T 49.66 10 T ) FA ( 6.8 0.0115 T 3.8 10 T )
3

DHr( T) := 80770 + 6.8 ( T 298) 5.75 10 T 298

FA

y A( FA) :=

2 FAo FA

Now give the initial conditions for the integrator

FAo

1035

y :=

and define the matrix that contains the two balance equations
k( y 1) y A( y 0) CT ( y 1)

D( V, y ) := DHr( y 1) k( y 1) y A( y 0) CT ( y 1)

FICPI( y 0 , y 1)

We now can start the integrator. We will integrate (as does Fogler) to a reactor volume of 5 m3 .
Z := Rkadapt( y , 0 , 5 , 100 , D)
Change the molar flow rates for A (in the second column of Z) into conversion, then plot the results.
:= 00 .... 100
100
ii :=
Xi :=

FAo Z( i , 1)
FAo
Conversion Profile
0.3

Conversion of A

0.2

0.1

0.5

1.5
2
2.5
Reactor volume (m**3)

3.5

Temperature Profile
1050

Temperature (K)

1000

950

900

2
Reactor Volume (m**3)

As was observed by Fogler, the reaction essentially stops due to the lowering of the temperature
in the adiabatic reactor. Lets go on to the case with heat transfer.
CASE II. Operation of a PFR with Heat Exchange
We can use the material balance portion from the prior case without change. The changes in this
part of the problem come only in the energy balance portion. Thus,
5. Energy Balance
dT
H r (at T ) r + UA(Thx T )
=
dVR
F C pi
i

6. Parameter Evaluation
The one thing we will have to change is the fact that the reactor is composed of 1000
individual tubes. Since the heat transfer area depends on the tube size we will need to
do our analysis on one tube, then multiply by 1000 to get the total. Thus the initial
molar flow rate of A into a single tube is (38.3 mol/s)/1000 or

FAo = 0.0383 mol / s


The surface area per volume in a cylindrical tube is 4/D so
A=

4
4
=
= 150 m 1
D 0.0266 m

All of the other parameters remain as for the adiabatic case. We now can solve the
material and energy balance equations simultaneously using the MathCAD program
below
Example 8-7 Operation with heat exchange
First define all of the variables either as constants or functions
3

P := 162 10
U := 110
A := 150

Thx := 1150
k( T) := exp 34.34

CT ( T) :=

34222
T

P
8.31 T

FAo := 38.3

) 1.267 10 6 (T3 2983)


6 2
6 2
FICPI( FA , T) := FAo ( 33.43 + 0.1715 T 49.66 10 T ) FA ( 6.8 0.0115 T 3.8 10 T )
3

DHr( T) := 80770 + 6.8 ( T 298) 5.75 10 T 298

y A( FA) :=

FA
2 FAo FA

Now give the initial conditions for the integrator

FAo

1035

y :=

and define the matrix that contains the two balance equations
k( y 1) y A( y 0) CT ( y 1)

D( V, y ) := ( DHr( y 1) k( y 1) y A( y 0) CT ( y 1) ) + U A ( Thx y 1)

FICPI( y 0 , y 1)

3.
We now can start the integrator. We will integrate (as does Fogler) to a reactor volume of 1 m

Z := Rkadapt(y , 0 , 1 , 100, D)
Change the molar flow rates for A (in the second column of Z, into conversion, then plot the results.
i := 0.. 100
Xi :=

FAo Z( i , 1)
FAo
Conversion Profile
0.8

0.7

Conversion of A

0.6

0.5

0.4

0.3

0.2

0.1

0.2

0.4
0.6
Reactor Volume (m**3)

0.8

Temperature Profile
1050

1045

Temperature (K)

1040

1035

1030

1025

1020

1015

1010

0.2

0.4
0.6
Reactor Volume (m**3)

0.8

You might also like