Solving Heat Transfer problem in MATLAB using TDMA

Hello guys,
I am new to MATLAB so I dont know much about it, Here below is the problem (2.2) description. If anyone of you could please sove it & explain the step by step.
(P.S :- Please solve using TDMA method & share code for the same)
Use Numerical Methods, Heat Transfer & MATLAB concepts

9 件のコメント

darova
darova 2020 年 4 月 29 日
looks like usual ode
Did you try something? ode45?
Rajveersingh Pritpalsingh Panesar
Rajveersingh Pritpalsingh Panesar 2020 年 4 月 29 日
Yeah, but no idea. Can you help me out ?
darova
darova 2020 年 4 月 29 日
There are two uknowns at x=L
Do you have them?
Rajveersingh Pritpalsingh Panesar
Rajveersingh Pritpalsingh Panesar 2020 年 4 月 29 日
I guess No, All the information given to me have been posted above. Let me know if I can help in any possible way ?
darova
darova 2020 年 4 月 29 日
Here is an idea
for i = 1:100
d2T = h*P/k/Ac*(T-Tinf);
dT = dT + d2T*dt;
T = T + dt*dT;
plot(i,T)
end
Rajveersingh Pritpalsingh Panesar
Rajveersingh Pritpalsingh Panesar 2020 年 4 月 29 日
I dont think so its solving by TDMA method ?
darova
darova 2020 年 4 月 30 日
what is TDMA
Rajveersingh Pritpalsingh Panesar
Rajveersingh Pritpalsingh Panesar 2020 年 5 月 1 日
Thomas algorithm for solving boundary value problems
darova
darova 2020 年 5 月 2 日
I found this

サインインしてコメントする。

回答 (0 件)

カテゴリ

コメント済み:

2020 年 5 月 2 日

Community Treasure Hunt

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

Start Hunting!

Translated by