Archive

Posts Tagged ‘laplace equation’

Solving Poisson’s equation on a general shape using finite differences

October 14, 2014 4 comments

One of the questions I received in the comments to my old post on solving Laplace equation (in fact this is Poisson’s equation) using finite differences was how to apply this procedure on arbitrary domains. It is not possible to use this method directly on general domains. The main problem is the fact that, unlike in the case of a square of rectangular domain, when we have a general shape, the boudary can have any orientation, not only the orientation of the coordinate axes. One way to avoid approach this problem would be using the Finite Element Method. Briefly, you discretize the boundary, you consider a triangulation of the domain with respect to this discretization, then you consider functions which are polynomial and have support in a few number of triangles. Thus the problem is reduced to a finite dimensional one, which can be written as a matrix problem. The implementation is not straightforward, since you need to conceive algorithms for doing the discretization and triangulation of your domain.

One other approach is to consider a rectangle {D} which contains the shape {\Omega} and add a penalization on the exterior of your domain {\Omega}. The problem to solve becomes something like:

\displaystyle (-\Delta +\mu I) u = 1 \text{ on }D

where {\mu} is defined by

\displaystyle \mu(x) = \begin{cases} 0 & x \in \Omega \\ + \infty & x \notin \Omega\end{cases}. \ \ \ \ \ (1)

Note that doing this we do not need to impose the boundary condition {u=0} on {\partial \Omega}. This is already imposed by {\mu}, and the fact that {u} is forced to be zero outside {\Omega}.

Read more…

Eigenvalues via Fundamental Solutions

February 8, 2013 2 comments

Eigenvalue problems like

\displaystyle \begin{cases} -\Delta u =\lambda u & \text{ in }\Omega \\ \hfill u=0 & \text{ on }\partial \Omega \end{cases}

can be solved numerically in a variety of ways. Probably the best known one is the finite element method. I will present below the sketch of an algorithm which does not need meshes, and when implemented correctly, can decrease computational costs.

The idea of Fundamental Solution first appeared in the 60s and was initially used to find solutions of the Laplace equation in a domain. It later was extended to more general equations and eigenvalue problems. The method uses (as the title says) some particular fundamental solutions of the studied equation to create an approximation of the solution as a linear combination of them. The advantage is that the fundamental solutions are sometimes known in analytic form, and the only thing that remains to do is to find the optimal coefficients in the linear combination. A detailed exposure of the method can be found in the following article of Alvez and Antunes.

Read more…

First Dirichlet eigenvalue is simple for connected domains

January 24, 2013 2 comments

Suppose {\Omega \subset \Bbb{R}^N} is a connected open set and consider the first two eigenvalues of the Laplace operator with Dirichlet boundary conditions {\lambda_1(\Omega),\lambda_2(\Omega)}. Then {\lambda_1(\Omega)<\lambda_2(\Omega)}.

Read more…

Numerical Results – Optimal Shapes – Dirichlet Eigenvalues – Perimeter Constraint

January 23, 2013 Leave a comment

Recently it was proved that the problem

\displaystyle \min_{|\Omega|=1} \lambda_k(\Omega)

has a solution even if {\Omega} is not confined to a bounded open set {D}. ({\lambda_k(\Omega)} is the {k}-th eigenvalue for the Laplace operator with Dirichlet boundary conditions.)

A similar result was proven recently by B. Velichkov and G. de Philippis for the case where the volume constraint is replaced by a perimeter constraint, i.e. the problem

\displaystyle \min_{\text{Per} (\Omega)=1}\lambda_k(\Omega)

has a solution, and this solution is regular enough.

Read more…

Numerical Results – Optimal Shapes – Dirichlet Eigenvalues – Volume Constraint

January 22, 2013 1 comment

The only known exact shapes which minimize the eigenvalues of the Laplace operator with Dirichlet condition are those for {k=1} and {k=2}. Nothing is proved for higher eigenvalues, but there are some numerical tests which were performed to find what the optimal shapes look like. Such tests were made first by Edouard Oudet for {k=1..10} and recently by P. Freitas, P. Antunes for {k=1..15}.

Read more…

Weak formulation for Laplace Equation with Robin boundary conditions

October 22, 2012 15 comments

Consider {\Omega \subset \Bbb{R}^N} an open set with Lipschitz boundary and consider on {\Omega} the following problem

\displaystyle \begin{cases} -\Delta u =f &\text{ in }\Omega \\ \frac{\partial u}{\partial n}+\beta u =0 & \text{ on }\partial \Omega. \end{cases}

where {\beta>0} is a constant. This is the Laplace equation with Robin boundary conditions. I will prove that the problem is well posed and for each {f \in L^2(\Omega)} there exists a solution {u \in H^2(\Omega)}.

Read more…