필터 지우기
필터 지우기

Energy balance of stirred tank

조회 수: 5 (최근 30일)
Nicola De Noni
Nicola De Noni 2022년 8월 22일
댓글: Nicola De Noni 2022년 8월 23일
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!

채택된 답변

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

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Alan Stevens
Alan Stevens 2022년 8월 22일

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by