CHE331: Unit Operations and Process Control Laboratory: Objective
CHE331: Unit Operations and Process Control Laboratory: Objective
CHE331: Unit Operations and Process Control Laboratory: Objective
Laboratory
Experiment No. 03
Group No. 2
Objective:
1. To study the reaction between ethyl acetate and sodium hydroxide in a tubular reactor.
2. To study the effect of axial dispersion on the conversion in a tubular reactor.
Theory:
The reaction between ethyl acetate and sodium hydroxide is represented as (assuming second
order, irreversible reaction)
Now the flow through the reactor may be either (a) Laminar or (b) turbulent, according to
whether the Reynolds number, NRe
is less or greater than approximately 2000, where ρ and μ are the density and viscosity of the
solution (essentially water) flowing through the reactor, dt is the internal diameter of the tube and
u is the mean velocity in the tube.
A graph between NRe and conversion of reactant can be plotted.
(a) For Laminar Flow, the velocity profile is parabolic in shape; the mean exit conversion of
NaOH is given by
Where,
(b) For Turbulent flow, the velocity profile is not too for removed from being flat in shape
(i.e. Plug flow). The Exit concentration of NaOH is given by
Dispersion Model:
Where CAp is the concentration of the plug flow reactor with the same τ or L as the real reactor.
Levenspiel and Bischoff have given the graphical solution for second order reactions having equal
concentration. In this graph, conversion based on the dispersion model is a function of dispersion
number.
Line Diagram:
Equipment/ Apparatus:
● Coil type tubular reactor (0.5 cm ID) and 0.9 meter long
● Constant Temperature Bath
● Rotameters for flow measurement of ethyl acetate and sodium hydroxide solutions.
● Sodium Hydroxide and ethyl acetate solutions (0.05N)
● Conductivity Meter
5. Experimental Procedure
Observations:
Sample Calculation:
Now, used the above equation to calculate k (real) on calculation we get using the MATLAB
code attached at the bottom.
k(real) = 16.25 Lmol-1sec-1
3.3
3.2
3.1
ln(k)
2.9
2.8
y = -2386.4x + 10.474
2.7 R² = 0.8259
0.00295 0.003 0.00305 0.0031 0.00315 0.0032 0.00325
1/T
Fig.1
X vs Conductivity
X(conversion)
0.900
0.880
0.860
X(conversion)
0.840
0.820
0.800
0.780
0.760
y = -0.1225x + 1.348
0.740
0 1 2 3 4 5 6
Conductivity
Fig.2
Fig.3
Questions:
● What are the assumptions involved in the derivation of the dispersion model?
3. Perfect Radial Mixing: Complete mixing occurs in the radial direction, ensuring
uniform concentration across the reactor's cross-section.
4. Constant Physical Properties: Properties like density and viscosity are assumed to
remain constant throughout the reactor.
● Why dispersion model is important to study the performance of the Plug Flow Reactor?
Accounts for Non-Ideal Flow: It models deviations from ideal plug flow by considering axial
dispersion, leading to more realistic predictions.
• Optimizes Reactor Design: It aids in refining reactor design for better efficiency and
performance by understanding flow dynamics.
• Crucial for Scale-Up: The model ensures reliable scaling up from laboratory to industrial
reactors by addressing flow irregularities.
● What are the sources of error in evaluation of dispersion number and conversion?
• Inaccurate Measurement Techniques: Errors in conductivity or concentration measurements
can lead to incorrect conversion and dispersion values.
• Non-Ideal Flow Conditions: Deviations from ideal plug flow, such as channeling or stagnant
zones, can distort dispersion assessments.
• Temperature and Flow Rate Fluctuations: Variations in temperature or flow rates affect
reaction rates and dispersion, causing inaccurate results.
• Incorrect Kinetic Assumptions: Assuming incorrect reaction kinetics can lead to errors in
conversion predictions.
• Human Errors: Mistakes in titration, data recording, or experimental setup can introduce
significant inaccuracies.
Nomenclature:
● a0 = Inlet molal concentration of NaOH
● a1 = Outlet molal concentration of NaOH
● ā1 = Mean outlet molal concentration of NaOH
● CA = Molar Concentration of NaOH
● CA0 = Molar concentration of NaOH at initial conditions
● CB = Molar Concentration of Ethyl Acetate
● dt = Diameter of Tube
● D = Axial dispersion coefficient for flowing fluid (m²/s)
● DAB = Diffusivity of ethyl acetate in water, (m²/s)
● FA0 = Initial molar flow rate of A (moles/s)
● k = Arrhenius Constant
● L = Reactor Length (m)
● MB = Molecular weight of the solvent, kg/kmol
● NRe = Reynolds Number
● NSc = Schmidt Number
● n0 = Inlet molal flow rate of either reactant
● n1 = Exit molal flow rate of ethyl acetate
● rA = Rate of reaction (moles/m³s)
● T = Temperature (K)
● u = Velocity of Fluid (m/s)
● Q = Volumetric flow rate (m³/s)
● V = Volume of reactor (m³)
● XA = Conversion of reactant A
Matlab Code
% Given parameters
k = fsolve(f, k_initial_guess);
%% Constants
tube_diameter = 0.5 * 10^(-2); % Diameter of the tube in meters
tube_length = 0.9; % Length of the tube in meters
density_fluid = 0.898 * 10^3; % Density of fluid in kg/m^3
viscosity_60C = 0.935 * 10^(-3); % Viscosity at 52°C in Pa.s
viscosity_50C = 0.683 * 10^(-3); % Viscosity at 42°C in Pa.s
viscosity_40C = 0.3668 * 10^(-3); % Viscosity at 32°C in Pa.s
initial_conc_A = 0.05; % Initial solute concentration
% For 50°C
Reynolds_50_5lph = (density_fluid * velocity_5lph * tube_diameter) / viscosity_50C;
Reynolds_50_10lph = (density_fluid * velocity_10lph * tube_diameter) / viscosity_50C;
% For 40°C
Reynolds_40_5lph = (density_fluid * velocity_5lph * tube_diameter) / viscosity_40C;
Reynolds_40_10lph = (density_fluid * velocity_10lph * tube_diameter) / viscosity_40C;