Project 1#

Practicalities#

  • Deadline: Tuesday, September 12, at 23:59

  • Format:

    • A pdf document, typeset in LaTeX, with answers to all the problems below. You deliver the pdf on Canvas.

    • Code (with comments, of course) on a UiO GitHub repo (github.uio.no), with the URL to you repo written in the pdf document.

    • You must deliver via your group on Canvas (even if you are working alone).

  • Not a complete report: For project 1, we do not require you to write a proper scientific report — only a document with an answer for each problem. But the quality of the presentation still matters, of course. So pay attention to figures, figure captions, grammar, etc.

  • Collaboration: We strongly encourage you to collaborate with others, in groups up to four students. The group hands in a single pdf. (So make sure you all join the same group on Canvas.) Remember to list everyone’s name in the pdf.

  • Reproducibility: Your code should be available on a GitHub repo. You can refer to relevant parts of your code in your answers. Make sure to include a README file in the repo that briefly explains how the code is organized, and how it should be compiled and run in order to reproduce your results.

  • Figures: Figures included in your LaTeX document should be made as vector graphics (e.g. .pdf files), rather than raster graphics (e.g. .png files). If you are making plots with matplotlib.pyplot in Python, this is as simple as calling plt.savefig("figure.pdf") rather than plt.savefig("figure.png").

Preliminaries#

  • If you’re not familiar with using the terminal, we recommend taking the time to work through the examples on the terminal basics page, and look at the keyboard shortcuts.

  • Similarly, if you’ve not used Git before, it’s a good idea to learn the basics before jumping into the project. See the links on the left-hand side.

  • The most important C++ aspects for this project are:

    • basic C++ program structure

    • compilation and linking

    • functions

    • vectors/arrays (examples of containers)

    • writing output to screen and/or file

    We will discuss some of these topics in the lectures, but probably not all. But you can learn about it from the “Introduction to C++” pages on the left.

Introduction#

The overall topic of this project is numerical solution of the one-dimensional Poisson equation. This is a second-order differential equation that shows up in several areas of physics, e.g. electrostatics. In future projects, we will pay close attention to scaling of dimensionfull physics equations - but for this first project, we start directly from the differential equation after scaling to dimensionless variables.

The one-dimensional Poisson equation can be written as

(1)#\[ -\frac{d^2 u}{dx^2} = f(x). \]

Here \(f(x)\) is a known function (the source term). Our task is to find the function \(u(x)\) that satisfies this equation for a given boundary condition. The specific setup we will assume is the following:

  • source term: \(f(x) = 100 e^{-10 x}\)

  • \(x\) range: \(x \in [0,1]\)

  • boundary condition: \(u(0) = 0\) and \(u(1) = 0\)

Problems#

Problem 1#

Check analytically that an exact solution to Eq. (1) is given by

(2)#\[ u(x) = 1 - (1 - e^{-10}) x - e^{-10 x}. \]

Problem 2#

Make a plot of the exact solution above, using the following strategy:

  • Write a program that defines a vector of \(x\) values, evaluates the exact solution \(u(x)\) above for these points, and outputs the \(x\) and \(u(x)\) values as two columns in a data file. The numbers should be written to file in scientific notation and with a fixed number of decimals. (Choose a sensible number.)

  • Write a short plotting script (we recommend Python for this) that reads the data file and generates the plot.

Problem 3#

Derive a discretized version of the Poisson equation. You don’t have to show every step of your derivation, but include the main steps and a couple of sentences to explain the logic.

Notation: Make sure that your notation clearly distinguishes the discretized approximation to \(u(x)\) from the actual exact \(u(x)\). Here we will use \(v\) to represent an approximation to \(u\).

Problem 4#

Show that you can rewrite your discretized equation as a matrix equation of the form

(3)#\[ \mathbf{A} \vec{v} = \vec{g} \]

where \(\mathbf{A}\) is a tridiagonal matrix with the subdiagonal, main diagonal and superdiagonal specified by the signature \((-1,2,-1)\).

Make sure to specify how an element of \(\vec{g}\) is related to the variables in the original differential equation.

Problem 5#

Let the vector \(\vec{v}^*\) of length \(m\) represent a complete solution of the discretized Poisson equation, with corresponding \(x\) values given by the length-\(m\) vector \(\vec{x}\). Let \(\mathbf{A}\) be an \(n \times n\) matrix.

a) How is \(n\) related to \(m\)?

b) What part of the complete solution \(\vec{v}^*\) do we find when we solve Eq. (3) for \(\vec{v}\)?

Problem 6#

Now we’ll forget about the Poisson equation for a moment, and simply consider the equation \(\mathbf{A} \vec{v} = \vec{g}\) where \(\mathbf{A}\) is a general tridiagonal matrix, with vectors \(\vec{a}\), \(\vec{b}\) and \(\vec{c}\) representing the subdiagonal, main diagonal and superdiagonal, respectively. That \(\mathbf{A}\) is a general tridiagonal matrix means that every element of \(\vec{a}\), \(\vec{b}\) and \(\vec{c}\) can be different.

a) Write down an algorithm for solving \(\mathbf{A} \vec{v} = \vec{g}\).

b) Find the number of floating-point operations (FLOPs) for this algorithm.

We’ll refer to this algorithm as the general algorithm.

Problem 7#

Now we get back to the Poisson equation.

a) Write a program that

  • uses the general algorithm to solve \(\mathbf{A} \vec{v} = \vec{g}\), where \(\mathbf{A}\) is the tridiagonal matrix from Problem 4;

  • writes the solution \(\vec{v}\) and corresponding \(\vec{x}\) to a file. It will be useful to also include the boundary points when writing the data to file.

b) With \(n_{\text{steps}}\) being the number of discretization steps along the full x axis, run your program with settings corresponding to \(n_{\text{steps}}=10,100,1000,\ldots\) (as far as you think is reasonable) and make a plot that compares the exact solution for \(u(x)\) in Eq. (2) against the numeric solutions you get for the different values of \(n_{\text{steps}}\).

Problem 8#

In this problem we will look at some error computations. Since the two boundary points are known (\(u(0) = 0\) and \(u(1) = 0\)), you should have exactly zero error at these points. You can therefore leave out the boundary points for this problem.

(If you do include the boundary points, make sure to comment on how you treat the “0/0” cases for the relative error.)

a) Make a plot that shows the (logarithm of) the absolute error,

\[ \log_{10}(\Delta_i) = \log_{10}(|u_i - v_i|) \]

as a function of \(x_i\). Show \(\log_{10}(\Delta_i)\) for different choices of \(n_{\text{steps}}\) as different graphs in the same plot.

b) Similarly, make a plot of the relative error

\[ \log_{10}(\epsilon_i) = \log_{10}\left(\left| \frac{u_i - v_i}{u_i} \right| \right) \]

as function of \(x_i\). Again, one graph per choice of \(n_{\text{steps}}\).

c) Now make a table that shows the maximum relative error \(\max(\epsilon_i)\) for each choice of \(n_{\text{steps}}\), up to \(n_{\text{steps}} = 10^7\). Comment on your results, and feel free to also make a plot to visualise the result.

Note

If you perform your error computations based on the data files your C++ code produces (rather than performing the error computations directly in the C++ code), make sure you write your data to file using a sufficiently high number of digits. (It can be instructive to check what happens if you don’t do this…)

Problem 9#

a) Now specialize your algorithm from Problem 6 for our special case where \(\mathbf{A}\) is specified by the signature \((-1,2,-1)\), that is, with \(\vec{a} = (-1,-1,\ldots,-1)\), \(\vec{b} = (2,2,\ldots,2)\) and \(\vec{c} = (-1,-1,\ldots,-1)\).

We’ll refer to this as the special algorithm.

b) Find the number of FLOPs for this algorithm.

c) Write code that implements this algorithm.

Problem 10#

For values of \(n_{\text{steps}}\) up to \(n_{\text{steps}} = 10^6\), run timing tests that compares the time used by the general algorithm and the special algorithm. (Remember: reliable timing results require repeated runs for each choice of \(n_{\text{steps}}\).) Make a table or plot to present your timing results, and comment briefly on the results.


Code snippets#

Here’s a code example that uses <chrono> from the C++ standard library to measure the time used by a part of a program:

#include <chrono>

int main ()
{

  // ...

  // Start measuring time
  auto t1 = std::chrono::high_resolution_clock::now();

  //
  // The code you want to perform timing on
  //

  // Stop measuring time
  auto t2 = std::chrono::high_resolution_clock::now();

  // Calculate the elapsed time
  // We use chrono::duration<double>::count(), which by default returns duration in seconds
  double duration_seconds = std::chrono::duration<double>(t2 - t1).count();

  // ...
}

Alternatively, you can use the older C timing library by including <ctime>. Here’s a code snippet demonstrating that:

#include <ctime>

int main ()
{

  // ...

  // Start measuring time
  std::clock_t t1 = std::clock();

  //
  // The code you want to perform timing on
  //

  // Stop measuring time
  std::clock_t t2 = std::clock();

  // Calculate the elapsed time.
  double duration_seconds = ((double) (t2 - t1)) / CLOCKS_PER_SEC;

  // ...
}