Numerical Methods for PDEs, basic algorithm?

maistral
Messages
235
Reaction score
17
This is actually a request, I don't know if these are the correct forums for me to post these kinds of things, but yeah. Alright. I intended to study and learn numerical methods with PDEs on my own.

And sadly the only thing I can comprehend is the Liebmann method. :cry: And I got so little time :cry: our professor didn't have the luxury of time to discuss numerical methods for PDEs (but I fear that I may encounter these problems soon, and I don't want to be a sitting duck when that time comes).

So yeah, can I ask for at least a basic/step by step pseudo-algorithm for numerical techniques for PDEs? Because I read Kreyszig's and O'Neil's book and yeah, the only thing I can comprehend is the Liebmann method.
 
Physics news on Phys.org
maistral said:
This is actually a request, I don't know if these are the correct forums for me to post these kinds of things, but yeah. Alright. I intended to study and learn numerical methods with PDEs on my own.

And sadly the only thing I can comprehend is the Liebmann method. :cry: And I got so little time :cry: our professor didn't have the luxury of time to discuss numerical methods for PDEs (but I fear that I may encounter these problems soon, and I don't want to be a sitting duck when that time comes).

So yeah, can I ask for at least a basic/step by step pseudo-algorithm for numerical techniques for PDEs? Because I read Kreyszig's and O'Neil's book and yeah, the only thing I can comprehend is the Liebmann method.

The type of numerical method you use depends on nature of the PDE you are solving: elliptic, parabolic, hyperbolic. Even within each of these categories, there are many different numerical techniques that are used.
 
Gosh numerical solution of partial differential equations. self taught. That's a big subject indeed.

:smile:

I assume you know some of the techniques for ordinary differential equations?
I hope you have the means to solve large sets of simultaneous algebraic (usually linear) equations.

You can rewrite the equation in terms of finite differences -crank nicholson, for instance still works.

You can set up a grid over the region of application and apply simplified functions. This is the basis of the finite element method.

You can use Greens / Stokes / Gauss theorems to relate the PDE within the region to functions on the boundary. This is the basis of the boundary element method.

Special methods such as the shooting method of work for a ball park solution, when nothing else does.

Since you have not found much in your existing texts here is a short bibliography of numeric PDEs

Finite Difference Equations : Levy & Lessman

Numerical Analysis : Kincaid & Cheney

Elementary Applied Partial Differential Equations : Haberman

A First Course in Partial Differential Equations : Weinberger

Elements of Computational Hydraulics : Koutitas

Numerical Methods for Partial Differential Equations : Ames

Numerical Solutions of Partial Differential Equations : Morton & Mayers

Several titles about Boundary Elements : Brebbia

Numerical Solution of Partial Differenctial Equations Finite Difference Methods : Smith

This last one is an excellent book for self teaching.

go well in your efforts
 
Last edited:
There is the following linear Volterra equation of the second kind $$ y(x)+\int_{0}^{x} K(x-s) y(s)\,{\rm d}s = 1 $$ with kernel $$ K(x-s) = 1 - 4 \sum_{n=1}^{\infty} \dfrac{1}{\lambda_n^2} e^{-\beta \lambda_n^2 (x-s)} $$ where $y(0)=1$, $\beta>0$ and $\lambda_n$ is the $n$-th positive root of the equation $J_0(x)=0$ (here $n$ is a natural number that numbers these positive roots in the order of increasing their values), $J_0(x)$ is the Bessel function of the first kind of zero order. I...
Are there any good visualization tutorials, written or video, that show graphically how separation of variables works? I particularly have the time-independent Schrodinger Equation in mind. There are hundreds of demonstrations out there which essentially distill to copies of one another. However I am trying to visualize in my mind how this process looks graphically - for example plotting t on one axis and x on the other for f(x,t). I have seen other good visual representations of...
Back
Top