Energy balance of stirred tank

1 view (last 30 days)
Hello everyone!
I want to solve this equation in order to plot the theoretical temperature profile T:
I know the value of mass (10000), specific heat (2000), U (120), area (25) and the profile of T_w during time.
The experimental values of temperature T are known:
Thanks in advance!

Accepted Answer

Torsten
Torsten on 22 Aug 2022
Edited: Torsten on 23 Aug 2022
syms rho cp V u A Tw T0 T(t) Tw(t)
eqn = rho*cp*V*diff(T,t) == u*A*(Tw-T);
cond = T(0)==T0;
T = dsolve(eqn,cond)
T = 
  5 Comments
Sam Chak
Sam Chak on 23 Aug 2022
The theoretical solution for the Temperature profile subject to
, and
where
is given by:

Sign in to comment.

More Answers (1)

Alan Stevens
Alan Stevens on 22 Aug 2022
Try
doc ode45

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!