Introduction to Laplace Equation

Overview

Teaching: 10 min
Exercises: 0 min
Questions
  • A quick overview of the Laplace equation and solver.

Objectives
  • Understand the origins of the computational problem

  • Understand concepts like boundary and initial conditions

Introduction to Laplace Equation

Historical note

Laplace’s equation is a second-order partial equation named after Pierre-Simon, marquis de Laplace, a French scholar and polymath whose work was a foundation of many scientific fields including engineering, mathematics, physics, statistics and astronomy.

Pierre-Simon, marquis de Laplace

One of the most famous Marquis de Laplace quotes is: Nature laughs at the difficulties of integration.

Problem description

The Laplace equation is commonly used in physics to describe various phenomena, including heat transfer.

The 2D Laplace equation is often written as:

Laplace equation

The above equation can be discretised with the Finite Difference Method on a 2D grid. We will assume that each grid cell has side h. The discretisation will lead us to the following formula:

Laplace equation discretisation

In the above formula ui,j represents the value of u function in grid node with (i,j) coordinates.

Note that the above equation can be simplified to:

Laplace equation discretisation

Since the above formula has to hold for every element in the grid, the computational algorithm of solving Laplace equation is an iterative procedure. The value of ui,j in each iteration will be computed from the values of 4 neighbouring grid nodes (ui-1,j, ui+1,j, ui,j-1, ui,j+1) computed in previous iteration. This process will be repeated until the solution converges. The example code used in this tutorial is implementing the described iterative process.

In fact, this computational approach of iterative kernels which update array elements according to some fixed pattern, represents a whole class of algorithms. The so-called stencil codes are most commonly found in the codes of computer simulations, e.g. for computational fluid dynamics in the context of scientific and engineering applications.

Initial and boundary conditions

The use of Finite Difference Methods and the resulting iterative algorithm implies that:

Here we will use a similar approach to the one described in the Software Engineering Course. At the start of the program execution, we will assign the initial value 0 to all grid cells. Moreover, we will set the boundaries of the grid to have the value 0 for the row/column where the first/second index are zero, and along the other two boundaries the temperature will increase linearly from 0 to 128.

References

  1. https://en.wikipedia.org/wiki/Pierre-Simon_Laplace
  2. https://software-engineering.readthedocs.io/en/latest/laplace_equation.html
  3. https://en.wikipedia.org/wiki/Stencil_code

Key Points

  • Laplace equation can be solved with the use of iterative algorithm on a discretised computational grid