🟒 div-grad#

Here we demonstrate how to use phyem to solve the div-grad problems in different dimensions and different domains.

The general form of the div-grad problem is

βˆ’ddβˆ—Ο†n=fn,

where Ο†n and fn are top forms.

2d periodic boundary conditions#

Here we demonstrate how to use phyem, the msepy implementation, to solve the two-dimensional div-grad problem.

In two-dimensions, the mixed formulation of the div-grad problem is

{u1=dβˆ—Ο†2,βˆ’du1=f2.

We use smooth manufactured solutions for this case. The exact solution for Ο† is

Ο†=βˆ’sin⁑(2Ο€x)sin⁑(2Ο€y).

Exact solutions of u1 and f2 then follow. We consider the domain to be Ω=(x,y)∈[0,1]2 and it is fully periodic. We use the Multi-crazy domain and mesh for this test. The solver is given below.

div_grad_2d_periodic_manufactured_test(degree, K, c=0)[source]#
Parameters:
degreeint

The degree of the mimetic spectral elements.

Kint

In total we will use 4βˆ—Kβˆ—K elements.

cfloat, default=0

The deformation factor of the Multi-crazy domain and mesh.

Returns:
phi_error: float

The L2-error of solution Ο†h2.

u_error: float

The L2-error of solution uh1.

Examples#

Below, we use mimetic spectral elements of degree 2 on a uniform mesh of 4βˆ—4βˆ—4 (K=4) elements.

>>> errors4 = div_grad_2d_periodic_manufactured_test(2, 4)
>>> float(errors4[0])  
0.01...

We increase K to K=8, we do

>>> errors8 = div_grad_2d_periodic_manufactured_test(2, 8)

We can compute the convergence rate of the L2-error of solution Ο†h2 by

>>> import numpy as np
>>> rate = (np.log10(errors4[0]) - np.log10(errors8[0])) / (np.log10(1/4) - np.log10(1/8))
>>> float(round(rate, 1))
2.0

The optimal convergence rate is obtained.

2d general boundary conditions#

Here we repeat the test, but with essential boundary tr u1 on faces y=0 and y=1, and natural boundary condition tr(⋆φ2) on faces x=0 and x=1.

The implementation is

div_grad_2d_general_bc_manufactured_test(degree, K, c=0.0)[source]#
Parameters:
degreeint

The degree of the mimetic spectral elements.

Kint

In total we will use Kβˆ—K elements.

cfloat, default=0

The deformation factor of the Crazy domain and mesh.

Returns:
phi_error: float

The L2-error of solution Ο†h2.

u_error: float

The L2-error of solution uh1.

Examples#

If we solve it with 4Γ—4 elements (note that here we use a different mesh compared to the periodic test) at polynomial degree 2,

>>> errors4 = div_grad_2d_general_bc_manufactured_test(2, 4)
>>> float(errors4[0])  
0.06...

We increase K to K=8, we do

>>> errors8 = div_grad_2d_general_bc_manufactured_test(2, 8)

We can compute the convergence rate of the L2-error of solution Ο†h2 by

>>> import numpy as np
>>> rate = (np.log10(errors4[0]) - np.log10(errors8[0])) / (np.log10(1/4) - np.log10(1/8))
>>> float(round(rate, 1))
2.0

Again, the optimal convergence rate is obtained.


↩️ Back to GalleryπŸ–Ό.