Heat Equation 1D Finite Difference solution

Version 1.0.0 (1,79 KB) von RMS Danaraj
This code explains and solves heat equation 1d.
1,3K Downloads
Aktualisiert 28. Apr 2020

Lizenz anzeigen

% Heat equation in 1D
% The PDE for 1D heat equation is Ut=Uxx, 0=<t,0=<x=<L
% Initial condions are U(0,t)=a(t);U(L,t)=b(t)
% the boundary condition is U(x,0)=g(x)
% u(t,x) is the solution matrix.
% the finite linear heat equation is solved is....
% -u(i-1,j)=alpha*u(i,j-1)-[1+2*alpha]*u(i,j)+alpha*u(i,j+1)...(1)
%alpha=dx/dt^2. dx,dt are finite division for x and t.
% t is columnwise
%x is rowwise dealt in this code
%suggestions and discussions are welcome.

Zitieren als

RMS Danaraj (2024). Heat Equation 1D Finite Difference solution (https://www.mathworks.com/matlabcentral/fileexchange/75266-heat-equation-1d-finite-difference-solution), MATLAB Central File Exchange. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2020a
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.0.0