the section Simple model problems displays three functions for computing the analytical solution of some simple model problems. There is quite some repetitive code, suggesting that the functions can benefit from being refactored into a class where the user can define the \( f(x) \), \( a(x) \), and the boundary conditions in particular methods in subclasses. Demonstrate how the new class can be used to solve the three particular problems in the section Simple model problems.
In the method that computes the solution, check that the solution
found fulfills the differential equation and the boundary conditions.
Filename: uxx_f_sympy_class.py
.
A hanging cable of length \( L \) with significant tension has a downward deflection \( w(x) \) governed by
Solve $$ T w''(x) = \ell(x), $$ where \( T \) is the tension in the cable and \( \ell(x) \) the load per unit length. The cable is fixed at \( x=0 \) and \( x=L \) so the boundary conditions become \( T(0)=T(L)=0 \). We assume a constant load \( \ell(x)=\hbox{const} \).
The solution is expected to be symmetric around \( x=L/2 \). Formulating the problem for \( x\in\Omega = [0,L/2] \) and then scaling it, results in the scaled problem for the dimensionless vertical deflection \( u \):
$$ u'' = 1,\quad x\in (0,1),\quad u(0)=0,\ u'(1)=0\tp $$ Introduce the function space spanned by \( \baspsi_i=\sin ((i+1)\pi x/2) \), \( i=1,\ldots,N \). Use a Galerkin and a least squares method to find the coefficients \( c_j \) in \( u(x)=\sum_j c_j\baspsi_j \). Find how fast the coefficients decrease in magnitude by looking at \( c_j/c_{j-1} \). Find the error in the maximum deflection at \( x=1 \) when only one basis function is used (\( N=0 \)).
What happens if we choose basis functions \( \baspsi_i=\sin ((i+1)\pi x) \)? These basis functions are appropriate if we do not utilize symmetry and solve the problem on \( [0,L] \). A scaled version of this problem reads
$$ u''=1,\quad x\in(0,1),\quad u(0)=u(1)=0\tp$$
Carry out the computations with \( N=0 \) and demonstrate that the
maximum deflection \( u(1/2) \) is the same in the problem utilizing
symmetry and the problem covering the whole cable.
Filename: cable_sin.pdf
.
Consider the Galerkin method for the problem involving \( u \)
in Exercise 24: Compute the deflection of a cable with sine functions.
Show that the formulas for \( c_j \) are independent of whether we perform
integration by parts or not.
Filename: cable_integr_by_parts.pdf
.
Solve the problem for \( u \) in Exercise 24: Compute the deflection of a cable with sine functions
using two P1 linear elements.
Filename: cable_2P1.pdf
.
Solve the problem for \( u \) in Exercise 24: Compute the deflection of a cable with sine functions
using one P2 element with quadratic basis functions.
Filename: cable_1P2.pdf
.
We consider the deflection of a tension cable as described in Exercise 24: Compute the deflection of a cable with sine functions. Now the load is
$$ \ell (x) =\left\lbrace\begin{array}{ll}
\ell_1, & x
a)
Use \( \baspsi_i = \sin((i+1)\pi x) \), \( i=0,\ldots,N \) and the Galerkin method
without integration by parts. Derive a formula
for \( c_j \) in the solution expansion \( u=\sum_j c_j\baspsi_j \).
Plot how fast the coefficients \( c_j \) tend to zero (on a log scale).
b)
Solve the problem with P1 finite elements.
Plot the solution for \( N_e=2,4,8 \) elements.
Filename:
Incorporation of Dirichlet conditions at \( x=0 \) and \( x=L \)
in a finite element mesh on \( \Omega=[0,L] \) can either be done by
introducing an expansion \( u(x)=U_0\basphi_0 + U_{N_n}\basphi_{N_n} +
\sum_{j=0}^{N} c_j\basphi_{\nu(j)} \),
with \( N=N_n-2 \) and considering \( u \) values at the
inner nodes as unknowns, or
one can assemble the matrix system with \( u(x)=\sum_{j=0}^{N=N_n}
c_j\basphi_j \) and afterwards replace the rows corresponding to known
\( c_j \) values by the boundary conditions.
Show that the two approaches are equivalent.
Derive the linear system for the problem \( -u''=2 \) on \( [0,1] \),
with \( u(0)=0 \) and \( u(1)=1 \), using P1 elements and a non-uniform
mesh. The vertices have coordinates \( \xno{0}=0 < \xno{1} <\cdots < \xno{N}=1 \),
and the length of cell number \( e \) is \( h_e = \xno{e+1} -\xno{e} \).
It is of interest to compare the discrete equations for the finite element
method in a non-uniform mesh with the corresponding discrete equations
arising from a finite difference method. Go through the
derivation of
the finite difference formula \( u''(x_i) \approx [D_x D_x u]_i \) and
modify it to find a natural discretization of \( u''(x_i) \) on a non-uniform
mesh.
Filename:
The following scaled 1D problem is a very simple, yet relevant, model
for convective transport in fluids:
$$
\begin{equation}
u' = \epsilon u'' ,\quad u(0)=0,\ u(1)=1,\ x\in [0,1]
\tp
\end{equation}
$$
a)
Find the analytical solution to this problem.
(Introduce \( w=u' \), solve the first-order differential equation for \( w(x) \),
and integrate once more.)
b)
Derive the variational form of this problem.
c)
Introduce a finite element mesh with uniform partitioning.
Use P1 elements and compute the element matrix and vector for
a general element.
d)
Incorporate the boundary conditions and
assemble the element contributions.
e)
Identify the resulting linear system as a finite difference discretization
of the differential equation using
$$ [D_{2x}u = \epsilon D_xD_x u]_i \tp $$
f)
Compute the numerical solution and plot it together with the exact solution
for a mesh with 20 elements and
\( \epsilon=10, 1, 0.1, 0.01 \).
Filename:
We consider the Poisson problem in a disk with radius \( R \) with
Dirichlet conditions at the boundary.
Given that the solution is radially symmetric and hence dependent only on
the radial coordinate (\( r=\sqrt{x^2+y^2} \)), we can reduce the problem
to a 1D Poisson equation
$$
\begin{equation}
-\frac{1}{r}\frac{d}{dr}\left( r\frac{du}{dr}\right) = f(r),\quad r\in (0,R),\
u'(0)=0,\ u(R)=U_R
\tp
\tag{163}
\end{equation}
$$
a)
Derive a variational form of (163)
by integrating over the whole disk, or posed equivalently: use
a weighting function \( 2\pi r v(r) \) and integrate \( r \) from \( 0 \) to \( R \).
b)
Use a uniform mesh partition with P1 elements and show what the
resulting set of equations becomes. Integrate the matrix entries
exact by hand, but use a Trapezoidal rule to integrate the \( f \) term.
c)
Explain that an intuitive
finite difference method applied to (163)
gives
$$
\frac{1}{r_i}\frac{1}{h^2}\left( r_{i+\half}(u_{i+1}-u_i) -
r_{i-\half}(u_{i}-u_{i-1})\right) = f_i,\quad i=rh
\tp
$$
For \( i=0 \) the factor \( 1/r_i \) seemingly becomes problematic. One must always
have \( u'(0)=0 \), because of the radial symmetry, which implies
\( u_{-1}=u_1 \), if we allow introduction of a fictitious value \( u_{-1} \).
Using this \( u_{-1} \) in the difference equation for \( i=0 \) gives
$$
\begin{align*}
&\frac{1}{r_0}\frac{1}{h^2}\left( r_{\half}(u_{1}-u_0) -
r_{-\half}(u_{0}-u_{1})\right) = \\
& \qquad
\frac{1}{r_0}\frac{1}{2h^2}\left( (r_0 + r_1)(u_{1}-u_0) -
(r_{-1} + r_0)(u_{0}-u_{1})\right) \approx
2(u_1-u_0),
\end{align*}
$$
if we use \( r_{-1}+r_1\approx 2r_0 \).
Set up the complete set of equations for the finite difference method
and compare to the finite element method in case a Trapezoidal rule
is used to integrate the \( f \) term in the latter method.
Filename:
Consider the problem
$$
\begin{equation}
-\frac{d}{dx}\left( a(x)\frac{du}{dx}\right) + \gamma u = f(x),
\quad x\in\Omega=[0,L],\quad u(0)=\dfc,\ u'(L)=\beta\tp
\tag{164}
\end{equation}
$$
We choose \( a(x)=1+x^2 \). Then
$$
\begin{equation} u(x) = \dfc + \beta(1+L^2)\tan^{-1}(x),
\end{equation}
$$
is an exact solution if \( f(x) = \gamma u \).
Derive a variational formulation and compute general expressions for the
element matrix and vector in an arbitrary element, using P1 elements
and a uniform partitioning of \( [0,L] \). The right-hand side
integral is challenging and can be computed by a numerical integration
rule. The Trapezoidal rule (41)
gives particularly simple expressions.
Filename:
The classical problem of applying a torque to the ends of a rod
can be modeled by a Poisson equation defined in the cross section \( \Omega \):
$$ -\nabla^2 u = 2,\quad (x,y)\in\Omega,$$
with \( u=0 \) on \( \partial\Omega \). Exactly the same problem arises for
the deflection of a membrane with shape \( \Omega \) under a constant load.
For a circular cross section one can readily
find an analytical solution. For a rectangular cross section the analytical
approach ends up with a sine series. The idea in this exercise is to
use a single basis function to obtain an approximate answer.
We assume for simplicity that the cross section is the unit square:
\( \Omega = [0,1]\times [0,1] \).
a)
We consider the basis
\( \baspsi_{p,q}(x,y) = \sin((p+1)\pi x)\sin (q\pi y) \), \( p,q=0,\ldots,n \).
These basis functions fulfill the Dirichlet condition.
Use a Galerkin method and \( n=0 \).
b)
The basis function involving sine functions are orthogonal.
Use this property in the Galerkin method
to derive the coefficients \( c_{p,q} \) in a
formula \( u=\sum_p\sum_q c_{p,q}\baspsi_{p,q}(x,y) \).
c)
Another possible basis is
\( \baspsi_i(x,y) = (x(1-x)y(1-y))^{i+1} \), \( i=0,\ldots,N \).
Use the Galerkin method to compute the solution for \( N=0 \).
Which choice of a single basis function is best,
\( u\sim x(1-x)y(1-y) \) or \( u\sim \sin(\pi x)\sin(\pi y) \)?
In order to answer the question,
it is necessary to search the web or the literature for an accurate
estimate of the maximum \( u \) value at \( x=y=1/2 \).
Filename:
Perform the analysis in the section Analysis of the discrete equations for a 1D
diffusion equation \( u_t = \dfc u_{xx} \) discretized by the
Crank-Nicolson scheme in time:
$$ \frac{u^{n+1}- u^n}{\Delta t} = \dfc \half\left(
\frac{u^{n+1}}{\partial x^2}
\frac{u^{n}}{\partial x^2}\right),$$
or written compactly with finite difference operators,
$$ [D_t u = \dfc D_xD_x \overline{u}^t]^{n+\half}\tp$$
(From a strict mathematical point of view, the \( u^n \)
and \( u^{n+1} \) in these
equations should be replaced by \( \uex^n \) and \( \uex^{n+1} \) to
indicate that the unknown is the exact solution of the PDE
discretized in time, but not yet in space, see
the section Discretization in time by a Forward Euler scheme.) Make plots similar to those
in the section Analysis of the discrete equations.
Filename:
cable_discont_load.pdf
.
Exercise 29: Show equivalence between linear systems
Exercise 30: Compute with a non-uniform mesh
nonuniform_P1.pdf
.
Problem 31: Solve a 1D finite element problem by hand
convdiff1D_P1.pdf
.
Exercise 32: Compare finite elements and differences for a radially symmetric Poisson equation
radial_Poisson1D_P1.pdf
.
Exercise 33: Compute with variable coefficients and P1 elements by hand
atan1D_P1.pdf
.
Exercise 34: Solve a 2D Poisson equation using polynomials and sines
torsion_sin_xy.pdf
.
Exercise 35: Analyze a Crank-Nicolson scheme for the diffusion equation
fe_diffusion.pdf
.