from sympy import symbols, integrate, simplify, pprintk, CA0, X, XA = symbols('k CA0 X XA')expression =1/ (1- XA)**2integral_result = integrate(expression,(XA,0,X))simplified_integral = simplify(integral_result)t = (1/ (k * CA0)) * simplified_integralpprint(t)
-X
─────────────
CA₀⋅k⋅(X - 1)
t = \frac{1}{k C_{A0}}\frac{X}{1-X}
Determining k from Batch Data
It is desired to design a CSTR to produce 200 million pounds of ethylene glycol per year by hydrolyzing ethylene oxide. However, before the design can be carried out, it is necessary to perform and analyze a batch-reactor experiment to determine the specific reaction-rate constant, k. Because the reaction will be carried out isothermally, the specific reaction rate will need to be determined only at the reaction temperature of the CSTR. At temperatures above 80^\circ C, there is a significant by-product formation, while at temperatures below 40^\circ C, the reaction does not proceed at a significant rate; consequently, a temperature of 55^\circ C has been chosen. Because water is present in excess, its concentration (55.5 mol/dm^3) may be considered constant during the course of the reaction. The reaction is first-order in ethylene oxide.
\ce{C2H4O + H2O ->[H2SO4] (CH2-OH)2}
\ce{A + B ->[catalyst] C}
In the laboratory experiment, 500 mL of a 2 M solution (2 kmol/m^3) of ethylene oxide (A) in water was mixed with 500 mL of water (B) containing 0.9 wt% sulfuric acid, which is a catalyst. The temperature was maintained at 55^\circ C. The concentration of ethylene glycol (C) was recorded as a function of time (Table 1).
Derive an equation for the concentration of ethylene glycol as a function of time.
Rearrange the equation derived in (a) to obtain a linear plot of a function concentration versus time.
Using the data in (Table 1), determine the specific reaction rate at 55^\circ C.
Derive equation for conversion in a liquid phase PFR for second order reaction \ce{2A -> products}; -r_A = kC_A^2 in terms of Damköhler number Da_2 = \tau k C_{A0}
Solution
Mole balance
F_{A0} \frac{dX_A}{dV} = -r_A
Rate law
-r_A = kC_A^2
Stoichiometry
C_A = C_{A0}(1-X_A)
Combine
F_{A0} \frac{dX_A}{dV} = k C_{A0}^2 (1 - X_A)^2
Evaluate
V = \frac{\upsilon_0}{k C_{A0}} \int_0^X \frac{dX_A}{(1 - X_A)^2}
V = \frac{\upsilon_0}{k C_{A0}}\frac{X}{1-X}
Da_2 = \tau k C_{A0} = \frac{X}{1-X}
X = \frac{Da_2}{1+ Da_2}
Citation
BibTeX citation:
@online{utikar2024,
author = {Utikar, Ranjeet},
title = {In Class Activity: {Isothermal} Reactor Design},
date = {2024-03-13},
url = {https://cre.smilelab.dev//content/notes/04-isothermal-reactor-design/in-class-activities.html},
langid = {en}
}