From: W. Trevor King Date: Tue, 14 Sep 2010 15:39:13 +0000 (-0400) Subject: Convert poisson assigment.pdf to XHTML. X-Git-Url: http://git.tremily.us/?p=parallel_computing.git;a=commitdiff_plain;h=bc305167e675a1a4c93fee322673f37409f2d53a Convert poisson assigment.pdf to XHTML. --- diff --git a/assignments/archive/poisson/assigment.pdf b/assignments/archive/poisson/assigment.pdf deleted file mode 100644 index 5cd8a3c..0000000 Binary files a/assignments/archive/poisson/assigment.pdf and /dev/null differ diff --git a/assignments/archive/poisson/index.shtml.itex2MML b/assignments/archive/poisson/index.shtml.itex2MML new file mode 100644 index 0000000..f0193c7 --- /dev/null +++ b/assignments/archive/poisson/index.shtml.itex2MML @@ -0,0 +1,55 @@ + + +

Assignment #8

+

Due Friday, November 20

+ +

Purpose

+ +

Learn how to solve PDEs using parallel computers.

+ +

Note: Please identify all your work.

+ +

Solving Poisson Equation

+ +

You are to solve Poisson equation in a parallel code. This elliptic +PDE is typicaly used in demonstrating how to numerically solve +PDEs. It has the advantage of being time independent. In 2D, it takes +the form

+ +

\[ + \frac{\partial^2 u(x,y)}{\partial x^2} + + \frac{\partial^2 u(x,y)}{\partial y^2} + = S(x,y) +\]

+ +

where the field $u(x,y)$ is solved for in a domain in $x$ and $y$ +with specified boundary conditions and source term $S(x,y)$.

+ +

Steps

+ +