Non-Isothermal CSTR Experiment - 2 Aim: Modeling and Simulation of Non-Isothermal CSTR. Assumptions
Non-Isothermal CSTR Experiment - 2 Aim: Modeling and Simulation of Non-Isothermal CSTR. Assumptions
NON-ISOTHERMAL CSTR
Experiment – 2
Assumptions:-
Notations:-
The rate of heat transferred from the reactor to the cooling jacket is given by
Sudhanshu Sharma 2
Question- The liquid-phase 1st-order irreversible exothermic reaction A → B is carried out in a CSTR. The
reaction rate is given by −rA = kCA, k = αe−E/RT.
1. Calculate the steady-state values of CA, T, and Tj.
2. This exothermic reaction system may exhibit multiple steady states. The energy balance on the reactor
yields
ρCp (F0T0 - FT) - λkVCA -UA(T -Tj ) = 0
Substituting;
k = αe−E/RT, CA= F C/ (F+ KVA ), and Tj =[(ρCj FjTj+ UAT) / (ρjCjFj+ UA)]
Solve the nonlinear equation f(T) = 0 and plot f(T) versus T to verify multiple steady states.
Solution:- i) We can formulate the mass and energy balances that apply to the reactor and the cooling
jacket. Required steady-state values can be obtained from the solution of the system of nonlinear equations
consisting of these balances. Rearrangement of the mass and energy balances yields the following nonlinear
equations (x1 = CA, x2 = T, x3 = Tj):
Set the initial estimates of the final solution as x0 = [CAo To Tjo]. The MATLAB® script
exocstr uses the built-in function fsolve to give the desired results.
Code -
% exocstr.m
% Data:
rho*Cp*(F0*T0-F*x(2))-lam*alp*V*x(1)*exp(-E/R/x(2))-U*A*(x(2) - x(3));
x = fsolve(fun, x0);
>> exocstr
CA= 0.5214
T = 537.8548
Tj = 537.2534
is solved by the script exocstr2, which also generates a plot f(T) versus T.
Code-
% exocstr2.m
% Data:
x = fzero(fT, T0)
Different steady states can be determined by solving the nonlinear equation with different initial estimates of
the final solution. The script exocstr2 computes T for three different initial estimates of T0 = 530, 580, 680
(°R) and generates a plot of f(T) as shown in Figure.
>> exocstr2
T0 =530
x =537.8548
>> exocstr2
T0 =580
x =590.3498
>> exocstr2
T0 =680
x =671.2783
We can see that the reaction system exhibits three different steady states of Ts = 537.8548,