When using FEM for solving a PDE you first have to do a discretization. when we have a linear PDE is quite straightforward. You find the week form of the PDE and then make the discretization. But, what happens when you have nonlinear terms, for instance, picture the following equation $$ \frac{\partial u}{\partial t}=\nabla^2u+u-u^3 $$ How would you handle the cubic term on the discretization? You can assume some Dirichlet and Neumann boundary conditions on a domain $\Omega$. The approach I took was to assume the nonlinear term as a forcing term $$ \frac{\partial u}{\partial t}-\nabla^2u-u=F(u) $$ But because F depends explicitly on u, I don't know if that is legal to do.
2026-03-28 23:58:44.1774742324
How to handle non-linear terms on FEM for PDEs
404 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in PARTIAL-DIFFERENTIAL-EQUATIONS
- PDE Separation of Variables Generality
- Partial Derivative vs Total Derivative: Function depending Implicitly and Explicitly on Variable
- Transition from theory of PDEs to applied analysis and industrial problems and models with PDEs
- Harmonic Functions are Analytic Evan’s Proof
- If $A$ generates the $C_0$-semigroup $\{T_t;t\ge0\}$, then $Au=f \Rightarrow u=-\int_0^\infty T_t f dt$?
- Regular surfaces with boundary and $C^1$ domains
- How might we express a second order PDE as a system of first order PDE's?
- Inhomogeneous biharmonic equation on $\mathbb{R}^d$
- PDE: Determine the region above the $x$-axis for which there is a classical solution.
- Division in differential equations when the dividing function is equal to $0$
Related Questions in FINITE-ELEMENT-METHOD
- What is the difference between Orthogonal collocation and Weighted Residual Methods
- Lagrange multiplier for the Stokes equations
- Does $(q,\nabla u)\lesssim C|u|_1$ implies $\Vert q\Vert_0\lesssim C$?
- How to approximate numerically the gradient of the function on a triangular mesh
- Proving $||u_h||_1^2=(f,u_h)$ for mixed finite elements
- Function in piecewise linear finite element space which satisfies the divergence-free condition is the zero function
- Implementing boundary conditions for the Biharmonic equation using $C^1$ elements.
- Deriving the zero order jump condition for advection equation with a source?
- Definition of finite elements (Ciarlet)
- finite elements local vs global basisfunction
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
If you are just interested in the numerical approximation, nothing really changes compared to the linear case. You multiply with a test function,
$$ v\partial_t u - v \Big( \Delta u + u - u^3 \Big) = 0,$$ integrate by parts $$ \int_\Omega v \partial_t u + \nabla v \cdot \nabla u -vu + vu^3 \mathrm d \boldsymbol{x} - \int_{\partial \Omega} (v \nabla u )\cdot \boldsymbol{n} \mathrm d \boldsymbol{s}= 0$$ choose a set of basis functions $ \phi_i(x)\: i = 1 \dots N $, substitute this into the weak form \begin{align} \int_\Omega & \phi_i(x) \partial_t \sum_{j=1}^N \widehat{u_j}(t) \phi_j(x) + \nabla \phi_i(x) \cdot \nabla \sum_{j=1}^N \widehat{u_j}(t) \phi_j(x) -\phi_i(x)\sum_{j=1}^N \widehat{u_j}(t) \phi_j(x) \\ + &\phi_i(x) \Bigg(\sum_{j=1}^N \widehat{u_j}(t) \phi_j(x) \Bigg)^3 \mathrm d \boldsymbol{x} - \int_{\partial \Omega} \phi_i(x) \nabla \sum_{j=1}^N \widehat{u_j}(t) \phi_j(x) \cdot \boldsymbol{n} \mathrm d \boldsymbol{s}= 0 \: \forall \: i = 1 \dots N \end{align} In principle, the FEM part is now already done, since you have now a nonlinear ODE in the coefficents $\widehat{u_j}(t)$ of the form $$\frac{\mathrm d }{\mathrm d t} \widehat{\boldsymbol{u}}(t) + \boldsymbol{F}\Big(\widehat{\boldsymbol{u}}(t)\Big) = 0.$$ Instead of a linear solver, however, you will now need to solve a nonlinear system and thus you would have to perform e.g. Newton iterations.
Of course, you can greatly simplify the integrals of the weak form by reducing the domain of integration for each $\phi_i \phi_j$ combination to their shared support. In particular, the support of any functions is not increased through multiplication, i.e., the occurence of the $\Big(\sum_{j=1}^N \widehat{u_i}(t) \phi_j(x) \Big)^3$ term does not make your life much worse. Consider for example piece-wise linears in 1D. Then, the only functions sharing support with $\phi_i$ are $\phi_i, \phi_{i \pm 1}$. Thus, you can reduce the "troublemaker" to \begin{align}\phi_i \Bigg(\sum_{j=i-1}^{i+1} \widehat{u_i}(t) \phi_j(x) \Bigg)^3\end{align} which can then be spelled out - it becomes an ugly, long expression, but essentially you end up with the usual scenario of time-dependent coefficients (now combined in a non-linear way) multiplied with some number depending on the integral of the base functions.