For the reaction 2A+B3C, calculate rates of reaction of B and C if −rA=10mol/(dm3s)
Solution
−arA=−brB=crC
Rate of disappearance of B = −rB=210 = 5 mol/(dm3s)
Rate of production of C = rC=210×3 = 15 mol/(dm3s)
NOX2 is being formed at a rate of 4 mol/(m3s) in the reaction 2NO+OX22NOX2. Calculate the rate of consumption of NO, and OX2.
Solution
−2rNO=−1rO2=2rNO2
Rate of disappearance of NO = −rNO=24×2 = 4 mol/(m3s)
Rate of disappearance of OX2 = −rO2=24 = 2 mol/(m3s)
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 AB or A+BC.
The units of the specific reaction rate are k=[molhdm3].
The units of the specific reaction rate are k=[kg−cath(atm)2mol].
The units of the specific reaction rate are k=[h1].
The units of a nonelementary reaction rate are k=[dm3hmol].
Solution
Second order reaction: −rA=kCACB
Second order gas phase reaction −rA′=kPAPB
First order reaction: −rA=kCA
Second order non elementary reaction −rA=kCA2
Rate law for reversible reaction
For the reaction CX6HX6kBk-BCX6HX4+HX2(BD+HX2)
determine the rate expression for disappearance of benzene (−rB). Assume both the forward and reverse reactions are elementary.
Solution
We can write the reactions as two elementary reactions
BD+HX2⋯(1);D+HX2B⋯(2)
Net rate rB=−rB,1+rB,2
−rB=kBCB−k−BCDCH2
K=k−BkB
∴−rB=kB(CB−KCDCH2)
Calculate the activation energy
The decomposition of benzene diazonium chloride to give chlorobenzene and nitrogen
CX6HX5NX2ClCX6HX5Cl+NX2
follows first order kinetics. The rate constant data at different temperatures is given in Table 1. Calculate the activation energy.
Table 1: Rate constant data
k(s−1)
0.00043
0.00103
0.00180
0.00355
0.00717
T(K)
313.0
319.0
323.0
328.0
333.0
Solution
k=AeRT−E
Linearize by taking log on both sides
lnk=lnA−(RE)(T1)
The plot of ln(k) vs. 1/T is linear with a slope of −E/R
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% SOX2 and 72% air is charged to a flow reactor in which SOX2 is oxidized.
2SOX2+OX22SOX3
First, set up a stoichiometric table using only the symbols (i.e., Θi,Fi).
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 SOX2, SOX3, NX2 as a function of conversion
Solution
2SOX2+OX22SOX3
Take SOX2 as basis of calculation
SOX2+21OX2SOX3
Stoichiometric table
Species
Symbol
Entering
Change
Leaving
SO2
A
FA0
−FA0X
FA=FA0(1−X)
O2
B
FB0=ΘBFA0
−2FA0X
FB=FA0(ΘB−21X)
SO3
C
0
+FA0X
FC=FA0X
N2
I
FI0=ΘIFA0
—
FI=FI0=ΘIFA0
Totals
FT0
−2FA0X
FT=FT0−2FA0X
Concentration:
CA=υFA=υFA0(1−X)
volumetric flow rate:
υ=υ0(1+ϵX)(PP0)(T0T)
Neglecting pressure drop in the reaction, and for isothermal reactions:
υ=υ0(1+ϵX)
CA=υ0(1+ϵX)FA0(1−X)=CA01+ϵX1−X
Similarly for B
CB=CA01+ϵX(ΘB−abX)=1+ϵXCA0(ΘB−21X)
CT=CT0=RT0P0=8.314×5001485=0.357dm3mol
ϵ=yA0δ=0.28×(1−1−21)=−0.14
Initially, 72% of the total number of moles is air containing 21% OX2 and 79% NX2, along with 28% SOX2.
FA0=(0.28)(FT0)
FB0=(0.72)(0.21)(FT0)
ΘB=FA0FB0=0.28(0.72)(0.21)=0.54
Θ1=FA0FI0=0.28(0.72)(0.79)=2.03
Substituting for CA0 and ϵ in the species concentrations:
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 N2 (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.0017m3/kmol⋅min at 188∘C with E=11273cal/mol. The initial entering concentrations of ONCB and ammonia are 1.8kmol/m3 and 6.6kmol/m3, respectively.
CX6HX4ClNOX2+2NHX3CX6HX6NX2OX2+NHX4Cl
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 −rA solely as a function of conversion. −rA = ______
What is the initial rate of reaction (X = 0)
at 188∘C? −rA = ______
at 25∘C? −rA = ______
at 288∘C? −rA = ______
What is the rate of reaction when X = 0.90
at 188∘C? −rA = ______
at 25∘C? −rA = ______
at 288∘C? −rA = ______
What would be the corresponding CSTR reactor volume at 25∘C to achieve 90% conversion and at 288∘C for a feed rate of 2dm3/min
at 25∘C? V = ______
at 288∘C? V = ______
Solution
CX6HX4ClNOX2+2NHX3CX6HX6NX2OX2+NHX4Cl
A+2BC+D;−rA=kCACB
Problem data
k
0.0017 m3/kmolminat188∘C
E
11273 cal/mol
$C_A
1.8 kmol/m3
$C_B
6.6 kmol/m3
Stoichiometric table for flow reactor
Species
Entering
Change
Exiting
A
FA0
−FA0X
FA=FA0(1−X)
B
FB0=ΘBFA0
−2FA0X
FB=FA0(ΘB−2X)
C
0
FA0X
FC=FA0X
D
0
FA0X
FD=FA0X
ΘB=1.86.6=3.67
−rA=kCACB
For batch system
CA=VNA
The stoichiometric table needs to be set up in terms of N instead of F. The reaction rate expression would remain same.
@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}
}