Strong form of the 1D Poisson equation

2.1. Strong form of the 1D Poisson equation#

The strong from of the problem is a Partial Differential Equation (PDE), or a set of PDEs, describing the physics of the phenomena at hand, supplemented with appropriate boundary and initial conditions. Solving the strong form of the problem leads to the exact solution of the continuous system. However, for many engineering problems, it is not possible to obtain the exact solution, and numerical methods need to be employed to find an approximate solution. The finite element method is one approach to find approximate solutions that is applicable to a wide range of different problems. In this chapter we will focus on problems for which the strong form is the Poisson equation.

The story told below and up to the discrete form section is also presented in this video:

1D Poisson equation#

At this point, let’s take as an example the one dimensional Poisson equation to illustrate at first the so-called strong form of the problem:

(2.1)#\[ -\frac{\partial}{\partial x} \left(\nu(x) \frac{\partial u(x)}{{\partial x}}\right) = f(x) \]

where \(\nu(x)\) is a material property, \(u(x)\) the solution and \(f(x)\) a source, all of which can depend on the coordinate \(x\). To simplify notation we will omit the \(x\)-dependence and write \(\nu\), \(u\) and \(f\) in what follows.

Equation (2.1) can be used to express various physical phenomena such as steady-state heat conduction, elastic deformation of a rod or flow in a permeable media (such as Darcy’s law).

Alternatively, the Poisson equation can be written as:

(2.2)#\[ −\frac{\partial}{\partial x} \Lambda + f = 0 \]

where \(\Lambda\) is a flux term, of which the interpretation depends on the problem at hand. In the case of heat conductivity, \(\Lambda\) is the heat flux, while in Darcy’s law, \(\Lambda\) is the flow rate, and in extension of a rod, \(\Lambda\) is the stress. The typical constitutive relationship between the flux \(\Lambda\) and the unknown solution \(u\) is given by:

(2.3)#\[ \Lambda=-\nu \frac{\partial u}{\partial x} \]

In the case of heat conduction, for instance, \(u\) in the above equation is the temperature. In the case of a structural problem, \(u\) would be the displacement. For Darcy’s law, \(u\) is the hydraulic head.

Keep in mind that the constitutive relationship always depends on the problem being solved and \( \nu \) can take different meanings. For the heat equation, \(\nu\) is the thermal conductivity while for Darcy’s law \( \nu \) is the hydraulic conductivity and for extension of a rod \(\nu\) is a measure for the stiffness.

The strong form of a linear elastic rod#

../_images/barDefinition-1.png

Fig. 2.1 One dimensional rod with distributed load#

An application of the Poisson equation is the extension of one-dimensional structural elements. Let us consider a horizontal steel rod with length \(L\), stiffness \(EA\) and distributed load \(f(x)\). This equilibrium problem can be described with the following differential equation:

(2.4)#\[ -\frac{\partial}{\partial x}\left(EA \frac{\partial u}{\partial x}\right) = f \]

where \(u\) is the displacement of the rod as function of location \(x\). For constant \(EA\), this can be simplified to

(2.5)#\[ -EA \frac{\partial^2 u}{\partial x^2} = f \]

We also consider as boundary conditions that the rod is fixed at the left end and loaded with a force \(F\) at the right end:

(2.6)#\[\begin{split} u = 0, \quad \text{at} \quad x = 0 \\ EA\frac{\partial u}{{\partial x}} = F, \quad \text{at} \quad x = L \end{split}\]

As can be seen, the form of equation (2.4) is exactly the same as the 1D Poisson equation shown above. The only difference is in the physical interpretation of \(u\) and \(f\) and that instead of the constant \(\nu\) we use the constant \(EA\) (Young’s modulus \(E\) times cross section area \(A\)) to describe the stiffness. The exact same mathematical problem could be interpreted as a heat conduction problem.

Quiz question