Rate of disappearance of \ce{NO} = -r_{NO} = \frac{4 \times 2}{2} = 4 mol/(m^3 s)
Rate of disappearance of \ce{O2} = -r_{O_2} = \frac{4}{2} = 2 mol/(m^3 s)
Rate law
Determine the rate law for the reaction described in each of the cases below involving species A, B, and C. The rate laws should be elementary as written for reactions that are either of the form \ce{A -> B} or \ce{A + B -> C}.
The units of the specific reaction rate are k = \left[\frac{dm^3}{mol \ h} \right].
The units of the specific reaction rate are k = \left[\frac{mol}{kg-cat \ h \ (atm)^2} \right].
The units of the specific reaction rate are k = \left[\frac{1}{h} \right].
The units of a nonelementary reaction rate are k = \left[\frac{mol}{dm^3 \ h} \right].
Solution
Second order reaction: -r_A = kC_AC_B
Second order gas phase reaction -r'_A = kP_AP_B
First order reaction: -r_A = kC_A
Second order non elementary reaction -r_A = kC_A^2
Rate law for reversible reaction
For the reaction
\ce{C6H6 <=>[{k_B}][{k_{-B}}] C6H4 + H2} (\ce{B <=> D + H2})
determine the rate expression for disappearance of benzene (-r_B). Assume both the forward and reverse reactions are elementary.
Solution
We can write the reactions as two elementary reactions
Letting X represent the conversion of NaOH set up a stoichiometric table expressing the concentration of each species in terms of the initial concentration of NaOH and the conversion of X.
A mixture Of 28% \ce{SO2} and 72% air is charged to a flow reactor in which \ce{SO2} is oxidized.
\ce{2SO2 + O2 -> 2 SO3}
First, set up a stoichiometric table using only the symbols (i.e., \Theta_i, F_i).
Next, prepare a second table evaluating the species concentrations as a function of conversion for the case when the total pressure is 1485 kPa (14.7 atm) and the temperature is constant at 227 °C.
Evaluate the parameters and make a plot of each of the concentrations \ce{SO2}, \ce{SO3}, \ce{N2} as a function of conversion
import numpy as npimport matplotlib.pyplot as plt# ConstantsC_A0 =0.1# mol/dm^3epsilon =-0.14# unitlessTheta_B =0.54# unitlessTheta_I =2.03# unitless# Conversion range from 0 to 1 with 0.25 intervalX_values = np.arange(0, 1.01, 0.25)# Concentration calculationsdef calculate_concentrations(X, C_A0, epsilon, Theta_B, Theta_I): C_A = C_A0 * ((1- X)/(1- epsilon * X)) C_B = C_A0 * ((Theta_B -0.5* X) / (1+ epsilon * X)) C_C = C_A0 * X / (1+ epsilon * X) C_I = C_A0 * Theta_I / (1+ epsilon * X)return C_A, C_B, C_C, C_I# Calculate concentrations for each X valueC_A_values, C_B_values, C_C_values, C_I_values = [], [], [], []for X in X_values: C_A, C_B, C_C, C_I = calculate_concentrations(X, C_A0, epsilon, Theta_B, Theta_I) C_A_values.append(C_A) C_B_values.append(C_B) C_C_values.append(C_C) C_I_values.append(C_I)# Plotting the resultsplt.plot(X_values, C_A_values, marker='o', label=r'$C_A$')plt.plot(X_values, C_B_values, marker='o', label=r'$C_B$')plt.plot(X_values, C_C_values, marker='s', label=r'$C_C$')plt.plot(X_values, C_I_values, marker='^', label=r'$C_I$')plt.xlabel('Conversion, $X$')plt.ylabel('Concentration ($mol/dm^3$)')plt.title('Concentration as a Function of Conversion')plt.legend()plt.grid(True)plt.show()
Note that Concentration of N_2 (C_I)$ changes with conversion even though nitrogen does not participate in the reaction.
Liquid phase first order reaction
Orthonitroanaline (an important intermediate in dyes—called fast orange) is formed from the reaction of orthonitrochlorobenzene (ONCB) and aqueous ammonia. The liquid-phase reaction is first order in both ONCB and ammonia with k = 0.0017 \ m^3 /kmol \cdot min at 188 \ ^{\circ}C with E = 11273 \ cal/mol. The initial entering concentrations of ONCB and ammonia are 1.8 \ kmol/m^3 and 6.6 \ kmol/m^3, respectively.
\ce{C6H4ClNO2 + 2 NH3 -> C6H6N2O2 + NH4Cl}
Set up a stoichiometric table for this reaction for a flow system.
Write the rate law for the rate of disappearance of ONCB in terms of concentration.
Explain how parts (a) and (b) would be different for a batch system.
Write -r_A solely as a function of conversion. -r_A = ______
What is the initial rate of reaction (X = 0)
at 188 \ ^{\circ}C? -r_A = ______
at 25 \ ^{\circ}C? -r_A = ______
at 288 \ ^{\circ}C? -r_A = ______
What is the rate of reaction when X = 0.90
at 188 \ ^{\circ}C? -r_A = ______
at 25 \ ^{\circ}C? -r_A = ______
at 288 \ ^{\circ}C? -r_A = ______
What would be the corresponding CSTR reactor volume at 25 \ ^{\circ}C to achieve 90% conversion and at 288 \ ^{\circ}C for a feed rate of 2 \
dm^3 /min
at 25 \ ^{\circ}C? V = ______
at 288 \ ^{\circ}C? V = ______
Solution
\ce{C6H4ClNO2 + 2 NH3 -> C6H6N2O2 + NH4Cl}
\ce{A + 2 B -> C + D}; -r_A = k C_A C_B
Problem data
k
0.0017 m^3/kmol minat \ 188 ^\circ C
E
11273 cal/mol
$C_A
1.8 kmol/m^3
$C_B
6.6 kmol/m^3
Stoichiometric table for flow reactor
Species
Entering
Change
Exiting
A
F_{A0}
-F_{A0}X
F_A = F_{A0}(1 - X)
B
F_{B0} = \Theta_B F_{A0}
-2 F_{A0}X
F_B = F_{A0}(\Theta_B - 2X)
C
0
F_{A0}X
F_C = F_{A0} X
D
0
F_{A0}X
F_D = F_{A0} X
\Theta_B = \frac{6.6}{1.8} = 3.67
-r_A = k C_A C_B
For batch system
C_A = \frac{N_A}{V}
The stoichiometric table needs to be set up in terms of N instead of F. The reaction rate expression would remain same.
-r_A = k C_{A0}^2 \Theta_B = 0.0017 \times (1.8)^2 \times 3.67 = 0.0202 \ kmol/m^3 min
At 25 °C: 2.41 \times 10^{-5} \ kmol/m^3 min
At 288 °C: 0.1806 kmol/m^3 min
rates of reaction at X = 0.9
-r_A = k C_{A0}^2 (1 - X)(\Theta_B - 2X)
At 188 °C: 0.00103 kmol/m^3 min
At 25 °C: 1.23 \times 10^{-6}kmol/m^3 min
At 288 °C: 0.0092 kmol/m^3 min
CSTR Volume
X = 90% = 0.9; \upsilon_0 = 2 dm^3/min
F_{A0} = C_{A0} \upsilon_0 = 3.6 mol/min
V at 25 °C
V = \frac{F_{A0}X}{-r_A|_{exit}}
V = 2634.1 m^3
V at 288 °C: 352 m^3
Citation
BibTeX citation:
@online{utikar2024,
author = {Utikar, Ranjeet},
title = {In Class Activity: {Rate} Law and Stoichiometry},
date = {2024-03-03},
url = {https://cre.smilelab.dev/content/notes/03-rate-law-and-stoichiometry/in-class-activities.html},
langid = {en}
}