Energy balance of stirred tank

1 visualizzazione (ultimi 30 giorni)
Nicola De Noni
Nicola De Noni il 22 Ago 2022
Commentato: Nicola De Noni il 23 Ago 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!

Risposta accettata

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

Accedi per commentare.

Più risposte (1)

Alan Stevens
Alan Stevens il 22 Ago 2022
Try
doc ode45

Categorie

Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by