Borrar filtros
Borrar filtros

Energy balance of stirred tank

5 visualizaciones (últimos 30 días)
Nicola De Noni
Nicola De Noni el 22 de Ag. de 2022
Comentada: Nicola De Noni el 23 de Ag. de 2022
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!

Respuesta aceptada

Torsten
Torsten el 22 de Ag. de 2022
Editada: Torsten el 23 de Ag. de 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 comentarios
Sam Chak
Sam Chak el 23 de Ag. de 2022
The theoretical solution for the Temperature profile subject to
, and
where
is given by:
Nicola De Noni
Nicola De Noni el 23 de Ag. de 2022
Thanks @Sam Chak and @Torsten! You're very kind.

Iniciar sesión para comentar.

Más respuestas (1)

Alan Stevens
Alan Stevens el 22 de Ag. de 2022
Try
doc ode45

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by