Version 8 (modified by 11 years ago) ( diff ) | ,
---|
Elliptic equations background
Elliptic equations can be thought of as being the steady state limit of the diffusion equation,
when both the boundary conditions and the source (or "forcing") term are time in-dependent. Under these conditions, it can be expected that the time dependent terms vanish as the system relaxes to steady state (in the limit
), and we are led to the elliptic equation (here in 2D),
where u is the dependent variable we are solving for, and f is the forcing term.
The solution to this equation needs to simultaneously 1) satisfy this equation at all points within a bounding region and 2) satisfy the boundary conditions on that region. This then can be interpreted as an instantaneous system, much different than the wave-like solutions of hyperbolic equations which travel with finite speed.
Some special cases for elliptic equations occur when
; when f is non-zero, we have the Poisson equation,
when f is zero, we have Laplace's equation,
Equation Discretization
The Poisson equation can be thought of as being the steady state limit of the diffusion equation. Can be thought of the steady state, static form of the diffusion equaiton - begin with equaiotn, expect relaxation to steady state (i.e. as t→ inf, d/dt → 0), get the following Poisson equation:
Matrix form, relaxation form
- Discretizatiion leads to a syustenm of eqns. There are 2 ways to solve the equations. Matrix direct methods and relaxtiuon iteration mrethods.
Matrix form (not followed)
I did not write a code that uses a direct matrix method for solving the system of equations, but include this section here for completeness.
Relaxation form (followed)
Error, accuracy, convergence
Laplace Equation (source term = 0) Physical Meaning
Note that the discretization equation with f=0 describes each point as being the average of its neighbors. This is in fact one of the key properties of the harmonic functions, which are the class of solution to the Laplace Equation. Since this is such an ubiquitious equation in physics, and a subset of the Poisson equation, I felt it was important to review some of the properties behind it.
- Boundary conditions
- Minimizing distance b/w boundaries (in 1d this is a line, in 2d this is soap bubble)
- Physical interprestaion - no charge within the domain, but elsewhere.
Poisson Equation Physical Meaning
While the interpreation of the solution propertoies are not as clear cut and intuitive as Laplace, the solution can be thoguht of as composing green's functions (cite references).
The code
Explain what my thing does, post it for download
Tests and Results
Test 1 - Laplace's Equation
Test 2 - Poisson's Equation with simple forcing
Test 3 - Poisson's Equation with complicated forcing
Properties - aka only an approximate solution now . Verify 2nd order (how?)
Cite References
References
Attachments (12)
- PDENumerics.png (28.4 KB ) - added by 11 years ago.
- complexFinal.png (10.2 KB ) - added by 11 years ago.
- complexInit.png (16.0 KB ) - added by 11 years ago.
- laplace.png (10.0 KB ) - added by 11 years ago.
- simpleFinal.png (12.4 KB ) - added by 11 years ago.
- simpleInit.png (8.2 KB ) - added by 11 years ago.
- poisson.out (45.8 KB ) - added by 11 years ago.
- prjpoisson.pdf (95.8 KB ) - added by 11 years ago.
- lecture_source.pdf (5.1 MB ) - added by 11 years ago.
- Class6.pdf (1.8 MB ) - added by 11 years ago.
- jacobi_poisson_1d.pdf (255.8 KB ) - added by 11 years ago.
- PDEwPGI3.pdf (248.2 KB ) - added by 11 years ago.