Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MPI
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
CodeVault
training-material
parallel-programming
MPI
Commits
7ef789b8
Commit
7ef789b8
authored
6 years ago
by
Jussi Enkovaara
Browse files
Options
Downloads
Patches
Plain Diff
Describe the heat equation in a bit more detail
parent
e4a395dc
1 merge request
!1
Master
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
heat-equation/README.md
+74
-0
74 additions, 0 deletions
heat-equation/README.md
with
74 additions
and
0 deletions
heat-equation/README.md
0 → 100644
+
74
−
0
View file @
7ef789b8
Two dimensional heat equation
=============================
This folder contains a code which solves two dimensional heat equation
with MPI parallelization. The code features non-blocking point-to-point
communication, user defined datatypes, collective communication,
and parallel I/O with MPI I/O.
Heat (or diffusion) equation is
<!-- Equation
\f
rac{
\p
artial u}{
\p
artial t} =
\a
lpha
\n
abla^2 u
-->

where
**u(x, y, t)**
is the temperature field that varies in space and time,
and α is thermal diffusivity constant. The two dimensional Laplacian can be
discretized with finite differences as
<!-- Equation
\b
egin{align
*
}
\n
abla^2 u &=
\f
rac{u(i-1,j)-2u(i,j)+u(i+1,j)}{(
\D
elta x)^2}
\\
&+
\f
rac{u(i,j-1)-2u(i,j)+u(i,j+1)}{(
\D
elta y)^2}
\e
nd{align
*
}
-->

Given an initial condition (u(t=0) = u0) one can follow the time dependence of
the temperature field with explicit time evolution method:
<!-- Equation
u^{m+1}(i,j) = u^m(i,j) +
\D
elta t
\a
lpha
\n
abla^2 u^m(i,j)
-->

Note: Algorithm is stable only when
<!-- Equation
\D
elta t <
\f
rac{1}{2
\a
lpha}
\f
rac{(
\D
elta x
\D
elta y)^2}{(
\D
elta x)^2 (
\D
elta y)^2}
-->

The two dimensional grid is decomposed along both dimensions, and the
communication of boundary data is overlapped with computation. Restart files
are written and read with MPI I/O.
Compilation instructions
------------------------
For building and running the example one needs to have the
[
libpng
](
http://www.libpng.org/pub/png/libpng.html
)
library installed. In
addition, working MPI environment is required. For Python version mpi4py and
matplotlib are needed.
Move to proper subfolder (C or Fortran) and modify the top of the
**Makefile**
according to your environment (proper compiler commands and compiler flags).
Code can be build simple with
**make**
How to run
----------
The number of MPI ranks has to be a factor of the grid dimension (default
dimension is 200). The default initial temperature field is a disk. Initial
temperature field can be read also from a file, the provided
**bottle.dat**
illustrates what happens to a cold soda bottle in sauna.
*
Running with defaults: mpirun -np 4 ./heat_mpi
*
Initial field from a file: mpirun -np 4 ./heat_mpi bottle.dat
*
Initial field from a file, given number of time steps:
mpirun -np 4 ./heat_mpi bottle.dat 1000
*
Defauls pattern with given dimensions and time steps:
mpirun -np 4 ./heat_mpi 800 800 1000
The program produces a series of heat_XXXX.png files which show the
time development of the temperature field
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment