Skip to content
/ PDE3 Public
forked from dmingram66/PDE3

JupyterLab notebooks for Partial Differential Equations 3 (SCEE09004)

License

Notifications You must be signed in to change notification settings

SolarisRe/PDE3

 
 

Repository files navigation

Partial Differential Equations 3 (SCEE09004)

This repository contains Jupyter workbooks for the Partial Differential Equations 3 course. The workbooks cover the numerical methods half of the course and use finite difference methods for the solution of eliptic, parabolic and hyperbolic differential equations. All of these workbooks make use of the matplotlib, numpy and scipy python libraries.

Each workbook covers a different topic from the course. Many of them make use of the refinement_analysis.py module which must be in the same folder as the workbook so it can be found by the python import:

from refinement_analysis import refinement_analysis

These workbooks contain Worked examples. These are complete solutions with explanations of work being conducted. Separate laboratory problems will be issued which are incomplete and will involve both mathematical and numerical methods for the solution of a particular problem. These will contain the fundamental python tools needed to contruct a numerical solution but will need Python code to be written.

All code is covered by the Creative-Commons by Attribution Licenses and is copyright to The School of Engineering, University of Edinburgh. The code was written by Professor David Ingram.

Worked examples

  1. Laplace Itterative - Jacobi, Gauss-Siedel and SOR methods for the solution of the Laplace equations.
  2. Laplace Faster - Making the Gauss-Siedel and SOR methods more computationally efficient by using checker-boarding and other techniques to speed up loops.
  3. V&V - Verification and validation of solvers. Testiting and checking accuracy including mesh refinement studies (needs refinement_analysis.py).
  4. Boundary Conditions - Implementation of Dirichlet, Neumann and Robin boundary conditions for the Laplacian (needs refinement_analysis.py).
  5. BiCGStab - The Bi-stabilised conjugate gradient method: A fast, itterative, implicit matrix solver to be used in place of the itterative methods we've used previously (needs refinement_analysis.py).
  6. Source Terms - Solving the Poisson equation [i.e. the inhomogenous version of the Laplacian] (needs refinement_analysis.py).
  7. Explicit Parabolic Solver - The Forward Time-Centered Space (FTCS) solver for the solution of 1-D parabolic equations (needs refinement_analysis.py).
  8. Implicit Parabolic Solver - Using the Crank-Nicholson method to solver for the solution of 1-D parabolic equations (needs refinement_analysis.py).
  9. 2D Parabolic - Solving 2D parabolic problems using opperator splitting (the solver used is the explicit FTCS scheme, though it could be modified to use Crank-Nicholson).
  10. Hyperbolic Solver - Using the Lax-Wendroff and First Order Upwind schemes to solve the 1D linear advection problem with periodic boundary conditions.

Laboratories

The Laboratories folder includes a Jupyter workbook for each of the Laboratories from weeks 1 to 10.

The laboratory folder also contains a folder of scripts and annother of figures. These are needed for the solutions to be available (when released) and for the figures in some of the worksheets. The folder also contains a copy of the refinement_analysis.py script which is needed for some of the laboratories.

Coursework

The couursework folder contains Jupyter notebooks needed for the coursework assignments.

About

JupyterLab notebooks for Partial Differential Equations 3 (SCEE09004)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 99.0%
  • Other 1.0%