askvity

What is PDE in FEM?

Published in Finite Element Analysis 3 mins read

PDE in FEM refers to Partial Differential Equations being solved using the Finite Element Method. In simpler terms, the Finite Element Method (FEM) is a numerical technique employed to approximate solutions to partial differential equations (PDEs).

Understanding the Connection

The FEM is a powerful tool because it can handle PDEs on complex geometries and across a wide range of applications. Here's a breakdown of why PDEs are central to FEM:

  • PDEs Describe Physical Phenomena: Partial Differential Equations are mathematical expressions that describe a vast array of physical phenomena, from heat transfer and fluid flow to structural mechanics and electromagnetism.

  • FEM Provides Numerical Solutions: In many real-world scenarios, finding analytical (exact) solutions to PDEs is impossible or extremely difficult. The FEM provides a way to obtain approximate numerical solutions.

  • Discretization is Key: FEM works by dividing the problem domain (the area or volume where the PDE applies) into smaller, simpler elements (hence "finite elements"). These elements are typically triangles or quadrilaterals in 2D and tetrahedra or hexahedra in 3D.

  • Approximation Within Elements: Within each element, the solution to the PDE is approximated using simpler functions, often polynomials.

  • System of Equations: By applying the PDE to each element and enforcing continuity conditions at the element boundaries, a large system of algebraic equations is generated.

  • Solving the System: This system of equations is then solved numerically to obtain approximate values of the solution at specific points within the domain (typically at the nodes, or corners, of the elements).

Why Use FEM for PDEs?

  • Complex Geometries: FEM excels at handling PDEs defined on irregular and complex geometries, which are common in real-world engineering problems.

  • Variety of PDEs: FEM can be applied to a wide range of PDEs, including elliptic, parabolic, and hyperbolic equations.

  • Adaptability: The mesh (the collection of elements) can be refined in areas where the solution is changing rapidly, allowing for more accurate results.

  • Well-Established Theory: FEM has a strong theoretical foundation, which allows for error estimation and convergence analysis.

Example

Imagine simulating the temperature distribution in a metal plate being heated.

  1. The governing PDE would be the heat equation.
  2. FEM would divide the plate into smaller elements (e.g., triangles).
  3. Within each triangle, the temperature is approximated by a simple polynomial function.
  4. The heat equation is applied to each element, leading to a system of equations.
  5. Solving this system gives an approximate temperature value at each node of the mesh.

In Summary

FEM uses partial differential equations to define the physical laws governing a system. The method then approximates the solution to these PDEs by discretizing the problem domain, building a system of algebraic equations, and solving them numerically.

Related Articles