Poisson Equation#

Module for defining the Poisson equation.

class PoissonEquation(forcing_term)[source]#

Bases: Equation

Implementation of the Poisson equation, defined as follows:

\[\Delta u - f = 0\]

Here, \(f\) is the forcing term.

Initialization of the PoissonEquation class.

Parameters:

forcing_term (Callable) – The forcing field function, taking as input the points on which evaluation is required.