Burgers’ Equation#

Module for defining the Burgers equation.

class BurgersEquation(nu)[source]#

Bases: Equation

Implementation of the N-dimensional Burgers’ equation, defined as follows:

\[\frac{\partial u}{\partial t} + u \cdot \nabla u = \nu \Delta u\]

Here, \(\nu\) is the viscosity coefficient.

Initialization of the BurgersEquation class.

Parameters:

nu (float | int) – The viscosity coefficient.

Raises: