PDEs: Solution of the 2D Heat Equation using Finite Differences
This is an example of the numerical solution of a Partial Differential Equation using the Finite Difference Method. In this case applied to the Heat equation.
To approximate the derivative of a function in a point, we use the finite difference schemes.
1D Finite Differences
One can choose different schemes depending on the final wanted precission.
- Forward Differences: error

- Central Differences: error

- Second derivative. Central Differences: error

Partial Derivatives: 2D Finite Differences
For a funtion
the second order partial derivatives can be approximated by: 2D Regular Domains
To apply finite differences to a rectangular domain, it must be divided in equal spaced points. One example of rectangular 2D domain can be an image or a photograph. We are used to work with the pixel decomposition of an image.
To load an image in Matlab is very easy, you can use:
Aorig = imread('coins.png'); %read the original image
imshow(Aorig); %show the original image
A = im2double(Aorig); % By default pixel values are 8 bits integer numbers,
% to do some algebra computations we better use double float numbers
Application: Image blur using the heat equation
The PDE modeling temperature distribution along the time is
where the function
depens on time and space variables. To simulate the time evolution of the temperatures, we need an initial temperature distribution. For that we can take the original pixel values (in gray scale) and assimilate temperature to the pixel intensity value. This way, white pixels will be the hotter and dark ones the colder.
Matlab allow you to visualize these temperatures creating a 3D plot using the following instructionsm(you can rotate the 3D plot using the circular icon on the Matlab window and moving the mouse).
figure(2) %Initial temperature distribution
Temporal temperatures evolution
From the initial temperature distribution, we apply the heat equation on the pixels grid and we can see the effect on the temperature values. We will use a forward difference scheme for the first order temporal term and a central difference one for the second order term corresponding to derivatives with respect to the spatial variables.
The complete scheme will be
In our case the values
(the distance is one pixel) and we take
and 
The unknown variable we want to compute is the term
(the temperature on the next time instant). Using the notation
we can isolate this term: In our case, the function u are the values for the pixels of image A. We simulate the evolution until time = 4.
[m,n]=size(A); %size in pixels for A.
Anext=A; %we use A=u(t) and AA=u(t+h) (at the beginnig they are the same).
for t=0:ht:tfin %time advance
for j=2:n-1 %go through the pixels, but avoiding the boundary ones
Anext(i,j)=A(i,j)+r*(A(i,j+1)+A(i+1,j)+A(i,j-1)+A(i-1,j)-4*A(i,j));
A=Anext; %update the temperature values
Results after the simulation
figure(3) %final temerature distibution
Return to images and compare with the original one
figure(4) %the final image is blurred