Skip to content

AntonRydahl/multigrid-poisson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Multigrid Methods for the Poisson Equation

This project contains a framework for finite difference multigrid methods. The header files in include contain class templates for several multigrid components, the src directory contains the source files, and the drivers directory contains examples of how to use the solvers.

Compilation

The folder config/ contains several makefiles that set compiler flags, preprocessor flags, and include flags. For OpenMP target offloading in clang++, g++, and nvc++ and flags specific to some common GPU architectures. Note that some versions of nvc++ from the NVIDIA HPC-SDK are incompatible with the project because they do not comply with the current OpenMP 5.1 standard. Scripts to install OpenMP offloading-enabled compilers can be found in compilers/.

To compile one of the examples, you may type

export COMPILER=<g++,clang++,nvc++>
export GPU=<V100,A100>
make APP=<multigrid,minimal_fcycle,minimal_vcycle,minimal_jacobi,minimal_gauss_seidel>

and an example can for instance be executed with

./bin/minimal_fcycle -x 513 -y 257 -z 129 -l 6 -maxiter 10

To compile only the archive, type

make archive

to make the archive libpoisson.a. To use this archive in your project, compile with -Iinlcude -Llib -lpoisson.

One can select between three test problems if one wants to use one of the drivers. The test problems can be selected by compiling with PROBLEM=1, PROBLEM=2, or PROBLEM=3.

The Array Class and the Device Array Class

The most important class templates in this project are probably array.h and the derived template class devicearray.h. They contain functions for indexing 3D arrays that abstract away the halos. Further, they contain functionality for mapping arrays to GPUs and saving arrays with or without the halos. See for instance, the following figure:

Saved With Halo Saved Without Halo
Halo Ignoring Halo

Making a Solver

The PoissonSolver class is heavily templated. When a solver instance is created, it is given a floating-point type, a restriction type, a prolongation type, and a relaxation type, for example

#include "libpoisson.h"
Poison::PoissonSolver<
  Poisson::double_t,
  Poisson::Injection,
  Poisson::TrilinearInterpolation,
  Poisson::GaussSeidel> solver(settings);

To initialize all the arrays in the solver to zero, use

solver.init_zero();

Before solving the problem, the right-hand side and boundary conditions must be transferred to the device. This can be done with

solver.to_device();

One can either use a relaxation scheme as the solver

solver.solve("relaxation");

or a V-cycle with

solver.solve("Vcycle");

or an F-cycle, which is recommended, with

solver.solve("Fcycle");

Finally, the result can be mapped back to the host with

solver.to_host();

Currently Supported Multigrid Components

The framework supports different relaxation schemes and restriction and prolongation operators.

  • Relaxation: Poisson::Relaxation
    • Jacobi relaxation: Poisson::Jacobi
    • Red-black Gauss-Seidel successive overrelaxation: Poisson::GaussSeidel
  • Restriction operator: Poisson::Restriction
    • Injection: Poisson::Injection
    • Full weighting: Poisson::FullWeighting
  • Prolongation operator: Poisson::Prolongation
    • Trilinear interpolation: Poisson::TrilinearInterpolation
  • Boundary condition: Poisson::Boundary
    • Dirichlet condition: Poisson::Dirichlet
    • Neumann condition: Poisson::Neumann

Test Problems

To generate some problems, we may consider some function $u$ and find the Laplacian $f=\Delta u$ and the first-order derivatives at the boundaries $\frac{\partial u}{\partial x}$ and $\frac{\partial u}{\partial y}$

Test Problem I

We may consider some trigonometric function

$$u(x,y,x) = \sin(k_x x)\sin(k_y y)\sin(k_z z)$$

for which it is easy to derive the analytic Laplacian

$$f = \Delta u = -(k_x^2+k_y^2+k_z^2)u(x,y,x)$$

and the Neumann boundary conditions are given by

$$\frac{\partial u}{\partial x} = k_x\cos(k_xx)\sin(k_yy)\sin(k_zz)$$ $$\frac{\partial u}{\partial y} = k_y\sin(k_xx)\cos(k_yy)\sin(k_zz).$$
True Solution Numerical Solution
Problem I reference solution Problem I numerical solution

Test Problem II

The polynomial

$$u(x,y,x) = x^3y^2z$$

has the Laplacian

$$f = \Delta u = 2x^3z + 6xy^2z.$$

The Neumann boundary conditions are given by

$$\frac{\partial u}{\partial x} = 3x^2y^2z$$ $$\frac{\partial u}{\partial y} = 2x^3yz$$
True Solution Numerical Solution
Problem II reference solution Problem II numerical solution

Test Problem III

The trigonometric funtion

$$u(x,y,x) = \cos(xz^2)\sin(y^3)$$

has the Laplacian

$$f = \Delta u = ((-4x^2z^2 - 9y^4 - z^4)\sin(y^3) + 6y\cos(y^3))\cos(xz^2) - 2x\sin(xz^2)\sin(y^3).$$

The Neumann boundary conditions are given by

$$\frac{\partial u}{\partial x} = -z^2\sin(xz^2)\sin(y^3)$$ $$\frac{\partial u}{\partial y} = 3y^2\cos(xz^2)\cos(y^3)$$
True Solution Numerical Solution
Problem III reference solution Problem III numerical solution

Verifying the Order of Accuracy

From theory, the scheme should be second-order convergent. That means halving the grid spacing should result in a four times smaller maximal absolute error. As can be seen, the multigrid algorithm has the expected order of convergence for the three test problems. The files used to generate the convergence tests are convergence.sh and plot_convergence.m.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published