Solving Heat Transfer problem in MATLAB using TDMA
Show older comments
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 Comments
darova
on 29 Apr 2020
looks like usual ode

Did you try something? ode45?
Rajveersingh Pritpalsingh Panesar
on 29 Apr 2020
darova
on 29 Apr 2020
There are two uknowns at x=L

Do you have them?
Rajveersingh Pritpalsingh Panesar
on 29 Apr 2020
darova
on 29 Apr 2020
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
on 29 Apr 2020
darova
on 30 Apr 2020
what is TDMA
Rajveersingh Pritpalsingh Panesar
on 1 May 2020
darova
on 2 May 2020
I found this

Answers (0)
Categories
Find more on Stability Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!